From 4043f1b4c34d2e95272f74bb4b83289a11df702b Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Wed, 24 Apr 2024 22:47:57 -0400 Subject: [PATCH 01/38] Initial Port --- .../Supermatter/Systems/SupermatterSystem.cs | 21 + .../Supermatter/Systems/SupermatterSystem.cs | 546 ++++++++++++++++++ .../Components/SupermatterComponent.cs | 370 ++++++++++++ .../Components/SupermatterFoodComponent.cs | 9 + .../Systems/SharedSupermatterSystem.cs | 47 ++ Resources/Audio/Supermatter/calm.ogg | Bin 0 -> 84096 bytes Resources/Audio/Supermatter/delamming.ogg | Bin 0 -> 86548 bytes Resources/Audio/Supermatter/dust.ogg | Bin 0 -> 18591 bytes .../Locale/en-US/supermatter/supermatter.ftl | 7 + .../Objects/Specific/Medical/morgue.yml | 1 + .../Entities/Supermatter/supermatter.yml | 66 +++ Resources/Prototypes/explosion.yml | 16 + Resources/Prototypes/tags.yml | 5 +- .../Supermatter/supermatter.rsi/meta.json | 14 + .../supermatter.rsi/supermatter.png | Bin 0 -> 2702 bytes 15 files changed, 1101 insertions(+), 1 deletion(-) create mode 100644 Content.Client/Supermatter/Systems/SupermatterSystem.cs create mode 100644 Content.Server/Supermatter/Systems/SupermatterSystem.cs create mode 100644 Content.Shared/Supermatter/Components/SupermatterComponent.cs create mode 100644 Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs create mode 100644 Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs create mode 100644 Resources/Audio/Supermatter/calm.ogg create mode 100644 Resources/Audio/Supermatter/delamming.ogg create mode 100644 Resources/Audio/Supermatter/dust.ogg create mode 100644 Resources/Locale/en-US/supermatter/supermatter.ftl create mode 100644 Resources/Prototypes/Entities/Supermatter/supermatter.yml create mode 100644 Resources/Textures/Supermatter/supermatter.rsi/meta.json create mode 100644 Resources/Textures/Supermatter/supermatter.rsi/supermatter.png diff --git a/Content.Client/Supermatter/Systems/SupermatterSystem.cs b/Content.Client/Supermatter/Systems/SupermatterSystem.cs new file mode 100644 index 00000000000..ba40cbe2711 --- /dev/null +++ b/Content.Client/Supermatter/Systems/SupermatterSystem.cs @@ -0,0 +1,21 @@ +using Content.Shared.Supermatter.Components; +using Content.Shared.Supermatter.Systems; +using Robust.Shared.GameStates; + +namespace Content.Client.Supermatter.Systems; + +public sealed class SupermatterSystem : SharedSupermatterSystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(HandleSupermatterState); + } + + private void HandleSupermatterState(EntityUid uid, SupermatterComponent comp, ref ComponentHandleState args) + { + if (args.Current is not SupermatterComponentState state) + return; + } +} diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs new file mode 100644 index 00000000000..125be39bd00 --- /dev/null +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -0,0 +1,546 @@ +using System.Linq; +using JetBrains.Annotations; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.GameStates; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Events; +using Robust.Shared.Timing; +using Robust.Server.GameObjects; +using Content.Shared.Atmos; +using Content.Shared.Interaction; +using Content.Shared.Projectiles; +using Content.Shared.Tag; +using Content.Shared.Mobs.Components; +using Content.Shared.Radiation.Components; +using Content.Server.Audio; +using Content.Server.Atmos.EntitySystems; +using Content.Server.Chat.Systems; +using Content.Server.Explosion.EntitySystems; +using Content.Server.Explosion.Components; +using Content.Shared.Supermatter.Components; +using Content.Shared.Supermatter.Systems; + +namespace Content.Server.Supermatter.Systems +{ + [UsedImplicitly] + public sealed class SupermatterSystem : SharedSupermatterSystem + { + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly ExplosionSystem _explosion = default!; + [Dependency] private readonly TransformSystem _xform = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly AmbientSoundSystem _ambient = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCollideEvent); + SubscribeLocalEvent(OnHandInteract); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(HandleSupermatterState); + SubscribeLocalEvent(OnComponentRemove); + } + + private void OnComponentRemove(EntityUid uid, SupermatterComponent component, ComponentRemove args) + { + // turn off any ambient if component is removed (ex. entity deleted) + _ambient.SetAmbience(uid, false); + component.AudioStream = _audio.Stop(component.AudioStream); + } + + private void OnMapInit(EntityUid uid, SupermatterComponent component, MapInitEvent args) + { + // Set the Sound + _ambient.SetAmbience(uid, true); + + //Add Air to the initialized SM in the Map so it doesnt delam on default + var mixture = _atmosphere.GetContainingMixture(uid, true, true); + mixture?.AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); + mixture?.AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); + } + + private void HandleSupermatterState(EntityUid uid, SupermatterComponent comp, ref ComponentGetState args) + { + args.State = new SupermatterComponentState(comp); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + if (!_gameTiming.IsFirstTimePredicted) + return; + + foreach (var (supermatter, xplode, rads) in EntityManager + .EntityQuery()) + { + var mixture = _atmosphere.GetContainingMixture(supermatter.Owner, true, true); + HandleOutput(supermatter.Owner, frameTime, supermatter, rads, mixture); + HandleDamage(supermatter.Owner, frameTime, supermatter, xplode, mixture); + } + } + + /// + /// Handle outputting based off enery, damage, gas mix and radiation + /// + private void HandleOutput( + EntityUid uid, + float frameTime, + SupermatterComponent? sMcomponent = null, + RadiationSourceComponent? radcomponent = null, + Atmos.GasMixture? mixture = null) + { + if (!Resolve(uid, ref sMcomponent, ref radcomponent)) + { + return; + } + + sMcomponent.AtmosUpdateAccumulator += frameTime; + + if (!(sMcomponent.AtmosUpdateAccumulator > sMcomponent.AtmosUpdateTimer) || + mixture is not { }) + return; + + sMcomponent.AtmosUpdateAccumulator -= sMcomponent.AtmosUpdateTimer; + + //Absorbed gas from surrounding area + var absorbedGas = mixture.Remove(sMcomponent.GasEfficiency * mixture.TotalMoles); + var absorbedTotalMoles = absorbedGas.TotalMoles; + + if (!(absorbedTotalMoles > 0f)) + return; + + var gasStorage = sMcomponent.GasStorage; + var gasEffect = sMcomponent.GasDataFields; + + //Lets get the proportions of the gasses in the mix for scaling stuff later + //They range between 0 and 1 + gasStorage = gasStorage.ToDictionary( + gas => gas.Key, + gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / absorbedTotalMoles, 0, 1) + ); + + //No less then zero, and no greater then one, we use this to do explosions + //and heat to power transfer + var gasmixPowerRatio = gasStorage.Sum(gas => gasStorage[gas.Key] * gasEffect[gas.Key].PowerMixRatio); + + //Minimum value of -10, maximum value of 23. Effects plasma and o2 output + //and the output heat + var dynamicHeatModifier = gasStorage.Sum(gas => gasStorage[gas.Key] * gasEffect[gas.Key].HeatPenalty); + + //Minimum value of -10, maximum value of 23. Effects plasma and o2 output + // and the output heat + var powerTransmissionBonus = + gasStorage.Sum(gas => gasStorage[gas.Key] * gasEffect[gas.Key].TransmitModifier); + + var h2OBonus = 1 - gasStorage[Gas.WaterVapor] * 0.25f; + + gasmixPowerRatio = Math.Clamp(gasmixPowerRatio, 0, 1); + dynamicHeatModifier = Math.Max(dynamicHeatModifier, 0.5f); + powerTransmissionBonus *= h2OBonus; + + //Effects the damage heat does to the crystal + sMcomponent.DynamicHeatResistance = 1f; + + //more moles of gases are harder to heat than fewer, + //so let's scale heat damage around them + sMcomponent.MoleHeatPenaltyThreshold = + (float) Math.Max(absorbedTotalMoles / sMcomponent.MoleHeatPenalty, 0.25); + + //Ramps up or down in increments of 0.02 up to the proportion of co2 + //Given infinite time, powerloss_dynamic_scaling = co2comp + //Some value between 0 and 1 + if (absorbedTotalMoles > sMcomponent.PowerlossInhibitionMoleThreshold && + gasStorage[Gas.CarbonDioxide] > sMcomponent.PowerlossInhibitionGasThreshold) + { + sMcomponent.PowerlossDynamicScaling = + Math.Clamp( + sMcomponent.PowerlossDynamicScaling + Math.Clamp( + gasStorage[Gas.CarbonDioxide] - sMcomponent.PowerlossDynamicScaling, -0.02f, 0.02f), 0f, + 1f); + } + else + { + sMcomponent.PowerlossDynamicScaling = Math.Clamp(sMcomponent.PowerlossDynamicScaling - 0.05f, 0f, 1f); + } + + //Ranges from 0 to 1(1-(value between 0 and 1 * ranges from 1 to 1.5(mol / 500))) + //We take the mol count, and scale it to be our inhibitor + var powerlossInhibitor = + Math.Clamp( + 1 - sMcomponent.PowerlossDynamicScaling * + Math.Clamp(absorbedTotalMoles / sMcomponent.PowerlossInhibitionMoleBoostThreshold, 1f, 1.5f), + 0f, 1f); + + if (sMcomponent.MatterPower != 0) //We base our removed power off one 10th of the matter_power. + { + var removedMatter = Math.Max(sMcomponent.MatterPower / sMcomponent.MatterPowerConversion, 40); + //Adds at least 40 power + sMcomponent.Power = Math.Max(sMcomponent.Power + removedMatter, 0); + //Removes at least 40 matter power + sMcomponent.MatterPower = Math.Max(sMcomponent.MatterPower - removedMatter, 0); + } + + //based on gas mix, makes the power more based on heat or less effected by heat + var tempFactor = gasmixPowerRatio > 0.8 ? 50f : 30f; + + //if there is more pluox and n2 then anything else, we receive no power increase from heat + sMcomponent.Power = + Math.Max( + absorbedGas.Temperature * tempFactor / Atmospherics.T0C * gasmixPowerRatio + sMcomponent.Power, + 0); + + //Rad Pulse Calculation + radcomponent.Intensity = sMcomponent.Power * Math.Max(0, 1f + powerTransmissionBonus / 10f) * 0.003f; + + //Power * 0.55 * a value between 1 and 0.8 + var energy = sMcomponent.Power * sMcomponent.ReactionPowerModefier; + + //Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock + //is on. An increase of 4*C @ 25% efficiency here results in an increase of 1*C / (#tilesincore) overall. + //Power * 0.55 * (some value between 1.5 and 23) / 5 + + absorbedGas.Temperature += energy * dynamicHeatModifier / sMcomponent.ThermalReleaseModifier; + absorbedGas.Temperature = Math.Max(0, + Math.Min(absorbedGas.Temperature, sMcomponent.HeatThreshold * dynamicHeatModifier)); + + //Calculate how much gas to release + //Varies based on power and gas content + + absorbedGas.AdjustMoles(Gas.Plasma, + Math.Max(energy * dynamicHeatModifier / sMcomponent.PlasmaReleaseModifier, 0f)); + + absorbedGas.AdjustMoles(Gas.Oxygen, + Math.Max( + (energy + absorbedGas.Temperature * dynamicHeatModifier - Atmospherics.T0C) / + sMcomponent.OxygenReleaseModifier, 0f)); + + _atmosphere.Merge(mixture, absorbedGas); + + var powerReduction = (float) Math.Pow(sMcomponent.Power / 500, 3); + + //After this point power is lowered + //This wraps around to the begining of the function + sMcomponent.Power = + Math.Max( + sMcomponent.Power - Math.Min(powerReduction * powerlossInhibitor, + sMcomponent.Power * 0.83f * powerlossInhibitor), 0f); + } + + /// + /// Handles environmental damage and dispatching damage warning + /// + private void HandleDamage( + EntityUid uid, + float frameTime, + SupermatterComponent? sMcomponent = null, + ExplosiveComponent? xplode = null, + Atmos.GasMixture? mixture = null) + { + if (!Resolve(uid, ref sMcomponent, ref xplode)) + { + return; + } + + var xform = Transform(uid); + var indices = _xform.GetGridOrMapTilePosition(uid, xform); + + sMcomponent.DamageUpdateAccumulator += frameTime; + sMcomponent.YellAccumulator += frameTime; + + if (!(sMcomponent.DamageUpdateAccumulator > sMcomponent.DamageUpdateTimer)) + return; + + sMcomponent.DamageArchived = sMcomponent.Damage; + //we're in space or there is no gas to process + if (!xform.GridUid.HasValue || mixture is not { } || mixture.TotalMoles == 0f) + { + sMcomponent.Damage += Math.Max(sMcomponent.Power / 1000 * sMcomponent.DamageIncreaseMultiplier, 0.1f); + } + else + { + //Absorbed gas from surrounding area + var absorbedGas = mixture.Remove(sMcomponent.GasEfficiency * mixture.TotalMoles); + var absorbedTotalMoles = absorbedGas.TotalMoles; + + //Mols start to have a positive effect on damage after 350 + sMcomponent.Damage = (float) Math.Max( + sMcomponent.Damage + + Math.Max( + Math.Clamp(absorbedTotalMoles / 200, 0.5, 1) * absorbedGas.Temperature - + (Atmospherics.T0C + sMcomponent.HeatPenaltyThreshold) * sMcomponent.DynamicHeatResistance, + 0) * sMcomponent.MoleHeatPenalty / 150 * sMcomponent.DamageIncreaseMultiplier, 0); + + //Power only starts affecting damage when it is above 5000 + sMcomponent.Damage = + Math.Max( + sMcomponent.Damage + + Math.Max(sMcomponent.Power - sMcomponent.PowerPenaltyThreshold, 0) / 500 * + sMcomponent.DamageIncreaseMultiplier, 0); + + //Molar count only starts affecting damage when it is above 1800 + sMcomponent.Damage = + Math.Max( + sMcomponent.Damage + Math.Max(absorbedTotalMoles - sMcomponent.MolePenaltyThreshold, 0) / 80 * + sMcomponent.DamageIncreaseMultiplier, 0); + + //There might be a way to integrate healing and hurting via heat + //healing damage + if (absorbedTotalMoles < sMcomponent.MolePenaltyThreshold) + { + //Only has a net positive effect when the temp is below 313.15, heals up to 2 damage. Psycologists increase this temp min by up to 45 + sMcomponent.Damage = + Math.Max( + sMcomponent.Damage + + Math.Min(absorbedGas.Temperature - (Atmospherics.T0C + sMcomponent.HeatPenaltyThreshold), + 0) / 150, 0); + } + + //if there are space tiles next to SM + //TODO: change moles out for checking if adjacent tiles exist + foreach (var ind in _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices)) + { + if (ind.TotalMoles != 0) + continue; + + var integrity = GetIntegrity(sMcomponent.Damage, sMcomponent.ExplosionPoint); + + var factor = integrity switch + { + < 10 => 0.0005f, + < 25 => 0.0009f, + < 45 => 0.005f, + < 75 => 0.002f, + _ => 0f + }; + + sMcomponent.Damage += Math.Clamp(sMcomponent.Power * factor * sMcomponent.DamageIncreaseMultiplier, + 0, sMcomponent.MaxSpaceExposureDamage); + + break; + } + + sMcomponent.Damage = + Math.Min(sMcomponent.DamageArchived + sMcomponent.DamageHardcap * sMcomponent.ExplosionPoint, + sMcomponent.Damage); + } + + HandleSoundLoop(uid, sMcomponent); + + if (sMcomponent.Damage > sMcomponent.ExplosionPoint) + { + Delamination(uid, frameTime, sMcomponent, xplode, mixture); + return; + } + + if (sMcomponent.Damage > sMcomponent.WarningPoint) + { + var integrity = GetIntegrity(sMcomponent.Damage, sMcomponent.ExplosionPoint); + if (sMcomponent.YellAccumulator >= sMcomponent.YellTimer) + { + if (sMcomponent.Damage > sMcomponent.EmergencyPoint) + { + _chat.TrySendInGameICMessage(uid, + Loc.GetString("supermatter-danger-message", ("integrity", integrity.ToString("0.00"))), + InGameICChatType.Speak, hideChat: true); + } + else if (sMcomponent.Damage >= sMcomponent.DamageArchived) + { + _chat.TrySendInGameICMessage(uid, + Loc.GetString("supermatter-warning-message", ("integrity", integrity.ToString("0.00"))), + InGameICChatType.Speak, hideChat: true); + } + else + { + _chat.TrySendInGameICMessage(uid, + Loc.GetString("supermatter-safe-alert", ("integrity", integrity.ToString("0.00"))), + InGameICChatType.Speak, hideChat: true); + } + + sMcomponent.YellAccumulator = 0; + } + } + + sMcomponent.DamageUpdateAccumulator -= sMcomponent.DamageUpdateTimer; + } + + private float GetIntegrity(float damage, float explosionPoint) + { + var integrity = damage / explosionPoint; + integrity = (float) Math.Round(100 - integrity * 100, 2); + integrity = integrity < 0 ? 0 : integrity; + return integrity; + } + + /// + /// Runs the logic and timers for Delamination + /// + private void Delamination( + EntityUid uid, + float frameTime, + SupermatterComponent? sMcomponent = null, + ExplosiveComponent? xplode = null, + Atmos.GasMixture? mixture = null) + { + if (!Resolve(uid, ref sMcomponent, ref xplode)) + { + return; + } + + var xform = Transform(uid); + + //before we actually start counting down, check to see what delam type we're doing. + if (!sMcomponent.FinalCountdown) + { + //if we're in atmos + if (mixture is { }) + { + //Absorbed gas from surrounding area + var absorbedGas = mixture.Remove(sMcomponent.GasEfficiency * mixture.TotalMoles); + var absorbedTotalMoles = absorbedGas.TotalMoles; + //if the moles on the sm's tile are above MolePenaltyThreshold + if (absorbedTotalMoles >= sMcomponent.MolePenaltyThreshold) + { + sMcomponent.DelamType = DelamType.Singulo; + _chat.TrySendInGameICMessage(uid, Loc.GetString("supermatter-delamination-overmass"), + InGameICChatType.Speak, hideChat: true); + } + } + else + { + sMcomponent.DelamType = DelamType.Explosion; + _chat.TrySendInGameICMessage(uid, Loc.GetString("supermatter-delamination-default"), + InGameICChatType.Speak, hideChat: true); + } + } + + sMcomponent.FinalCountdown = true; + + sMcomponent.DelamTimerAccumulator += frameTime; + sMcomponent.SpeakAccumulator += frameTime; + var roundSeconds = sMcomponent.DelamTimerTimer - (int) Math.Floor(sMcomponent.DelamTimerAccumulator); + + //we're more than 5 seconds from delam, only yell every 5 seconds. + if (roundSeconds >= sMcomponent.YellDelam && sMcomponent.SpeakAccumulator >= sMcomponent.YellDelam) + { + sMcomponent.SpeakAccumulator -= sMcomponent.YellDelam; + _chat.TrySendInGameICMessage(uid, + Loc.GetString("supermatter-seconds-before-delam", ("Seconds", roundSeconds)), + InGameICChatType.Speak, hideChat: true); + } + //less than 5 seconds to delam, count every second. + else if (roundSeconds < sMcomponent.YellDelam && sMcomponent.SpeakAccumulator >= 1) + { + sMcomponent.SpeakAccumulator -= 1; + _chat.TrySendInGameICMessage(uid, + Loc.GetString("supermatter-seconds-before-delam", ("Seconds", roundSeconds)), + InGameICChatType.Speak, hideChat: true); + } + + //TODO: make tesla(?) spawn at SupermatterComponent.PowerPenaltyThreshold and think up other delam types + //times up, explode or make a singulo + if (!(sMcomponent.DelamTimerAccumulator >= sMcomponent.DelamTimerTimer)) + return; + + if (sMcomponent.DelamType == DelamType.Singulo) + { + //spawn a singulo :) + EntityManager.SpawnEntity("Singularity", xform.Coordinates); + sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); + } + else + { + //explosion!!!!! + _explosion.TriggerExplosive( + uid, + explosive: xplode, + totalIntensity: sMcomponent.TotalIntensity, + radius: sMcomponent.Radius, + user: uid + ); + + sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); + _ambient.SetAmbience(uid, false); + } + + sMcomponent.FinalCountdown = false; + } + + private void HandleSoundLoop(EntityUid uid, SupermatterComponent sMcomponent) + { + var isAggressive = sMcomponent.Damage > sMcomponent.WarningPoint; + var isDelamming = sMcomponent.Damage > sMcomponent.ExplosionPoint; + + if (!isAggressive && !isDelamming) + { + sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); + return; + } + + var smSound = isDelamming ? SuperMatterSound.Delam : SuperMatterSound.Aggressive; + + if (sMcomponent.SmSound == smSound) + return; + + sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); + sMcomponent.SmSound = smSound; + } + + /// + /// Determines if an entity can be dusted + /// + private bool CannotDestroy(EntityUid uid) + { + var @static = false; + + var tag = _tag.HasTag(uid, "SMImmune"); + + if (EntityManager.TryGetComponent(uid, out var physicsComp)) + { + @static = physicsComp.BodyType == BodyType.Static; + } + + return tag || @static; + } + + private void OnCollideEvent(EntityUid uid, SupermatterComponent supermatter, ref StartCollideEvent args) + { + var target = args.OtherBody.Owner; + + if (!supermatter.Whitelist.IsValid(target) || CannotDestroy(target) || _container.IsEntityInContainer(uid)) + return; + + if (EntityManager.TryGetComponent(target, out var supermatterFood)) + supermatter.Power += supermatterFood.Energy; + else if (EntityManager.TryGetComponent(target, out var projectile)) + supermatter.Power += (float) projectile.Damage.GetTotal(); + else + supermatter.Power++; + + supermatter.MatterPower += EntityManager.HasComponent(target) ? 200 : 0; + if (!EntityManager.HasComponent(target)) + { + EntityManager.SpawnEntity("Ash", Transform(target).Coordinates); + _audio.PlayPvs(supermatter.DustSound, uid); + } + + EntityManager.QueueDeleteEntity(target); + } + + private void OnHandInteract(EntityUid uid, SupermatterComponent supermatter, InteractHandEvent args) + { + var target = args.User; + supermatter.MatterPower += 200; + EntityManager.SpawnEntity("Ash", Transform(target).Coordinates); + _audio.PlayPvs(supermatter.DustSound, uid); + EntityManager.QueueDeleteEntity(target); + } + } +} diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs new file mode 100644 index 00000000000..2aab1eaa84e --- /dev/null +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -0,0 +1,370 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Audio; +using Content.Shared.Atmos; +using Content.Shared.Supermatter.Systems; +using Content.Shared.Whitelist; + +namespace Content.Shared.Supermatter.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class SupermatterComponent : Component +{ + #region SM Base + + [DataField("whitelist")] public EntityWhitelist Whitelist = new(); + public string IdTag = "EmitterBolt"; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("power")] + public float Power; + + /// + /// The amount of damage we have currently + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("damage")] + public float Damage = 0f; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("matterPower")] + public float MatterPower; + + [ViewVariables(VVAccess.ReadWrite)] + [DataField("matterPowerConversion")] + public float MatterPowerConversion = 10f; + + public SharedSupermatterSystem.DelamType DelamType; + + /// + /// The portion of the gasmix we're on + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("gasEfficiency")] + public float GasEfficiency = 0.15f; + + /// + /// The amount of heat we apply scaled + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("heatThreshold")] + public float HeatThreshold = 2500f; + + #endregion SM Base + + #region SM Sound + /// + /// Current stream of SM audio. + /// + public EntityUid? AudioStream; + + public SharedSupermatterSystem.SuperMatterSound? SmSound; + + [DataField("dustSound")] + public SoundSpecifier DustSound = new SoundPathSpecifier("/Audio/Supermatter/dust.ogg"); + + [DataField("delamSound")] + public SoundSpecifier DelamSound = new SoundPathSpecifier("/Audio/Supermatter/delamming.ogg"); + + [DataField("delamAlarm")] + public SoundSpecifier DelamAlarm = new SoundPathSpecifier("/Audio/Machines/alarm.ogg"); + + #endregion SM Sound + + #region SM Calculation + + /// + /// Based on co2 percentage, slowly moves between + /// 0 and 1. We use it to calc the powerloss_inhibitor + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerlossdynamicScaling")] + public float PowerlossDynamicScaling; + + /// + /// Affects the amount of damage and minimum point + /// at which the sm takes heat damage + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("dynamicheatResistance")] + public float DynamicHeatResistance = 1; + + /// + /// Used to increase or lessen the amount of damage the sm takes + /// from heat based on molar counts. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("moleheatPenalty")] + public float MoleHeatPenalty = 350f; + + /// + /// Higher == more overall power + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("reactionpowerModefier")] + public float ReactionPowerModefier = 0.55f; + + /// + /// Higher == less heat released during reaction + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("thermalreleaseModifier")] + public float ThermalReleaseModifier = 5f; + + /// + /// Higher == less plasma released by reaction + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("plasmareleaseModifier")] + public float PlasmaReleaseModifier = 750f; + + /// + /// Higher == less oxygen released at high temperature/power + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("oxygenreleaseModifier")] + public float OxygenReleaseModifier = 325f; + + #endregion SM Calculation + + #region SM Timer + + /// + /// The point at which we should start sending messeges + /// about the damage to the engi channels. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("WarningPoint")] + public float WarningPoint = 50; + + /// + /// The point at which we start sending messages to the common channel + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("emergencyPoint")] + public float EmergencyPoint = 500; + + /// + /// we yell if over 50 damage every YellTimer Seconds + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("yellTimer")] + public float YellTimer = 30f; + + /// + /// set to YellTimer at first so it doesnt yell a minute after being hit + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("yellAccumulator")] + public float YellAccumulator = 30f; + + /// + /// YellTimer before the SM is about the delam + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("yellDelam")] + public float YellDelam = 5f; + + /// + /// Timer for Damage + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("damageupdateAccumulator")] + public float DamageUpdateAccumulator; + + /// + /// update environment damage every 1 second + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("damageupdateTimer")] + public float DamageUpdateTimer = 1f; + + /// + /// Timer for delam + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("delamtimerAccumulator")] + public float DelamTimerAccumulator; + + /// + /// updates delam + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("delamtimerTimer")] + public int DelamTimerTimer = 30; + + /// + /// The message timer + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("speakaccumulator")] + public float SpeakAccumulator = 5f; + + /// + /// Atmos update timer + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("atmosupdateAccumulator")] + public float AtmosUpdateAccumulator; + + /// + /// update atmos every 1 second + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("atmosupdateTimer")] + public float AtmosUpdateTimer = 1f; + + #endregion SM Timer + + #region SM Threshold + + /// + /// Higher == Higher percentage of inhibitor gas needed + /// before the charge inertia chain reaction effect starts. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerlossinhibitiongasThreshold")] + public float PowerlossInhibitionGasThreshold = 0.20f; + + /// + /// Higher == More moles of the gas are needed before the charge + /// inertia chain reaction effect starts. + /// Scales powerloss inhibition down until this amount of moles is reached + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerlossinhibitionmoleThreshold")] + public float PowerlossInhibitionMoleThreshold = 20f; + + /// + /// bonus powerloss inhibition boost if this amount of moles is reached + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerlossinhibitionmoleboostThreshold")] + public float PowerlossInhibitionMoleBoostThreshold = 500f; + + /// + /// Above this value we can get lord singulo and independent mol damage, + /// below it we can heal damage + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("molepenaltyThreshold")] + public float MolePenaltyThreshold = 1800f; + + /// + /// more moles of gases are harder to heat than fewer, + /// so let's scale heat damage around them + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("moleheatpenaltyThreshold")] + public float MoleHeatPenaltyThreshold; + + /// + /// The cutoff on power properly doing damage, pulling shit around, + /// and delamming into a tesla. Low chance of pyro anomalies, +2 bolts of electricity + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerPenaltyThreshold")] + public float PowerPenaltyThreshold = 5000f; + + /// + /// Higher == Crystal safe operational temperature is higher. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("heatpenaltyThreshold")] + public float HeatPenaltyThreshold = 40f; + + /// + /// The damage we had before this cycle. Used to limit the damage we can take each cycle, and for safe alert + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("damagearchived")] + public float DamageArchived = 0f; + + /// + /// is multiplied by ExplosionPoint to cap + /// evironmental damage per cycle + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("damageHardcap")] + public float DamageHardcap = 0.002f; + + /// + /// environmental damage is scaled by this + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("damageincreaseMultiplier")] + public float DamageIncreaseMultiplier = 0.25f; + + /// + /// if spaced sm wont take more than 2 damage per cycle + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("maxspaceexposureDamage")] + public float MaxSpaceExposureDamage = 2; + + #endregion SM Threshold + + #region SM Delamm + + /// + /// The point at which we delamm + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("explosionPoint")] + public int ExplosionPoint = 900; + + //Are we delamming? + [ViewVariables(VVAccess.ReadOnly)] public bool Delamming = false; + + //it's the final countdown + [ViewVariables(VVAccess.ReadOnly)] public bool FinalCountdown = false; + + //Explosion totalIntensity value + [ViewVariables(VVAccess.ReadOnly)] + [DataField("totalIntensity")] + public float TotalIntensity= 500000f; + + //Explosion radius value + [ViewVariables(VVAccess.ReadOnly)] + [DataField("radius")] + public float Radius = 500f; + + /// + /// These would be what you would get at point blank, decreases with distance + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("detonationRads")] + public float DetonationRads = 200f; + + #endregion SM Delamm + + #region SM Gas + /// + /// Is used to store gas + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("gasStorage")] + public Dictionary GasStorage = new Dictionary() + { + {Gas.Oxygen, 0f}, + {Gas.Nitrogen, 0f}, + {Gas.CarbonDioxide, 0f}, + {Gas.Plasma, 0f}, + {Gas.Tritium, 0f}, + {Gas.WaterVapor, 0f} + }; + + /// + /// Stores each gases calculation + /// + public readonly Dictionary GasDataFields = new() + { + [Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f), + [Gas.Nitrogen] = (TransmitModifier: 0f, HeatPenalty: -1.5f, PowerMixRatio: -1f), + [Gas.CarbonDioxide] = (TransmitModifier: 0f, HeatPenalty: 0.1f, PowerMixRatio: 1f), + [Gas.Plasma] = (TransmitModifier: 4f, HeatPenalty: 15f, PowerMixRatio: 1f), + [Gas.Tritium] = (TransmitModifier: 30f, HeatPenalty: 10f, PowerMixRatio: 1f), + [Gas.WaterVapor] = (TransmitModifier: 2f, HeatPenalty: 12f, PowerMixRatio: 1f) + }; + + #endregion SM Gas +} diff --git a/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs b/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs new file mode 100644 index 00000000000..16ee486bfc0 --- /dev/null +++ b/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Shared.Supermatter.Components; + +[RegisterComponent] +public sealed partial class SupermatterFoodComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + [DataField("energy")] + public int Energy { get; set; } = 1; +} diff --git a/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs b/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs new file mode 100644 index 00000000000..ce379d3659d --- /dev/null +++ b/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs @@ -0,0 +1,47 @@ +using Content.Shared.Supermatter.Components; +using Robust.Shared.Serialization; + +namespace Content.Shared.Supermatter.Systems; + +public abstract class SharedSupermatterSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnSupermatterStartup); + } + + public enum SuperMatterSound : sbyte + { + Aggressive = 0, + Delam = 1 + } + + public enum DelamType : sbyte + { + Explosion = 0, + Singulo = 1, + } + #region Getters/Setters + + public void OnSupermatterStartup(EntityUid uid, SupermatterComponent comp, ComponentStartup args) + { + } + + #endregion Getters/Setters + + #region Serialization + /// + /// A state wrapper used to sync the supermatter between the server and client. + /// + [Serializable, NetSerializable] + protected sealed class SupermatterComponentState : ComponentState + { + public SupermatterComponentState(SupermatterComponent supermatter) + { + } + } + + #endregion Serialization + +} diff --git a/Resources/Audio/Supermatter/calm.ogg b/Resources/Audio/Supermatter/calm.ogg new file mode 100644 index 0000000000000000000000000000000000000000..cee14fcd13d6657bd8c634ade617550d68c39f4a GIT binary patch literal 84096 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

7=-wEOP*Fp!2GHt00j7 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 literal 0 HcmV?d00001 diff --git a/Resources/Audio/Supermatter/dust.ogg b/Resources/Audio/Supermatter/dust.ogg new file mode 100644 index 0000000000000000000000000000000000000000..c6e87b61e6c60e9f5ac6c15b7258d2028a81ec85 GIT binary patch literal 18591 zcmagG1zcS*voE?f?#12R-6>k!-KC|tySuv=hXTdDxRp}et+-R%DPHt#+V9+R-hJ

vI9!y=4t>0@SiKmQ(BDD} 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 literal 0 HcmV?d00001 diff --git a/Resources/Locale/en-US/supermatter/supermatter.ftl b/Resources/Locale/en-US/supermatter/supermatter.ftl new file mode 100644 index 00000000000..530fae8a6e9 --- /dev/null +++ b/Resources/Locale/en-US/supermatter/supermatter.ftl @@ -0,0 +1,7 @@ +supermatter-self = Supermatter +supermatter-danger-message = Danger! Crystal hyperstructure integrity faltering! Integrity: { $integrity }% +supermatter-warning-message = WARNING! Crystal hyperstructure integrity reaching critical levels! Integrity: { $integrity }% +supermatter-safe-alert = Crystalline hyperstructure returning to safe operating parameters. Failsafe has been Disengaged. Integrity: { $integrity }% +supermatter-delamination-overmass = The Supermatter has Reached Critical Mass Falure. Singularity formation Imminent +supermatter-delamination-default = The Supermatter has Reached Critical Integrity Falure. Emergency Causality Destabilization Field has been Activated. +supermatter-seconds-before-delam = { $Seconds } Seconds Remain Before Delamination. diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index f664c3a811c..bffd34e4fc0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -110,6 +110,7 @@ - type: Tag tags: - Trash + - SMImmune - type: SolutionContainerManager solutions: food: diff --git a/Resources/Prototypes/Entities/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Supermatter/supermatter.yml new file mode 100644 index 00000000000..8feb1963f42 --- /dev/null +++ b/Resources/Prototypes/Entities/Supermatter/supermatter.yml @@ -0,0 +1,66 @@ +- type: entity + id: supermatter + name: Supermatter + description: A strangely translucent and iridescent crystal. + placement: + mode: SnapgridCenter + components: + - type: Supermatter + whitelist: + tags: + - EmitterBolt + components: + - Body + - Item + - type: RadiationSource + - type: AmbientSound + range: 5 + volume: -5 + sound: + path: /Audio/Supermatter/calm.ogg + - type: Physics + bodyType: Dynamic + - type: Speech + speechSounds: Pai + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + - Opaque + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - type: Transform + anchored: true + noRot: true + - type: CollisionWake + enabled: false + - type: Clickable + - type: InteractionOutline + - type: Sprite + drawdepth: WallMountedItems + sprite: Supermatter/supermatter.rsi + state: supermatter + - type: Icon + sprite: Supermatter/supermatter.rsi + state: supermatter + - type: PointLight + enabled: true + radius: 10 + energy: 5 + color: "#d9ce00" + - type: Explosive + explosionType: Supermatter + maxIntensity: 10000 + intensitySlope: 10 + totalIntensity: 10000 diff --git a/Resources/Prototypes/explosion.yml b/Resources/Prototypes/explosion.yml index ff0c78d86e7..62729a62c34 100644 --- a/Resources/Prototypes/explosion.yml +++ b/Resources/Prototypes/explosion.yml @@ -117,3 +117,19 @@ lightColor: Orange texturePath: /Textures/Effects/fire.rsi fireStates: 6 + +- type: explosion + id: Supermatter + damagePerIntensity: + types: + Radiation: 5 + Heat: 4 + Blunt: 3 + Piercing: 3 + tileBreakChance: [0, 0.5, 1] + tileBreakIntensity: [0, 10, 30] + tileBreakRerollReduction: 20 + lightColor: Yellow + fireColor: Green + texturePath: /Textures/Effects/fire_greyscale.rsi + fireStates: 3 diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 9f06df7bcb3..8e46e9323f9 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1083,11 +1083,14 @@ id: SmallMech - type: Tag - id: SnapPop + id: SMImmune - type: Tag id: Smokable +- type: Tag + id: SnapPop + - type: Tag id: SnowyLabs diff --git a/Resources/Textures/Supermatter/supermatter.rsi/meta.json b/Resources/Textures/Supermatter/supermatter.rsi/meta.json new file mode 100644 index 00000000000..3c25e1a830f --- /dev/null +++ b/Resources/Textures/Supermatter/supermatter.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/supermatter.dmi", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 48 + }, + "states": [ + { + "name": "supermatter" + } + ] +} diff --git a/Resources/Textures/Supermatter/supermatter.rsi/supermatter.png b/Resources/Textures/Supermatter/supermatter.rsi/supermatter.png new file mode 100644 index 0000000000000000000000000000000000000000..b8fa4defeb76c0deaca66924f60cf5932bd35d79 GIT binary patch literal 2702 zcmV;93UT#`P)%skX)DSvI%N78QEE~ zggtR=8t2Kv8382FzfWCO2TG!IzXR?D%(nlRg|jgrFd2x`FHEl!Oh0r9YSrGvrt@Oq zYycLZ-}FA#`4U?7*8vr^V%`76!h!(KO#f_C6b1e8Zq)LI>85jL;Yuv-W1TNq z6ZG!3^Jd{p02WmLT#I$CLaTmfZu2>@a9RKh(|>yJ2lj^mP^+#2&MzYtV&Js&$2wP? z(Hs5H%cxaXCN|Atp(eXo)MPiSaR&j=7FcT@{fSSZm>E%44`$7{0LTV% zfuled@G+1Dq@Ruf1+WWM!H^QqeUBg|G&J9AdA*SLJ=_0ENz?VjI$uIR;sGfEQUkt| zALP3iW9mr(Lr4F(;~=nNApi;rAZHreHa`eJ>5>a@UX(M>`?gnyXt<(a)km_Zdmr8{B{+ST1E5u|LkNK?OgVLULkRH< z#f?q$z1o8E{7#A+51>}tky3(j8z>{-ib3d|*&_7&{Qv|40rIm_$agQsnV*iMItzeH zZ~X~U{s90frS&rmNnL#&hGAeBhShIKiPsaPXU7VpybHLK{^wWm{@)u|f8`4Rqq6{v zjg5kYv9U0QDIf}$XEFFuh~ma3rVhP=ly^~g+fR9;^_T@(qQCyx1 zNTv?eGw`o3F@2bhPe_2syfly*#NAq&jTRV zwR=`SfFcxzMo#f~hnvYM31G|vuwr>NB_-wDv#W^E$Da$!)*GuogMc^FpN9^ z$1DaE1(NKNM{kz?YWp%xeo7^7K9KOFSnR$ z3PHOkh^su6CE2N{<^KV(1q>71EC6=9LUmOcOY#QDU6zTes_427fU2t2g7pm!3`6I# zh622vARP}p#$~tPh<8g1^|${F+1+N%duvZWst}Yq7vWr)$5i(QM8%812*Rb$9LGYD zq$Vpgt$2-`r57TlM32W$N=g6zAOi2Aq2s8|GGiRqf^O&-QZjYu6_oOZnHr(% z)Yj$VsLrB)e-PDu8G82yj<;^W=zZra767{qQcY#fie;h(iW@i5e!q+2#wIJqO*dCt zDNB4_tZO%FMVqCK=~_~B&G+!{dX5h|25H(91qf=1;@kEM8@bCeF$@F$!C{0DmIk!S zb$IT31Xp1O-YqTE-f{yR+>Za?Fg5E-@NQ|rRhVIw=AIoZt9(atJ^(8X`j@N;K zozEbIN{2T@U40%xRdF?L#J}rV0wWVNZ?lo_P&hRq**m=1m{$k-hDN!#b_oLqLI|N? z7&Eb)j=87pIJI@TbhI7=V9ojxtKaJhm|0*LRvqZuxr4ySINRQ>WHNe`Xl!Ob0cJ)_ z#XuSoXMP%QzS_ggWkAw?|5jXu8MJ!>R%^Q_fXk7N%aP6-t;go|*VX6I>mS8cm_e_9 zl$c@g(47&Ilfb6V0U#wzL>2CMLc@PzoD$~+^bL(s^xcgVH#W^B2{3DZuRlz$KRl~# zZGB#R^Kg9gFkidE#p)aOp_bOL=kYx3c4-|-RtTa~Fg7mf2yNg}<-aT~TErU<|!@cU~9$XR+Jt0!Z4 zJwa;ga;&%(m#5-#q@z`?Bih-TAl$HZA?fvxQhU`>1`eE{aCsKT4~^g-j_~uXF>>;j z^4VB7i>BsiAUR1PJyr7bU3T)yG68T@XU8uSW}QfUmG?cn9o5}{x~!I9_a|s}L4RP3 zUVoUH^(Ab7u#;YYm^XL#;JkV-UtY6>hi}xFios-5lK9NiYO-uHv zeWizz$_!RtUIf6=*CgTZn1DFb(QJaD z;c;B<6i^ftp^%gkzkn(r4TEESLGJFokl!|b%JHrdYH#`>#*uc8ca0!ag}})Pa*plg zo3}(r&G1>Vw?eRYc(ZV>kcXNDr99Km; z#TDrs4@J1+FB<-#QT%~X9`;tCC=m0#hFbbJ^4*zSe{YmOx0SQzx&VVipAns6o@oFR zlajGP&1qnwa8JP;7hK;!A^Pl)idwV-g8?TjacLjDEB-%U0*AKp5^-~ Date: Wed, 24 Apr 2024 23:31:31 -0400 Subject: [PATCH 02/38] Should fix test fail --- Resources/Prototypes/Entities/Supermatter/supermatter.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Supermatter/supermatter.yml index 8feb1963f42..72348a4bb63 100644 --- a/Resources/Prototypes/Entities/Supermatter/supermatter.yml +++ b/Resources/Prototypes/Entities/Supermatter/supermatter.yml @@ -19,7 +19,6 @@ sound: path: /Audio/Supermatter/calm.ogg - type: Physics - bodyType: Dynamic - type: Speech speechSounds: Pai - type: Fixtures From 7527bdd32296edea04b145fce168f37d0f50feac Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 26 Apr 2024 00:23:18 -0400 Subject: [PATCH 03/38] Edge with Experimental Supermatter Engine --- Resources/Maps/edge.yml | 3186 ++++++++++++++++++++++++++++----------- 1 file changed, 2308 insertions(+), 878 deletions(-) diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 601cb7dd17c..7413f5396f5 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -32,6 +32,7 @@ tilemap: 64: FloorLaundry 67: FloorMetalDiamond 68: FloorMime + 70: FloorMiningDark 72: FloorMono 75: FloorOldConcreteSmooth 77: FloorPlanetGrass @@ -194,7 +195,7 @@ entities: version: 6 -2,-3: ind: -2,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -242,7 +243,7 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -384,15 +385,6 @@ entities: decals: 2374: 21,-25 2375: 22,-25 - - node: - color: '#FFFF00FF' - id: BotGreyscale - decals: - 304: -23,-39 - 305: -23,-40 - 306: -23,-38 - 307: -21,-39 - 308: -20,-39 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -404,7 +396,6 @@ entities: 77: -1,-17 86: 19,-2 87: 20,-2 - 314: -22,-39 - node: color: '#FFFFFFFF' id: BotLeft @@ -1469,14 +1460,10 @@ entities: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 378: -20,-47 379: -20,-46 381: -23,-44 382: -23,-43 383: -24,-41 - 384: -24,-40 - 385: -24,-39 - 386: -24,-38 387: -24,-37 388: -23,-35 389: -23,-34 @@ -1809,15 +1796,6 @@ entities: 340: -36,-46 341: -39,-43 342: -36,-43 - - node: - color: '#FFFF00FF' - id: Delivery - decals: - 309: -23,-39 - 310: -23,-38 - 311: -23,-40 - 312: -21,-39 - 313: -20,-39 - node: color: '#FFFFFFFF' id: Delivery @@ -2163,7 +2141,6 @@ entities: 2205: -12,-81 2222: -18,-47 2223: -11,-37 - 2224: -24,-39 2225: -21,-35 2226: -15,-38 2227: -17,-35 @@ -4223,6 +4200,29 @@ entities: decals: 2149: -11,-79 2158: -12,-78 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 2686: -33,-40 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 2687: -31,-40 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 2688: -31,-38 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 2689: -33,-38 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE @@ -4309,11 +4309,18 @@ entities: 2365: 18,-35 2366: 22,-35 2371: 18,-33 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnFull + decals: + 2685: -32,-39 - node: color: '#FFFFFFFF' id: WarnLineE decals: 2380: -42,41 + 2691: -31,-39 - node: color: '#D381C9FF' id: WarnLineGreyscaleE @@ -4350,11 +4357,13 @@ entities: 2555: -48,-16 2556: -47,-16 2557: -46,-16 + 2690: -32,-40 - node: color: '#FFFFFFFF' id: WarnLineS decals: 2381: -43,41 + 2692: -33,-39 - node: color: '#FFFFFFFF' id: WarnLineW @@ -4363,6 +4372,7 @@ entities: 1383: 6,-40 1384: 5,-40 2518: -12,-22 + 2693: -32,-38 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -4483,6 +4493,12 @@ entities: 923: -2,2 931: 37,-12 932: 37,-9 + - node: + angle: 1.5707963267948966 rad + color: '#FF0000FF' + id: danger + decals: + 2684: -20,-47 - node: angle: 0.8726646259971648 rad color: '#FFFF0089' @@ -4511,11 +4527,6 @@ entities: id: skull decals: 2585: -46.264652,-18.779003 - - node: - color: '#FFFFFF93' - id: space - decals: - 299: -20,-47 - node: cleanable: True color: '#0000008B' @@ -6212,6 +6223,7 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Edge + - type: NavMap - proto: ActionToggleLight entities: - uid: 4 @@ -7162,6 +7174,22 @@ entities: - 7364 - type: AtmosDevice joinedGrid: 2 + - uid: 17544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 3906 + - 2674 + - 2584 + - 2675 + - 3901 + - 2676 + - type: AtmosDevice + joinedGrid: 2 - proto: AirCanister entities: - uid: 54 @@ -9662,11 +9690,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.366076,-27.5202 parent: 2 - - uid: 456 - components: - - type: Transform - pos: -18.490067,-40.1364 - parent: 2 - proto: AmePartFlatpack entities: - uid: 457 @@ -10588,6 +10611,17 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,23.5 parent: 2 + - uid: 17652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-37.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 - proto: BeachBall entities: - uid: 602 @@ -11661,6 +11695,20 @@ entities: - type: Transform pos: 1.4052037,10.873797 parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 17678 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 17679 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 - proto: CableApcExtension entities: - uid: 683 @@ -20718,11 +20766,6 @@ entities: - type: Transform pos: -33.5,-51.5 parent: 2 - - uid: 2584 - components: - - type: Transform - pos: -24.5,-32.5 - parent: 2 - uid: 2585 components: - type: Transform @@ -20928,261 +20971,6 @@ entities: - type: Transform pos: -23.5,-46.5 parent: 2 - - uid: 2626 - components: - - type: Transform - pos: -24.5,-46.5 - parent: 2 - - uid: 2627 - components: - - type: Transform - pos: -25.5,-46.5 - parent: 2 - - uid: 2628 - components: - - type: Transform - pos: -26.5,-46.5 - parent: 2 - - uid: 2629 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 2 - - uid: 2630 - components: - - type: Transform - pos: -28.5,-46.5 - parent: 2 - - uid: 2631 - components: - - type: Transform - pos: -29.5,-46.5 - parent: 2 - - uid: 2632 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 2 - - uid: 2633 - components: - - type: Transform - pos: -31.5,-46.5 - parent: 2 - - uid: 2634 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 2 - - uid: 2635 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 2 - - uid: 2636 - components: - - type: Transform - pos: -34.5,-46.5 - parent: 2 - - uid: 2637 - components: - - type: Transform - pos: -35.5,-46.5 - parent: 2 - - uid: 2638 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 2 - - uid: 2639 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 2640 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 2 - - uid: 2641 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - uid: 2642 - components: - - type: Transform - pos: -39.5,-45.5 - parent: 2 - - uid: 2643 - components: - - type: Transform - pos: -39.5,-44.5 - parent: 2 - - uid: 2644 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 2645 - components: - - type: Transform - pos: -39.5,-42.5 - parent: 2 - - uid: 2646 - components: - - type: Transform - pos: -39.5,-41.5 - parent: 2 - - uid: 2647 - components: - - type: Transform - pos: -39.5,-40.5 - parent: 2 - - uid: 2648 - components: - - type: Transform - pos: -39.5,-39.5 - parent: 2 - - uid: 2649 - components: - - type: Transform - pos: -39.5,-38.5 - parent: 2 - - uid: 2650 - components: - - type: Transform - pos: -39.5,-37.5 - parent: 2 - - uid: 2651 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 2 - - uid: 2652 - components: - - type: Transform - pos: -39.5,-35.5 - parent: 2 - - uid: 2653 - components: - - type: Transform - pos: -39.5,-34.5 - parent: 2 - - uid: 2654 - components: - - type: Transform - pos: -39.5,-33.5 - parent: 2 - - uid: 2655 - components: - - type: Transform - pos: -39.5,-32.5 - parent: 2 - - uid: 2656 - components: - - type: Transform - pos: -38.5,-32.5 - parent: 2 - - uid: 2657 - components: - - type: Transform - pos: -38.5,-31.5 - parent: 2 - - uid: 2658 - components: - - type: Transform - pos: -38.5,-30.5 - parent: 2 - - uid: 2659 - components: - - type: Transform - pos: -37.5,-30.5 - parent: 2 - - uid: 2660 - components: - - type: Transform - pos: -36.5,-30.5 - parent: 2 - - uid: 2661 - components: - - type: Transform - pos: -35.5,-30.5 - parent: 2 - - uid: 2662 - components: - - type: Transform - pos: -34.5,-30.5 - parent: 2 - - uid: 2663 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 2 - - uid: 2664 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - - uid: 2665 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 2666 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - uid: 2667 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 2 - - uid: 2668 - components: - - type: Transform - pos: -28.5,-30.5 - parent: 2 - - uid: 2669 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 2 - - uid: 2670 - components: - - type: Transform - pos: -26.5,-30.5 - parent: 2 - - uid: 2671 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 2 - - uid: 2672 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 2 - - uid: 2673 - components: - - type: Transform - pos: -24.5,-31.5 - parent: 2 - - uid: 2674 - components: - - type: Transform - pos: -24.5,-33.5 - parent: 2 - - uid: 2675 - components: - - type: Transform - pos: -24.5,-34.5 - parent: 2 - - uid: 2676 - components: - - type: Transform - pos: -25.5,-34.5 - parent: 2 - uid: 2677 components: - type: Transform @@ -22938,6 +22726,146 @@ entities: - type: Transform pos: 44.5,13.5 parent: 2 + - uid: 17600 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 17601 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 + - uid: 17602 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 17606 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 2 + - uid: 17607 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 17623 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + pos: -22.5,-37.5 + parent: 2 + - uid: 17672 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 - proto: CableApcStack entities: - uid: 3016 @@ -22999,6 +22927,176 @@ entities: parent: 2 - proto: CableHV entities: + - uid: 2638 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: -38.5,-39.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: -34.5,-39.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 - uid: 3027 components: - type: Transform @@ -23492,7 +23590,7 @@ entities: - uid: 3125 components: - type: Transform - pos: -38.5,-30.5 + pos: -31.5,-33.5 parent: 2 - uid: 3126 components: @@ -23507,37 +23605,37 @@ entities: - uid: 3128 components: - type: Transform - pos: -38.5,-31.5 + pos: -30.5,-30.5 parent: 2 - uid: 3129 components: - type: Transform - pos: -38.5,-32.5 + pos: -32.5,-30.5 parent: 2 - uid: 3130 components: - type: Transform - pos: -39.5,-32.5 + pos: -35.5,-30.5 parent: 2 - uid: 3131 components: - type: Transform - pos: -39.5,-35.5 + pos: -38.5,-34.5 parent: 2 - uid: 3132 components: - type: Transform - pos: -39.5,-37.5 + pos: -38.5,-38.5 parent: 2 - uid: 3133 components: - type: Transform - pos: -39.5,-38.5 + pos: -38.5,-37.5 parent: 2 - uid: 3134 components: - type: Transform - pos: -39.5,-39.5 + pos: -38.5,-40.5 parent: 2 - uid: 3135 components: @@ -23547,37 +23645,27 @@ entities: - uid: 3136 components: - type: Transform - pos: -39.5,-44.5 + pos: -33.5,-30.5 parent: 2 - uid: 3137 components: - type: Transform - pos: -39.5,-44.5 + pos: -37.5,-46.5 parent: 2 - uid: 3138 components: - type: Transform - pos: -39.5,-45.5 + pos: -37.5,-31.5 parent: 2 - uid: 3139 components: - type: Transform - pos: -38.5,-46.5 - parent: 2 - - uid: 3140 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 2 - - uid: 3141 - components: - - type: Transform - pos: -31.5,-30.5 + pos: -33.5,-41.5 parent: 2 - uid: 3142 components: - type: Transform - pos: -35.5,-45.5 + pos: -31.5,-46.5 parent: 2 - uid: 3143 components: @@ -23652,67 +23740,22 @@ entities: - uid: 3157 components: - type: Transform - pos: -38.5,-45.5 - parent: 2 - - uid: 3158 - components: - - type: Transform - pos: -29.5,-46.5 - parent: 2 - - uid: 3159 - components: - - type: Transform - pos: -28.5,-45.5 - parent: 2 - - uid: 3160 - components: - - type: Transform - pos: -28.5,-46.5 + pos: -32.5,-43.5 parent: 2 - uid: 3161 components: - type: Transform pos: -24.5,-46.5 parent: 2 - - uid: 3162 - components: - - type: Transform - pos: -27.5,-46.5 - parent: 2 - - uid: 3163 - components: - - type: Transform - pos: -26.5,-46.5 - parent: 2 - - uid: 3164 - components: - - type: Transform - pos: -24.5,-44.5 - parent: 2 - - uid: 3165 - components: - - type: Transform - pos: -24.5,-45.5 - parent: 2 - uid: 3166 components: - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 3167 - components: - - type: Transform - pos: -32.5,-46.5 + pos: -32.5,-41.5 parent: 2 - uid: 3168 components: - type: Transform - pos: -37.5,-30.5 - parent: 2 - - uid: 3169 - components: - - type: Transform - pos: -32.5,-30.5 + pos: -31.5,-35.5 parent: 2 - uid: 3170 components: @@ -23912,53 +23955,33 @@ entities: - uid: 3209 components: - type: Transform - pos: -35.5,-44.5 + pos: -35.5,-46.5 parent: 2 - uid: 3210 components: - type: Transform - pos: -33.5,-44.5 + pos: -33.5,-46.5 parent: 2 - uid: 3211 components: - type: Transform - pos: -34.5,-44.5 - parent: 2 - - uid: 3212 - components: - - type: Transform - pos: -28.5,-44.5 - parent: 2 - - uid: 3213 - components: - - type: Transform - pos: -29.5,-44.5 + pos: -34.5,-46.5 parent: 2 - uid: 3214 components: - type: Transform - pos: -29.5,-32.5 + pos: -37.5,-38.5 parent: 2 - uid: 3215 components: - type: Transform - pos: -28.5,-32.5 + pos: -36.5,-38.5 parent: 2 - uid: 3216 components: - type: Transform pos: -27.5,-30.5 parent: 2 - - uid: 3217 - components: - - type: Transform - pos: -33.5,-32.5 - parent: 2 - - uid: 3218 - components: - - type: Transform - pos: -34.5,-32.5 - parent: 2 - uid: 3219 components: - type: Transform @@ -26759,11 +26782,111 @@ entities: - type: Transform pos: 28.5,25.5 parent: 2 + - uid: 3815 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: -34.5,-36.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -26.5,-45.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 - uid: 6263 components: - type: Transform pos: -13.5,-82.5 parent: 2 + - uid: 7254 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 - uid: 9756 components: - type: Transform @@ -26774,11 +26897,36 @@ entities: - type: Transform pos: -13.5,-81.5 parent: 2 + - uid: 12077 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 2 - uid: 12567 components: - type: Transform pos: -17.5,-71.5 parent: 2 + - uid: 12737 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 - uid: 13119 components: - type: Transform @@ -26799,6 +26947,21 @@ entities: - type: Transform pos: -13.5,-71.5 parent: 2 + - uid: 17673 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 - proto: CableHVStack entities: - uid: 3789 @@ -26936,75 +27099,6 @@ entities: rot: 3.141592653589793 rad pos: -44.447212,57.614994 parent: 2 - - uid: 3812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.33405,-34.31843 - parent: 2 - - uid: 3813 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.345215,-37.189526 - parent: 2 - - uid: 3814 - components: - - type: Transform - pos: -31.521027,-42.931713 - parent: 2 - - uid: 3815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.176376,-45.539135 - parent: 2 - - uid: 3816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.7587,-40.002026 - parent: 2 - - uid: 3817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.34847,-33.351635 - parent: 2 - - uid: 3818 - components: - - type: Transform - pos: -34.011726,-31.300854 - parent: 2 - - uid: 3819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.213585,-34.34773 - parent: 2 - - uid: 3820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.97683,-38.156322 - parent: 2 - - uid: 3821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.88892,-42.66804 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: -25.625198,-46.212963 - parent: 2 - - uid: 3823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.85543,-45.832104 - parent: 2 - uid: 3824 components: - type: Transform @@ -27347,46 +27441,11 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 3887 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 3888 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 2 - - uid: 3889 - components: - - type: Transform - pos: -36.5,-31.5 - parent: 2 - - uid: 3890 - components: - - type: Transform - pos: -37.5,-31.5 - parent: 2 - - uid: 3891 - components: - - type: Transform - pos: -26.5,-45.5 - parent: 2 - uid: 3892 components: - type: Transform pos: -31.5,-25.5 parent: 2 - - uid: 3893 - components: - - type: Transform - pos: -34.5,-45.5 - parent: 2 - - uid: 3894 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - uid: 3895 components: - type: Transform @@ -27402,136 +27461,11 @@ entities: - type: Transform pos: -31.5,-28.5 parent: 2 - - uid: 3898 - components: - - type: Transform - pos: -31.5,-31.5 - parent: 2 - - uid: 3899 - components: - - type: Transform - pos: -32.5,-31.5 - parent: 2 - - uid: 3900 - components: - - type: Transform - pos: -33.5,-31.5 - parent: 2 - - uid: 3901 - components: - - type: Transform - pos: -28.5,-31.5 - parent: 2 - - uid: 3902 - components: - - type: Transform - pos: -27.5,-31.5 - parent: 2 - - uid: 3903 - components: - - type: Transform - pos: -24.5,-34.5 - parent: 2 - - uid: 3904 - components: - - type: Transform - pos: -24.5,-31.5 - parent: 2 - uid: 3905 components: - type: Transform pos: -31.5,-29.5 parent: 2 - - uid: 3906 - components: - - type: Transform - pos: -34.5,-45.5 - parent: 2 - - uid: 3907 - components: - - type: Transform - pos: -24.5,-32.5 - parent: 2 - - uid: 3908 - components: - - type: Transform - pos: -24.5,-33.5 - parent: 2 - - uid: 3909 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 2 - - uid: 3910 - components: - - type: Transform - pos: -35.5,-31.5 - parent: 2 - - uid: 3911 - components: - - type: Transform - pos: -38.5,-34.5 - parent: 2 - - uid: 3912 - components: - - type: Transform - pos: -38.5,-35.5 - parent: 2 - - uid: 3913 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 2 - - uid: 3914 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 2 - - uid: 3915 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 3916 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 2 - - uid: 3917 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 2 - - uid: 3918 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - uid: 3919 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 2 - - uid: 3920 - components: - - type: Transform - pos: -35.5,-45.5 - parent: 2 - - uid: 3921 - components: - - type: Transform - pos: -25.5,-45.5 - parent: 2 - - uid: 3922 - components: - - type: Transform - pos: -24.5,-43.5 - parent: 2 - - uid: 3923 - components: - - type: Transform - pos: -24.5,-42.5 - parent: 2 - uid: 3924 components: - type: Transform @@ -33012,54 +32946,127 @@ entities: - type: Transform pos: 44.5,14.5 parent: 2 -- proto: CableMVStack - entities: - - uid: 4996 + - uid: 17547 components: - type: Transform - pos: -18.641283,-34.260426 + pos: -27.5,-36.5 parent: 2 - - uid: 4997 + - uid: 17548 components: - type: Transform - pos: -11.407126,-24.44871 + pos: -31.5,-30.5 parent: 2 -- proto: CableMVStack1 - entities: - - uid: 4998 + - uid: 17549 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.319168,-39.269604 + pos: -31.5,-31.5 parent: 2 - - uid: 4999 + - uid: 17550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.461956,-41.789135 + pos: -31.5,-32.5 parent: 2 - - uid: 5000 + - uid: 17551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.268005,-38.3614 + pos: -31.5,-33.5 parent: 2 - - uid: 5001 + - uid: 17552 components: - type: Transform - pos: -33.513584,-42.462963 + pos: -31.5,-34.5 parent: 2 - - uid: 5002 + - uid: 17553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.40754,-37.365307 + pos: -32.5,-34.5 parent: 2 - - uid: 5003 + - uid: 17554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.594513,-35.63679 + pos: -33.5,-34.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 17557 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 17558 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 + - uid: 17559 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 17560 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 17561 + components: + - type: Transform + pos: -35.5,-39.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + pos: -35.5,-40.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 + - uid: 17564 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - uid: 17565 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 17566 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 17567 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 17568 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 4996 + components: + - type: Transform + pos: -18.641283,-34.260426 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: -11.407126,-24.44871 parent: 2 - proto: CableTerminal entities: @@ -33125,6 +33132,20 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - uid: 6240 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6242 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: CargoRequestComputerCircuitboard entities: - uid: 5015 @@ -37902,6 +37923,24 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-12.5 parent: 2 + - uid: 17666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-39.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-38.5 + parent: 2 + - uid: 17668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-37.5 + parent: 2 - proto: ChairOfficeLight entities: - uid: 5879 @@ -38758,6 +38797,31 @@ entities: - type: Transform pos: -28.5,-28.5 parent: 2 + - uid: 17648 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 17659 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 - proto: ClosetSteelBase entities: - uid: 1119 @@ -39577,6 +39641,12 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-25.5 parent: 2 + - uid: 17650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 2 - proto: ComputerRadar entities: - uid: 6157 @@ -39656,6 +39726,12 @@ entities: - type: Transform pos: -0.5,-21.5 parent: 2 + - uid: 17651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-38.5 + parent: 2 - proto: ComputerStationRecords entities: - uid: 6169 @@ -39741,23 +39817,6 @@ entities: - type: Transform pos: -49.5,1.5 parent: 2 -- proto: ContainmentFieldGenerator - entities: - - uid: 6183 - components: - - type: Transform - pos: -35.5,-34.5 - parent: 2 - - uid: 6184 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 6185 - components: - - type: Transform - pos: -27.5,-38.5 - parent: 2 - proto: ConveyorBelt entities: - uid: 6186 @@ -40113,89 +40172,27 @@ entities: parent: 2 - proto: CrateEngineeringSingularityCollector entities: - - uid: 6231 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 2 - - uid: 6232 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 2 - - uid: 6233 + - uid: 6183 components: - type: Transform - pos: -12.5,-46.5 + pos: -10.5,-46.5 parent: 2 - uid: 6234 - components: - - type: Transform - pos: -13.5,-46.5 - parent: 2 - - uid: 6235 components: - type: Transform pos: -10.5,-45.5 parent: 2 - - uid: 6236 - components: - - type: Transform - pos: -11.5,-45.5 - parent: 2 - - uid: 6238 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 2 -- proto: CrateEngineeringSingularityContainment - entities: - - uid: 6237 - components: - - type: Transform - pos: -11.5,-43.5 - parent: 2 - - uid: 6239 - components: - - type: Transform - pos: -11.5,-42.5 - parent: 2 - - uid: 6240 - components: - - type: Transform - pos: -10.5,-43.5 - parent: 2 - - uid: 6242 - components: - - type: Transform - pos: -12.5,-42.5 - parent: 2 - - uid: 6243 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 2 - proto: CrateEngineeringSingularityEmitter entities: - - uid: 6247 + - uid: 6184 components: - type: Transform pos: -11.5,-46.5 parent: 2 - - uid: 6248 - components: - - type: Transform - pos: -10.5,-46.5 - parent: 2 - - uid: 6249 - components: - - type: Transform - pos: -12.5,-45.5 - parent: 2 - - uid: 6250 + - uid: 6238 components: - type: Transform - pos: -13.5,-45.5 + pos: -11.5,-45.5 parent: 2 - proto: CrateEngineeringSolar entities: @@ -46799,40 +46796,32 @@ entities: parent: 2 - proto: Emitter entities: - - uid: 7254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-42.5 - parent: 2 - - uid: 7255 + - uid: 2673 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 2 - - uid: 7256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-42.5 + pos: -34.5,-38.5 parent: 2 - - uid: 7257 - components: - - type: Transform - pos: -27.5,-31.5 - parent: 2 - - uid: 7258 + - type: DeviceLinkSink + links: + - 17680 + - uid: 3902 components: - type: Transform - pos: -35.5,-31.5 + rot: 3.141592653589793 rad + pos: -31.5,-41.5 parent: 2 - - uid: 7259 + - type: DeviceLinkSink + links: + - 17680 + - uid: 3904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-45.5 + pos: -31.5,-35.5 parent: 2 + - type: DeviceLinkSink + links: + - 17680 - proto: EncryptionKeyCargo entities: - uid: 7261 @@ -48966,6 +48955,13 @@ entities: - type: Transform pos: -35.033707,11.511257 parent: 2 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 17664 + components: + - type: Transform + pos: -20.537176,-38.476357 + parent: 2 - proto: FoodCarrot entities: - uid: 7608 @@ -49441,6 +49437,38 @@ entities: parent: 2 - proto: GasFilter entities: + - uid: 3908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 3911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 7683 components: - type: MetaData @@ -49747,6 +49775,14 @@ entities: color: '#ADD8E6FF' - proto: GasPassiveVent entities: + - uid: 3909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 7708 components: - type: Transform @@ -49869,6 +49905,41 @@ entities: color: '#800080FF' - proto: GasPipeBend entities: + - uid: 3140 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-40.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-36.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-40.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-34.5 + parent: 2 - uid: 7726 components: - type: Transform @@ -51349,8 +51420,149 @@ entities: parent: 2 - type: AtmosPipeColor color: '#66FF00FF' + - uid: 17476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-37.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-38.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + pos: -42.5,-38.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-39.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-39.5 + parent: 2 + - uid: 17481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-34.5 + parent: 2 + - uid: 17482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-40.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-42.5 + parent: 2 + - uid: 17494 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 17496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-42.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-45.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-46.5 + parent: 2 + - uid: 17535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-44.5 + parent: 2 + - uid: 17536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-32.5 + parent: 2 + - uid: 17543 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-42.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-45.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 17646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-46.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-31.5 + parent: 2 + - uid: 17691 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 - proto: GasPipeFourway entities: + - uid: 3169 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 - uid: 7920 components: - type: Transform @@ -51645,13 +51857,47 @@ entities: parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' + - uid: 17503 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 - proto: GasPipeStraight entities: + - uid: 3141 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 - uid: 3691 components: - type: Transform pos: -16.5,-54.5 parent: 2 + - uid: 3816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-34.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-33.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-33.5 + parent: 2 - uid: 7962 components: - type: Transform @@ -52927,14 +53173,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - - uid: 8135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - uid: 8136 components: - type: Transform @@ -65461,14 +65699,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - - uid: 9765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - uid: 9766 components: - type: Transform @@ -66029,8 +66259,329 @@ entities: parent: 2 - type: AtmosPipeColor color: '#800080FF' + - uid: 12011 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-37.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-37.5 + parent: 2 + - uid: 16857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-42.5 + parent: 2 + - uid: 17493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 17498 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-34.5 + parent: 2 + - uid: 17512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-34.5 + parent: 2 + - uid: 17515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-34.5 + parent: 2 + - uid: 17521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - uid: 17522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-45.5 + parent: 2 + - uid: 17523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-44.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-44.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-44.5 + parent: 2 + - uid: 17526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-44.5 + parent: 2 + - uid: 17527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-44.5 + parent: 2 + - uid: 17528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-44.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-44.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-44.5 + parent: 2 + - uid: 17533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-45.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 17538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-32.5 + parent: 2 + - uid: 17539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-32.5 + parent: 2 + - uid: 17540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 2 + - uid: 17541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 2 + - uid: 17542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-42.5 + parent: 2 + - uid: 17625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-42.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-42.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-43.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-46.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-46.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-46.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-46.5 + parent: 2 + - uid: 17640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-46.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-46.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-45.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-44.5 + parent: 2 + - uid: 17683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-31.5 + parent: 2 + - uid: 17684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-31.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 - proto: GasPipeTJunction entities: + - uid: 3812 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-33.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-45.5 + parent: 2 - uid: 9838 components: - type: Transform @@ -68629,6 +69180,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00008BFF' + - uid: 17495 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-43.5 + parent: 2 + - uid: 17514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-34.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-43.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 2 - proto: GasPort entities: - uid: 10174 @@ -68775,6 +69355,22 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' + - uid: 17631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: GasPressurePump entities: - uid: 10191 @@ -69005,6 +69601,51 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' + - uid: 17513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17629 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-44.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17693 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17694 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: GasRecycler entities: - uid: 10210 @@ -69040,6 +69681,21 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - uid: 17633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-44.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17634 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: GasThermoMachineFreezerEnabled entities: - uid: 10214 @@ -69063,6 +69719,22 @@ entities: joinedGrid: 2 - proto: GasValve entities: + - uid: 3893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 10216 components: - type: Transform @@ -69144,8 +69816,56 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' + - uid: 17510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-32.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: GasVentPump entities: + - uid: 2584 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17544 + - uid: 2674 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17544 + - uid: 3906 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17544 - uid: 10223 components: - type: Transform @@ -70950,6 +71670,33 @@ entities: color: '#00008BFF' - proto: GasVentScrubber entities: + - uid: 2675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17544 + - uid: 2676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17544 + - uid: 3901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17544 - uid: 10409 components: - type: Transform @@ -72884,6 +73631,11 @@ entities: parent: 2 - proto: Grille entities: + - uid: 3894 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 - uid: 5822 components: - type: Transform @@ -77541,6 +78293,61 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 2 + - uid: 17497 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 17499 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 + - uid: 17500 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 17501 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - uid: 17502 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 2 + - uid: 17507 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 17516 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 17518 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 17519 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 17581 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 - proto: GrilleBroken entities: - uid: 11522 @@ -78143,6 +78950,72 @@ entities: - type: Transform pos: -38.5,17.5 parent: 2 +- proto: HeatExchanger + entities: + - uid: 17474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-38.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-38.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: HighSecArmoryLocked entities: - uid: 11637 @@ -78207,6 +79080,18 @@ entities: - type: Transform pos: -1.5,19.5 parent: 2 +- proto: HighSecDoor + entities: + - uid: 2636 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 - proto: HolofanProjector entities: - uid: 11649 @@ -78583,6 +79468,12 @@ entities: parent: 2 - proto: IntercomEngineering entities: + - uid: 2637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 2 - uid: 11714 components: - type: Transform @@ -79032,6 +79923,62 @@ entities: - type: Transform pos: -6.7160864,-10.619381 parent: 2 +- proto: LockableButtonChiefEngineer + entities: + - uid: 17654 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17598: + - Pressed: Toggle + 17599: + - Pressed: Toggle + 12740: + - Pressed: Toggle + 3898: + - Pressed: Toggle + 17509: + - Pressed: Toggle + 17505: + - Pressed: Toggle + 17508: + - Pressed: Toggle + 17597: + - Pressed: Toggle + 17596: + - Pressed: Toggle + 17595: + - Pressed: Toggle + 17594: + - Pressed: Toggle + 17593: + - Pressed: Toggle + 17588: + - Pressed: Toggle + 17589: + - Pressed: Toggle + 17590: + - Pressed: Toggle + 17591: + - Pressed: Toggle + 17592: + - Pressed: Toggle + - uid: 17680 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3904: + - Pressed: Toggle + 2673: + - Pressed: Toggle + 3902: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 11778 @@ -79914,6 +80861,16 @@ entities: - type: Transform pos: -10.583715,-37.391212 parent: 2 + - uid: 17662 + components: + - type: Transform + pos: -21.318426,-38.538857 + parent: 2 + - uid: 17663 + components: + - type: Transform + pos: -21.021551,-38.39823 + parent: 2 - proto: MedkitToxinFilled entities: - uid: 11927 @@ -80034,6 +80991,20 @@ entities: parent: 2 - proto: NitrogenCanister entities: + - uid: 6185 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6231 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 11949 components: - type: Transform @@ -80043,6 +81014,20 @@ entities: joinedGrid: 2 - proto: NitrousOxideCanister entities: + - uid: 6232 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6233 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 11950 components: - type: Transform @@ -80132,6 +81117,20 @@ entities: parent: 2 - proto: OxygenCanister entities: + - uid: 6243 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6247 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 11962 components: - type: Transform @@ -80414,61 +81413,6 @@ entities: - type: Transform pos: -36.470303,-13.543975 parent: 2 -- proto: ParticleAcceleratorControlBox - entities: - - uid: 12006 - components: - - type: Transform - pos: -18.5,-36.5 - parent: 2 -- proto: ParticleAcceleratorEmitterFore - entities: - - uid: 12007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-38.5 - parent: 2 -- proto: ParticleAcceleratorEmitterPort - entities: - - uid: 12008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-39.5 - parent: 2 -- proto: ParticleAcceleratorEmitterStarboard - entities: - - uid: 12009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-37.5 - parent: 2 -- proto: ParticleAcceleratorEndCap - entities: - - uid: 12010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-38.5 - parent: 2 -- proto: ParticleAcceleratorFuelChamber - entities: - - uid: 12011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-38.5 - parent: 2 -- proto: ParticleAcceleratorPowerBox - entities: - - uid: 12012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-38.5 - parent: 2 - proto: PartRodMetal1 entities: - uid: 12013 @@ -80806,6 +81750,20 @@ entities: parent: 2 - proto: PlasmaCanister entities: + - uid: 6235 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6236 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 12074 components: - type: Transform @@ -80827,13 +81785,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,1.5 parent: 2 -- proto: PlasmaTankFilled - entities: - - uid: 12077 - components: - - type: Transform - pos: -18.588102,-40.51464 - parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 12078 @@ -80873,6 +81824,68 @@ entities: - type: Transform pos: 15.5,-7.5 parent: 2 +- proto: PlastitaniumWindow + entities: + - uid: 456 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 12009 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 12010 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 - proto: PlushieBee entities: - uid: 12085 @@ -80906,11 +81919,6 @@ entities: parent: 2 - proto: PlushieSpaceLizard entities: - - uid: 12089 - components: - - type: Transform - pos: -30.526485,-39.54669 - parent: 2 - uid: 12090 components: - type: Transform @@ -84696,42 +85704,127 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-42.5 parent: 2 -- proto: RadiationCollectorFullTank +- proto: RadiationCollectorNoTank entities: - - uid: 12737 + - uid: 2626 components: - type: Transform - pos: -29.5,-44.5 + pos: -29.5,-41.5 parent: 2 - - uid: 12738 + - uid: 2627 components: - type: Transform - pos: -32.5,-44.5 + pos: -30.5,-41.5 parent: 2 - - uid: 12739 + - uid: 2631 components: - type: Transform - pos: -30.5,-32.5 + pos: -36.5,-39.5 parent: 2 - - uid: 12740 + - uid: 2632 components: - type: Transform - pos: -29.5,-32.5 + pos: -36.5,-40.5 parent: 2 - - uid: 12741 + - uid: 2648 components: - type: Transform - pos: -28.5,-32.5 + pos: -32.5,-35.5 parent: 2 - - uid: 12742 + - uid: 3158 components: - type: Transform - pos: -30.5,-44.5 + pos: -34.5,-39.5 parent: 2 - - uid: 12743 + - uid: 3159 components: - type: Transform - pos: -34.5,-32.5 + pos: -36.5,-37.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: -34.5,-36.5 parent: 2 - proto: RadioHandheld entities: @@ -85985,11 +87078,6 @@ entities: - type: Transform pos: -19.5,-32.5 parent: 2 - - uid: 12972 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 2 - uid: 12973 components: - type: Transform @@ -86758,6 +87846,12 @@ entities: parent: 2 - proto: ReinforcedPlasmaWindow entities: + - uid: 3922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-35.5 + parent: 2 - uid: 13121 components: - type: Transform @@ -87036,6 +88130,72 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-45.5 parent: 2 + - uid: 17569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-35.5 + parent: 2 + - uid: 17570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-34.5 + parent: 2 + - uid: 17571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-33.5 + parent: 2 + - uid: 17572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 17573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-34.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-41.5 + parent: 2 + - uid: 17575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-41.5 + parent: 2 + - uid: 17576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-42.5 + parent: 2 + - uid: 17577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-43.5 + parent: 2 + - uid: 17578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-42.5 + parent: 2 + - uid: 17579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-43.5 + parent: 2 - proto: ReinforcedWindow entities: - uid: 10176 @@ -89293,6 +90453,22 @@ entities: - 13610 - proto: ShuttersRadiation entities: + - uid: 3898 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 12740 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 - uid: 13562 components: - type: Transform @@ -89341,6 +90517,133 @@ entities: - type: DeviceLinkSink links: - 13603 + - uid: 17505 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17508 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17509 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17588 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17589 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17590 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17591 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17592 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 + - uid: 17599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17654 - proto: ShuttersRadiationOpen entities: - uid: 13568 @@ -90747,6 +92050,12 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-29.5 parent: 2 + - uid: 17647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-45.5 + parent: 2 - proto: SignRobo entities: - uid: 13741 @@ -90906,13 +92215,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,12.5 parent: 2 -- proto: SingularityGenerator - entities: - - uid: 13766 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 2 - proto: Sink entities: - uid: 13767 @@ -93446,6 +94748,13 @@ entities: - type: Transform pos: -40.5,-2.5 parent: 2 +- proto: supermatter + entities: + - uid: 12741 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 - proto: SurveillanceCameraCommand entities: - uid: 14198 @@ -94434,11 +95743,6 @@ entities: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 14296 - components: - - type: Transform - pos: -18.5,-40.5 - parent: 2 - uid: 14297 components: - type: Transform @@ -95781,6 +97085,31 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,7.5 parent: 2 + - uid: 17655 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 17657 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 2 - proto: TableStone entities: - uid: 14553 @@ -97403,6 +98732,43 @@ entities: - type: Transform pos: -6.5,-27.5 parent: 2 +- proto: WallPlastitanium + entities: + - uid: 2628 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 - proto: WallReinforced entities: - uid: 10710 @@ -104372,6 +105738,65 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-34.5 parent: 2 + - uid: 17545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 2 + - uid: 17546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-32.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-41.5 + parent: 2 + - uid: 17582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-41.5 + parent: 2 + - uid: 17583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-44.5 + parent: 2 + - uid: 17584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-35.5 + parent: 2 + - uid: 17585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-35.5 + parent: 2 + - uid: 17586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-35.5 + parent: 2 + - uid: 17587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-41.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 - proto: WallRiveted entities: - uid: 16104 @@ -108266,15 +109691,6 @@ entities: parent: 2 - proto: WarpPoint entities: - - uid: 16857 - components: - - type: MetaData - name: pa room - - type: Transform - pos: -19.5,-38.5 - parent: 2 - - type: WarpPoint - location: pa room - uid: 16858 components: - type: Transform @@ -108489,6 +109905,20 @@ entities: parent: 2 - proto: WaterVaporCanister entities: + - uid: 6237 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6239 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 16889 components: - type: Transform From 40892886c0fbcdc2454b419f15aa6949f65e16e9 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 26 Apr 2024 01:58:36 -0400 Subject: [PATCH 04/38] Update edge.yml --- Resources/Maps/edge.yml | 5815 ++++++++++++++++++++++----------------- 1 file changed, 3270 insertions(+), 2545 deletions(-) diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 7413f5396f5..7963641ddf5 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -195,7 +195,7 @@ entities: version: 6 -2,-3: ind: -2,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -243,7 +243,7 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -383,8 +383,8 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 2374: 21,-25 - 2375: 22,-25 + 2357: 21,-25 + 2358: 22,-25 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -401,19 +401,19 @@ entities: id: BotLeft decals: 0: 15,-5 - 1037: 15,-4 - 1390: -50,-11 - 1391: -49,-11 - 1392: -48,-11 - 2621: -1,-36 - 2622: -1,-37 - 2623: 0,-37 - 2624: 0,-36 - 2625: 0,-36 - 2626: 1,-36 - 2627: 1,-37 - 2628: 2,-37 - 2629: 2,-36 + 1021: 15,-4 + 1374: -50,-11 + 1375: -49,-11 + 1376: -48,-11 + 2604: -1,-36 + 2605: -1,-37 + 2606: 0,-37 + 2607: 0,-36 + 2608: 0,-36 + 2609: 1,-36 + 2610: 1,-37 + 2611: 2,-37 + 2612: 2,-36 - node: color: '#FFFFFF93' id: BotLeftGreyscale @@ -424,8 +424,8 @@ entities: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2681: -1,-22 - 2682: -2,-22 + 2664: -1,-22 + 2665: -2,-22 - node: color: '#FFFFFFFF' id: BotRight @@ -442,57 +442,57 @@ entities: color: '#FFFFFFFF' id: Box decals: - 1387: -52,-9 - 1395: -52,-10 + 1371: -52,-9 + 1379: -52,-10 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 2263: 5,-26 - 2264: 4,-26 - 2265: 3,-26 - 2266: 2,-26 - 2267: 1,-26 - 2268: 1,-28 - 2269: 2,-28 - 2270: 3,-28 - 2271: 4,-28 - 2272: 5,-28 + 2246: 5,-26 + 2247: 4,-26 + 2248: 3,-26 + 2249: 2,-26 + 2250: 1,-26 + 2251: 1,-28 + 2252: 2,-28 + 2253: 3,-28 + 2254: 4,-28 + 2255: 5,-28 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Box decals: - 1990: -52,-9 + 1974: -52,-9 - node: color: '#EFB34196' id: BoxGreyscale decals: - 300: -18,-29 - 301: -18,-28 - 302: -18,-35 + 299: -18,-29 + 300: -18,-28 + 301: -18,-35 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 549: -39,34 - 550: -39,35 - 551: -39,36 - 552: -39,37 - 553: -37,25 - 554: -36,25 - 555: -35,25 - 556: -50,32 - 557: -49,32 - 558: -50,37 - 599: -51,37 - 600: -55,31 - 601: -56,31 - 602: -53,31 - 1388: -52,-9 - 1389: -52,-10 - 2329: -57,31 + 533: -39,34 + 534: -39,35 + 535: -39,36 + 536: -39,37 + 537: -37,25 + 538: -36,25 + 539: -35,25 + 540: -50,32 + 541: -49,32 + 542: -50,37 + 583: -51,37 + 584: -55,31 + 585: -56,31 + 586: -53,31 + 1372: -52,-9 + 1373: -52,-10 + 2312: -57,31 - node: cleanable: True color: '#FFFFFFFF' @@ -504,7 +504,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 2562: -46,-13 + 2545: -46,-13 - node: color: '#FF0000FF' id: BrickTileSteelCornerNe @@ -513,7 +513,7 @@ entities: 221: -28,-9 229: -32,-5 260: -21,-12 - 1006: -28,-5 + 990: -28,-5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -525,7 +525,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 2563: -48,-13 + 2546: -48,-13 - node: color: '#FF0000FF' id: BrickTileSteelCornerNw @@ -533,7 +533,7 @@ entities: 160: -54,-3 230: -34,-5 267: -24,-12 - 1005: -30,-5 + 989: -30,-5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -545,7 +545,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 2569: -46,-19 + 2552: -46,-19 - node: color: '#FF0000FF' id: BrickTileSteelCornerSe @@ -553,7 +553,7 @@ entities: 91: -47,-5 211: -28,-16 261: -21,-17 - 1007: -28,-7 + 991: -28,-7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -563,7 +563,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 2568: -48,-19 + 2551: -48,-19 - node: color: '#FF0000FF' id: BrickTileSteelCornerSw @@ -572,14 +572,14 @@ entities: 188: -33,-11 208: -29,-16 262: -24,-17 - 1008: -30,-7 + 992: -30,-7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: 10: -11,7 - 987: -7,-30 - 2615: -24,4 + 971: -7,-30 + 2598: -24,4 - node: color: '#FF0000FF' id: BrickTileSteelInnerNe @@ -613,16 +613,16 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 986: -6,-30 + 970: -6,-30 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 2558: -46,-15 - 2559: -46,-14 - 2566: -46,-16 - 2567: -46,-18 - 2587: -46,-17 + 2541: -46,-15 + 2542: -46,-14 + 2549: -46,-16 + 2550: -46,-18 + 2570: -46,-17 - node: color: '#FF0000FF' id: BrickTileSteelLineE @@ -645,12 +645,12 @@ entities: 269: -21,-14 270: -21,-15 271: -21,-16 - 415: 28,4 - 416: 28,5 - 417: 28,6 - 418: 28,7 - 589: -28,-15 - 1003: -28,-6 + 399: 28,4 + 400: 28,5 + 401: 28,6 + 402: 28,7 + 573: -28,-15 + 987: -28,-6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -662,13 +662,13 @@ entities: color: '#D4D4D428' id: BrickTileSteelLineN decals: - 1385: -48,-13 - 1386: -46,-13 + 1369: -48,-13 + 1370: -46,-13 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 2564: -47,-13 + 2547: -47,-13 - node: color: '#FF0000FF' id: BrickTileSteelLineN @@ -711,7 +711,7 @@ entities: 233: -33,-5 258: -23,-12 259: -22,-12 - 1009: -29,-5 + 993: -29,-5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -724,23 +724,23 @@ entities: 23: -7,23 24: -8,23 25: -9,23 - 2633: -8,-39 - 2634: -7,-39 - 2635: -6,-39 + 2616: -8,-39 + 2617: -7,-39 + 2618: -6,-39 - node: color: '#474A4DFF' id: BrickTileSteelLineS decals: - 1013: -25,-9 - 1014: -24,-9 - 1015: -23,-9 - 1016: -22,-9 - 1017: -21,-9 + 997: -25,-9 + 998: -24,-9 + 999: -23,-9 + 1000: -22,-9 + 1001: -21,-9 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 2570: -47,-19 + 2553: -47,-19 - node: color: '#FF0000FF' id: BrickTileSteelLineS @@ -776,31 +776,31 @@ entities: 194: -30,-11 272: -22,-17 273: -23,-17 - 1010: -29,-7 + 994: -29,-7 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: 14: -10,7 15: -9,7 - 2630: -8,-39 - 2631: -7,-39 - 2632: -6,-39 + 2613: -8,-39 + 2614: -7,-39 + 2615: -6,-39 - node: color: '#474A4DFF' id: BrickTileSteelLineW decals: - 1011: -25,-9 - 1012: -25,-8 + 995: -25,-9 + 996: -25,-8 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 2560: -48,-15 - 2561: -48,-14 - 2565: -48,-16 - 2571: -48,-18 - 2572: -48,-17 + 2543: -48,-15 + 2544: -48,-14 + 2548: -48,-16 + 2554: -48,-18 + 2555: -48,-17 - node: color: '#FF0000FF' id: BrickTileSteelLineW @@ -824,8 +824,8 @@ entities: 264: -24,-15 265: -24,-14 266: -24,-13 - 590: -29,-15 - 1004: -30,-6 + 574: -29,-15 + 988: -30,-6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -836,908 +836,908 @@ entities: 20: -10,22 26: -24,6 27: -24,7 - 982: -6,-34 - 983: -6,-33 - 984: -6,-32 - 985: -6,-31 - 988: -7,-28 - 989: -7,-29 - 990: -7,-27 - 991: -7,-26 - 992: -7,-25 - 993: -7,-23 - 994: -7,-22 - 995: -7,-21 - 996: -7,-20 - 997: -7,-19 - 998: -7,-18 - 999: -7,-17 - 1000: -7,-16 - 2494: -24,5 + 966: -6,-34 + 967: -6,-33 + 968: -6,-32 + 969: -6,-31 + 972: -7,-28 + 973: -7,-29 + 974: -7,-27 + 975: -7,-26 + 976: -7,-25 + 977: -7,-23 + 978: -7,-22 + 979: -7,-21 + 980: -7,-20 + 981: -7,-19 + 982: -7,-18 + 983: -7,-17 + 984: -7,-16 + 2477: -24,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2083: -8,36 + 2067: -8,36 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 653: 13,6 + 637: 13,6 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 778: 28,12 + 762: 28,12 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 539: -39,33 + 523: -39,33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 394: -16,-33 + 378: -16,-33 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2084: -13,36 + 2068: -13,36 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 637: 10,15 - 710: 10,6 + 621: 10,15 + 694: 10,6 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 546: -43,34 - 2390: -45,44 + 530: -43,34 + 2373: -45,44 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 429: -17,33 - 453: -15,34 + 413: -17,33 + 437: -15,34 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 635: 19,15 - 652: 13,8 + 619: 19,15 + 636: 13,8 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 2383: -39,39 + 2366: -39,39 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 454: -6,33 + 438: -6,33 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 651: 15,8 - 801: 19,23 + 635: 15,8 + 785: 19,23 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 2382: -45,39 + 2365: -45,39 - node: color: '#52B4E996' id: BrickTileWhiteEndE decals: - 644: 15,7 - 657: 19,7 - 675: 23,7 + 628: 15,7 + 641: 19,7 + 659: 23,7 - node: color: '#52B4E996' id: BrickTileWhiteEndN decals: - 650: 14,8 - 654: 18,8 - 655: 22,8 - 709: 15,6 + 634: 14,8 + 638: 18,8 + 639: 22,8 + 693: 15,6 - node: color: '#52B4E996' id: BrickTileWhiteEndS decals: - 643: 14,6 - 656: 18,6 - 658: 22,6 + 627: 14,6 + 640: 18,6 + 642: 22,6 - node: color: '#52B4E996' id: BrickTileWhiteEndW decals: - 645: 13,7 - 670: 21,7 + 629: 13,7 + 654: 21,7 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteEndW decals: - 1931: 17,7 + 1915: 17,7 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1995: -12,36 - 2087: -9,36 + 1979: -12,36 + 2071: -9,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 649: 14,7 - 673: 22,7 - 703: 13,5 - 704: 12,6 + 633: 14,7 + 657: 22,7 + 687: 13,5 + 688: 12,6 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 1932: 18,7 + 1916: 18,7 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: - 780: 26,12 + 764: 26,12 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 534: -47,32 - 538: -40,33 - 2400: -39,41 - 2401: -44,44 + 518: -47,32 + 522: -40,33 + 2383: -39,41 + 2384: -44,44 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 395: -17,-33 + 379: -17,-33 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 421: -16,36 - 1996: -9,36 - 2088: -12,36 + 405: -16,36 + 1980: -9,36 + 2072: -12,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 639: 11,15 - 646: 14,7 - 672: 22,7 - 680: 12,6 - 705: 15,5 + 623: 11,15 + 630: 14,7 + 656: 22,7 + 664: 12,6 + 689: 15,5 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1933: 18,7 + 1917: 18,7 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2402: -44,44 + 2385: -44,44 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 430: -17,34 - 452: -15,38 - 1378: -12,39 - 2052: -9,38 + 414: -17,34 + 436: -15,38 + 1362: -12,39 + 2036: -9,38 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 629: 12,15 - 648: 14,7 - 674: 22,7 - 706: 12,8 + 613: 12,15 + 632: 14,7 + 658: 22,7 + 690: 12,8 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 1934: 18,7 + 1918: 18,7 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 2414: 11,-7 + 2397: 11,-7 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2398: -40,39 - 2399: -39,41 + 2381: -40,39 + 2382: -39,41 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 462: -6,38 - 1377: -9,39 - 2047: -12,38 + 446: -6,38 + 1361: -9,39 + 2031: -12,38 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 647: 14,7 - 671: 22,7 - 799: 21,23 + 631: 14,7 + 655: 22,7 + 783: 21,23 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 1935: 18,7 + 1919: 18,7 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 2413: 14,-7 + 2396: 14,-7 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2397: -40,39 + 2380: -40,39 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 380: -20,-45 + 367: -20,-45 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 433: -8,32 - 434: -8,33 - 435: -8,34 - 436: -8,35 - 455: -15,35 - 456: -15,37 - 457: -15,36 - 2024: -12,38 - 2041: -12,37 - 2056: -9,37 + 417: -8,32 + 418: -8,33 + 419: -8,34 + 420: -8,35 + 439: -15,35 + 440: -15,37 + 441: -15,36 + 2008: -12,38 + 2025: -12,37 + 2040: -9,37 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 619: 12,10 - 620: 12,11 - 621: 12,12 - 622: 12,13 - 623: 12,14 - 636: 19,16 - 681: 23,10 - 682: 23,11 - 683: 23,12 - 684: 23,14 - 685: 23,15 - 686: 23,16 - 687: 23,17 - 688: 23,18 - 689: 23,19 - 701: 12,7 - 707: 15,4 - 708: 15,5 - 720: 8,12 - 721: 8,11 - 722: 8,10 - 723: 8,9 - 724: 8,8 - 725: 8,7 - 726: 8,6 - 727: 13,18 - 728: 13,19 - 729: 13,20 - 730: 13,21 - 731: 13,22 - 732: 13,23 - 733: 13,24 - 734: 13,25 - 735: 13,26 - 749: 19,18 - 750: 19,19 - 751: 19,20 - 752: 19,21 + 603: 12,10 + 604: 12,11 + 605: 12,12 + 606: 12,13 + 607: 12,14 + 620: 19,16 + 665: 23,10 + 666: 23,11 + 667: 23,12 + 668: 23,14 + 669: 23,15 + 670: 23,16 + 671: 23,17 + 672: 23,18 + 673: 23,19 + 685: 12,7 + 691: 15,4 + 692: 15,5 + 704: 8,12 + 705: 8,11 + 706: 8,10 + 707: 8,9 + 708: 8,8 + 709: 8,7 + 710: 8,6 + 711: 13,18 + 712: 13,19 + 713: 13,20 + 714: 13,21 + 715: 13,22 + 716: 13,23 + 717: 13,24 + 718: 13,25 + 719: 13,26 + 733: 19,18 + 734: 19,19 + 735: 19,20 + 736: 19,21 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2240: 23,13 + 2223: 23,13 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 777: 28,11 - 781: 26,13 - 782: 26,14 - 783: 26,15 - 784: 26,16 + 761: 28,11 + 765: 26,13 + 766: 26,14 + 767: 26,15 + 768: 26,16 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 499: -41,25 - 502: -41,29 - 503: -35,29 - 504: -35,28 - 505: -35,27 - 506: -35,26 - 526: -47,37 - 527: -47,36 - 528: -47,35 - 529: -47,34 - 530: -47,33 - 535: -40,35 - 536: -40,37 - 537: -39,32 - 540: -39,31 - 2099: -20,-74 - 2100: -20,-75 - 2101: -20,-76 - 2102: -20,-77 - 2103: -20,-78 - 2104: -20,-79 - 2105: -20,-80 - 2384: -39,40 - 2385: -39,42 + 483: -41,25 + 486: -41,29 + 487: -35,29 + 488: -35,28 + 489: -35,27 + 490: -35,26 + 510: -47,37 + 511: -47,36 + 512: -47,35 + 513: -47,34 + 514: -47,33 + 519: -40,35 + 520: -40,37 + 521: -39,32 + 524: -39,31 + 2083: -20,-74 + 2084: -20,-75 + 2085: -20,-76 + 2086: -20,-77 + 2087: -20,-78 + 2088: -20,-79 + 2089: -20,-80 + 2367: -39,40 + 2368: -39,42 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 315: -16,-46 - 316: -16,-45 - 317: -16,-43 - 318: -16,-44 - 319: -16,-42 - 320: -16,-41 - 321: -16,-40 - 322: -16,-39 - 323: -16,-38 - 324: -16,-37 - 325: -16,-36 - 326: -16,-35 - 377: -16,-47 - 396: -17,-32 - 397: -17,-31 - 398: -21,-30 - 399: -21,-29 - 400: -21,-28 - 401: -11,-37 - 402: -11,-38 - 403: -11,-39 - 404: -11,-40 - 405: -11,-41 + 303: -16,-46 + 304: -16,-45 + 305: -16,-43 + 306: -16,-44 + 307: -16,-42 + 308: -16,-41 + 309: -16,-40 + 310: -16,-39 + 311: -16,-38 + 312: -16,-37 + 313: -16,-36 + 314: -16,-35 + 365: -16,-47 + 380: -17,-32 + 381: -17,-31 + 382: -21,-30 + 383: -21,-29 + 384: -21,-28 + 385: -11,-37 + 386: -11,-38 + 387: -11,-39 + 388: -11,-40 + 389: -11,-41 - node: color: '#FF801DFF' id: BrickTileWhiteLineE decals: - 2303: 19,10 - 2304: 19,11 - 2305: 19,12 - 2306: 19,13 + 2286: 19,10 + 2287: 19,11 + 2288: 19,12 + 2289: 19,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 419: -18,36 - 420: -17,36 - 424: -14,39 - 425: -13,39 - 426: -7,39 - 427: -6,39 - 1379: -12,39 - 1380: -11,39 - 1381: -10,39 - 1993: -11,36 - 1994: -10,36 + 403: -18,36 + 404: -17,36 + 408: -14,39 + 409: -13,39 + 410: -7,39 + 411: -6,39 + 1363: -12,39 + 1364: -11,39 + 1365: -10,39 + 1977: -11,36 + 1978: -10,36 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1298: -8,39 - 1299: -9,39 + 1282: -8,39 + 1283: -9,39 - node: color: '#49FFC5FF' id: BrickTileWhiteLineN decals: - 2636: -5.9915333,-39.38071 - 2637: -6.991725,-39.38071 - 2638: -7.983293,-39.38071 + 2619: -5.9915333,-39.38071 + 2620: -6.991725,-39.38071 + 2621: -7.983293,-39.38071 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 679: 11,6 - 702: 14,5 - 758: 25,22 - 759: 26,22 - 760: 27,22 - 761: 28,22 - 762: 29,22 + 663: 11,6 + 686: 14,5 + 742: 25,22 + 743: 26,22 + 744: 27,22 + 745: 28,22 + 746: 29,22 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 779: 27,12 + 763: 27,12 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 532: -46,32 - 533: -45,32 - 2391: -43,44 - 2392: -42,44 + 516: -46,32 + 517: -45,32 + 2374: -43,44 + 2375: -42,44 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 428: -18,33 - 431: -16,34 - 432: -4,33 - 441: -13,41 - 442: -14,41 - 443: -12,41 - 444: -11,41 - 445: -10,41 - 446: -9,41 - 447: -7,41 - 448: -7,38 - 449: -8,38 - 450: -13,38 - 451: -14,38 - 1375: -11,39 - 1376: -10,39 - 1992: -8,41 + 412: -18,33 + 415: -16,34 + 416: -4,33 + 425: -13,41 + 426: -14,41 + 427: -12,41 + 428: -11,41 + 429: -10,41 + 430: -9,41 + 431: -7,41 + 432: -7,38 + 433: -8,38 + 434: -13,38 + 435: -14,38 + 1359: -11,39 + 1360: -10,39 + 1976: -8,41 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1289: -5,33 + 1273: -5,33 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 630: 13,15 - 631: 14,15 - 632: 16,15 - 633: 15,15 - 634: 18,15 - 753: 25,18 - 754: 26,18 - 755: 27,18 - 756: 28,18 - 757: 29,18 - 800: 20,23 + 614: 13,15 + 615: 14,15 + 616: 16,15 + 617: 15,15 + 618: 18,15 + 737: 25,18 + 738: 26,18 + 739: 27,18 + 740: 28,18 + 741: 29,18 + 784: 20,23 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2241: 17,15 + 2224: 17,15 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 2411: 12,-7 - 2412: 13,-7 + 2394: 12,-7 + 2395: 13,-7 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2393: -41,39 - 2394: -42,39 - 2395: -43,39 - 2396: -44,39 + 2376: -41,39 + 2377: -42,39 + 2378: -43,39 + 2379: -44,39 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 422: -16,37 - 423: -16,38 - 437: -13,32 - 438: -13,33 - 439: -13,34 - 440: -13,35 - 458: -6,34 - 459: -6,35 - 460: -6,36 - 461: -6,37 - 2028: -9,38 - 2031: -9,37 - 2055: -12,37 + 406: -16,37 + 407: -16,38 + 421: -13,32 + 422: -13,33 + 423: -13,34 + 424: -13,35 + 442: -6,34 + 443: -6,35 + 444: -6,36 + 445: -6,37 + 2012: -9,38 + 2015: -9,37 + 2039: -12,37 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 624: 10,10 - 625: 10,11 - 626: 10,12 - 627: 10,13 - 628: 10,14 - 638: 11,16 - 677: 12,8 - 678: 12,7 - 690: 21,19 - 691: 21,18 - 692: 21,17 - 693: 21,16 - 694: 21,15 - 695: 21,14 - 696: 21,13 - 697: 21,12 - 698: 21,11 - 699: 21,10 - 700: 20,20 - 711: 10,4 - 712: 10,5 - 713: 6,6 - 714: 6,7 - 715: 6,8 - 716: 6,9 - 717: 6,10 - 718: 6,11 - 719: 6,12 - 736: 12,26 - 737: 12,24 - 738: 12,25 - 739: 12,23 - 740: 12,22 - 741: 12,21 - 742: 12,20 - 743: 12,19 - 744: 12,18 - 745: 15,18 - 746: 15,19 - 747: 15,20 - 748: 15,21 - 797: 21,21 - 798: 21,22 - 802: 19,24 - 803: 19,25 - 804: 19,26 + 608: 10,10 + 609: 10,11 + 610: 10,12 + 611: 10,13 + 612: 10,14 + 622: 11,16 + 661: 12,8 + 662: 12,7 + 674: 21,19 + 675: 21,18 + 676: 21,17 + 677: 21,16 + 678: 21,15 + 679: 21,14 + 680: 21,13 + 681: 21,12 + 682: 21,11 + 683: 21,10 + 684: 20,20 + 695: 10,4 + 696: 10,5 + 697: 6,6 + 698: 6,7 + 699: 6,8 + 700: 6,9 + 701: 6,10 + 702: 6,11 + 703: 6,12 + 720: 12,26 + 721: 12,24 + 722: 12,25 + 723: 12,23 + 724: 12,22 + 725: 12,21 + 726: 12,20 + 727: 12,19 + 728: 12,18 + 729: 15,18 + 730: 15,19 + 731: 15,20 + 732: 15,21 + 781: 21,21 + 782: 21,22 + 786: 19,24 + 787: 19,25 + 788: 19,26 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 771: 25,11 - 772: 25,12 - 773: 25,13 - 774: 25,14 - 775: 25,15 - 776: 25,16 + 755: 25,11 + 756: 25,12 + 757: 25,13 + 758: 25,14 + 759: 25,15 + 760: 25,16 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 489: -25,34 - 490: -25,33 - 500: -43,25 - 501: -43,29 - 507: -39,25 - 508: -39,26 - 509: -39,27 - 510: -39,28 - 511: -39,29 - 521: -51,32 - 522: -51,33 - 523: -51,34 - 524: -51,35 - 525: -51,36 - 541: -43,31 - 542: -43,32 - 543: -43,33 - 544: -41,35 - 545: -41,37 - 2106: -23,-80 - 2107: -23,-79 - 2108: -23,-78 - 2109: -23,-77 - 2110: -23,-76 - 2111: -23,-75 - 2112: -23,-74 - 2386: -45,40 - 2387: -45,41 - 2388: -45,42 - 2389: -45,43 + 473: -25,34 + 474: -25,33 + 484: -43,25 + 485: -43,29 + 491: -39,25 + 492: -39,26 + 493: -39,27 + 494: -39,28 + 495: -39,29 + 505: -51,32 + 506: -51,33 + 507: -51,34 + 508: -51,35 + 509: -51,36 + 525: -43,31 + 526: -43,32 + 527: -43,33 + 528: -41,35 + 529: -41,37 + 2090: -23,-80 + 2091: -23,-79 + 2092: -23,-78 + 2093: -23,-77 + 2094: -23,-76 + 2095: -23,-75 + 2096: -23,-74 + 2369: -45,40 + 2370: -45,41 + 2371: -45,42 + 2372: -45,43 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 379: -20,-46 - 381: -23,-44 - 382: -23,-43 - 383: -24,-41 - 387: -24,-37 - 388: -23,-35 - 389: -23,-34 - 390: -23,-31 - 391: -23,-32 - 392: -23,-30 - 393: -23,-29 - 406: -14,-41 - 407: -14,-40 - 408: -14,-39 - 409: -14,-38 - 410: -14,-37 + 366: -20,-46 + 368: -23,-44 + 369: -23,-43 + 370: -24,-41 + 371: -24,-37 + 372: -23,-35 + 373: -23,-34 + 374: -23,-31 + 375: -23,-32 + 376: -23,-30 + 377: -23,-29 + 390: -14,-41 + 391: -14,-40 + 392: -14,-39 + 393: -14,-38 + 394: -14,-37 - node: color: '#FF801DFF' id: BrickTileWhiteLineW decals: - 2299: 14,13 - 2300: 14,12 - 2301: 14,11 - 2302: 14,10 + 2282: 14,13 + 2283: 14,12 + 2284: 14,11 + 2285: 14,10 - node: color: '#FFFFFFFF' id: BushAOne decals: - 930: 37,-13 + 914: 37,-13 - node: color: '#FFFFFFFF' id: BushATwo decals: - 934: 37,-10 - 949: -27,24 - 955: 35,-13 + 918: 37,-10 + 933: -27,24 + 939: 35,-13 - node: color: '#FFFFFFFF' id: BushCOne decals: - 929: 37,-12 + 913: 37,-12 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 928: 37,-9 - 953: -45,23 - 954: 35,-12 - 968: -13,-2 + 912: 37,-9 + 937: -45,23 + 938: 35,-12 + 952: -13,-2 - node: color: '#FFFFFFFF' id: BushDOne decals: - 1350: -59.663837,-5.750451 + 1334: -59.663837,-5.750451 - node: color: '#FFFFFFFF' id: Busha1 decals: - 936: 33,-23 - 940: 33,-19 - 941: -17,27 + 920: 33,-23 + 924: 33,-19 + 925: -17,27 - node: color: '#FFFFFFFF' id: Busha2 decals: - 935: 34,-23 + 919: 34,-23 - node: color: '#FFFFFFFF' id: Busha3 decals: - 939: 34,-19 + 923: 34,-19 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 1347: -58.898212,-5.953576 - 1348: -61.554462,-6.266076 - 1349: -58.741962,-6.875451 + 1331: -58.898212,-5.953576 + 1332: -61.554462,-6.266076 + 1333: -58.741962,-6.875451 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 957: -50,6 + 941: -50,6 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 924: 13,-2 - 925: 10,2 - 933: 37,-11 - 948: -32,24 - 952: -45,22 - 958: -15,-12 + 908: 13,-2 + 909: 10,2 + 917: 37,-11 + 932: -32,24 + 936: -45,22 + 942: -15,-12 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 956: -50,7 + 940: -50,7 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 938: 35,-19 - 950: -28,24 - 951: -33,24 - 959: -14,-12 + 922: 35,-19 + 934: -28,24 + 935: -33,24 + 943: -14,-12 - node: color: '#FFFFFFFF' id: Bushd1 decals: - 969: -14,-2 + 953: -14,-2 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 926: 15,2 - 927: 12,-2 + 910: 15,2 + 911: 12,-2 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 944: -17,32 - 947: -33,24 + 928: -17,32 + 931: -33,24 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 905: -2,2 + 889: -2,2 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 904: -2,3 - 967: -15,-2 + 888: -2,3 + 951: -15,-2 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 943: -18,32 - 966: -13,-2 + 927: -18,32 + 950: -13,-2 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 937: 32,-19 + 921: 32,-19 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 942: -18,27 + 926: -18,27 - node: cleanable: True color: '#FFFFFFFF' id: Bushj1 decals: - 2287: -22,4 + 2270: -22,4 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 2095: -4.742067,39.22148 - 2096: -15.210269,39.22148 + 2079: -4.742067,39.22148 + 2080: -15.210269,39.22148 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 946: -45,9 + 930: -45,9 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 921: 2,-2 - 945: -45,10 - 960: -13,-12 - 961: -32,24 - 970: -15,-2 + 905: 2,-2 + 929: -45,10 + 944: -13,-12 + 945: -32,24 + 954: -15,-2 - node: cleanable: True color: '#FFFFFFFF' id: Bushn1 decals: - 2288: -20,3 + 2271: -20,3 - node: color: '#FFFFFFFF' id: Caution decals: - 2583: -47,-16 + 2566: -47,-16 - node: color: '#52B4E996' id: CheckerNESW decals: - 805: 15,23 - 806: 15,24 - 807: 15,25 - 808: 15,26 - 809: 16,26 - 810: 16,25 - 811: 16,24 - 812: 16,23 - 813: 17,23 - 814: 17,24 - 815: 17,25 - 816: 17,26 - 1942: 17,5 - 1943: 17,4 - 1944: 17,3 - 1945: 18,3 - 1946: 19,5 - 1947: 19,4 - 1948: 19,3 - 1949: 20,3 - 1950: 20,4 - 1951: 20,5 - 1952: 21,5 - 1953: 21,3 - 1954: 22,3 - 1955: 22,5 - 1956: 23,5 - 1957: 23,4 - 1958: 23,3 + 789: 15,23 + 790: 15,24 + 791: 15,25 + 792: 15,26 + 793: 16,26 + 794: 16,25 + 795: 16,24 + 796: 16,23 + 797: 17,23 + 798: 17,24 + 799: 17,25 + 800: 17,26 + 1926: 17,5 + 1927: 17,4 + 1928: 17,3 + 1929: 18,3 + 1930: 19,5 + 1931: 19,4 + 1932: 19,3 + 1933: 20,3 + 1934: 20,4 + 1935: 20,5 + 1936: 21,5 + 1937: 21,3 + 1938: 22,3 + 1939: 22,5 + 1940: 23,5 + 1941: 23,4 + 1942: 23,3 - node: cleanable: True color: '#52B4E996' id: CheckerNESW decals: - 1986: 18,5 - 1987: 18,4 - 1988: 21,4 - 1989: 22,4 + 1970: 18,5 + 1971: 18,4 + 1972: 21,4 + 1973: 22,4 - node: color: '#9FED5896' id: CheckerNESW decals: - 2242: 19,-14 - 2243: 19,-13 - 2244: 19,-12 - 2245: 20,-12 - 2246: 21,-12 - 2247: 22,-12 + 2225: 19,-14 + 2226: 19,-13 + 2227: 19,-12 + 2228: 20,-12 + 2229: 21,-12 + 2230: 22,-12 - node: color: '#A4610696' id: CheckerNESW decals: - 2407: 10,-4 - 2408: 10,-5 - 2409: 10,-6 - 2410: 10,-7 - 2415: 9,-20 - 2416: 9,-21 - 2417: 9,-22 - 2418: 9,-23 - 2419: 9,-24 - 2420: 9,-25 - 2421: 9,-26 - 2422: 9,-27 - 2423: 9,-28 - 2432: 9,-18 - 2433: 9,-17 - 2434: 9,-16 - 2435: 9,-15 - 2436: 9,-14 - 2437: 9,-13 - 2451: 10,-11 - 2452: 10,-10 - 2453: 10,-9 - 2454: 14,-32 - 2455: 14,-30 - 2456: 14,-29 - 2457: 14,-28 - 2458: 14,-27 - 2459: 14,-26 - 2460: 14,-25 - 2470: 14,-33 - 2485: 4,-3 - 2486: 4,-4 - 2487: 4,-5 - 2597: 14,-34 - 2598: 14,-35 + 2390: 10,-4 + 2391: 10,-5 + 2392: 10,-6 + 2393: 10,-7 + 2398: 9,-20 + 2399: 9,-21 + 2400: 9,-22 + 2401: 9,-23 + 2402: 9,-24 + 2403: 9,-25 + 2404: 9,-26 + 2405: 9,-27 + 2406: 9,-28 + 2415: 9,-18 + 2416: 9,-17 + 2417: 9,-16 + 2418: 9,-15 + 2419: 9,-14 + 2420: 9,-13 + 2434: 10,-11 + 2435: 10,-10 + 2436: 10,-9 + 2437: 14,-32 + 2438: 14,-30 + 2439: 14,-29 + 2440: 14,-28 + 2441: 14,-27 + 2442: 14,-26 + 2443: 14,-25 + 2453: 14,-33 + 2468: 4,-3 + 2469: 4,-4 + 2470: 4,-5 + 2580: 14,-34 + 2581: 14,-35 - node: color: '#DE3A3A96' id: CheckerNESW @@ -1755,8 +1755,8 @@ entities: color: '#EFB34196' id: CheckerNESW decals: - 2520: -12,-25 - 2521: -11,-25 + 2503: -12,-25 + 2504: -11,-25 - node: color: '#DE3A3A96' id: CheckerNWSE @@ -1780,47 +1780,47 @@ entities: color: '#EFB34196' id: Delivery decals: - 327: -28,-32 - 328: -25,-35 - 329: -36,-32 - 330: -39,-35 - 331: -36,-35 - 332: -28,-35 - 333: -28,-39 - 334: -36,-39 - 335: -32,-43 - 336: -32,-35 - 337: -28,-43 - 338: -25,-43 - 339: -28,-46 - 340: -36,-46 - 341: -39,-43 - 342: -36,-43 + 315: -28,-32 + 316: -25,-35 + 317: -36,-32 + 318: -39,-35 + 319: -36,-35 + 320: -28,-35 + 321: -28,-39 + 322: -36,-39 + 323: -32,-43 + 324: -32,-35 + 325: -28,-43 + 326: -25,-43 + 327: -28,-46 + 328: -36,-46 + 329: -39,-43 + 330: -36,-43 - node: color: '#FFFFFFFF' id: Delivery decals: - 603: -56,40 - 604: -56,41 - 605: -55,41 - 606: -54,41 - 607: -54,40 - 608: -54,39 - 609: -56,39 - 610: -55,39 - 2334: 22,-30 - 2335: 21,-30 - 2336: 21,-31 - 2337: 22,-31 + 587: -56,40 + 588: -56,41 + 589: -55,41 + 590: -54,41 + 591: -54,40 + 592: -54,39 + 593: -56,39 + 594: -55,39 + 2317: 22,-30 + 2318: 21,-30 + 2319: 21,-31 + 2320: 22,-31 - node: cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 2341: 13,-18 - 2342: 13,-17 - 2372: 22,-29 - 2373: 21,-29 + 2324: 13,-18 + 2325: 13,-17 + 2355: 22,-29 + 2356: 21,-29 - node: color: '#DE3A3A96' id: DeliveryGreyscale @@ -1847,862 +1847,862 @@ entities: color: '#EFB34196' id: DeliveryGreyscale decals: - 303: -21,-44 + 302: -21,-44 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 343: -35,-45 - 344: -34,-45 - 345: -33,-45 - 346: -31,-45 - 347: -30,-45 - 348: -29,-45 - 349: -30,-33 - 350: -29,-33 - 351: -31,-33 - 352: -33,-33 - 353: -34,-33 - 354: -35,-33 - 547: -46,34 - 548: -45,34 - 2338: 17,-30 - 2339: 18,-30 + 331: -35,-45 + 332: -34,-45 + 333: -33,-45 + 334: -31,-45 + 335: -30,-45 + 336: -29,-45 + 337: -30,-33 + 338: -29,-33 + 339: -31,-33 + 340: -33,-33 + 341: -34,-33 + 342: -35,-33 + 531: -46,34 + 532: -45,34 + 2321: 17,-30 + 2322: 18,-30 - node: cleanable: True color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2343: 14,-18 - 2344: 14,-17 - 2345: 15,-17 - 2346: 15,-18 - 2367: 18,-29 - 2368: 17,-29 - 2376: 16,-30 - 2377: 16,-29 + 2326: 14,-18 + 2327: 14,-17 + 2328: 15,-17 + 2329: 15,-18 + 2350: 18,-29 + 2351: 17,-29 + 2359: 16,-30 + 2360: 16,-29 - node: cleanable: True color: '#5D2C0098' id: Dirt decals: - 1835: 22,1 + 1819: 22,1 - node: cleanable: True color: '#5D2C00D3' id: Dirt decals: - 1836: 40,1 - 1837: -25,-3 - 1838: -26,2 - 1839: -32,3 - 1843: -31,5 - 1870: 26,-3 + 1820: 40,1 + 1821: -25,-3 + 1822: -26,2 + 1823: -32,3 + 1827: -31,5 + 1854: 26,-3 - node: cleanable: True color: '#5D5200FF' id: Dirt decals: - 1825: -2,-28 - 1826: -2,-25 - 1827: 4,-24 - 1828: 1,-23 - 1829: -4,-23 - 1830: -4,-22 - 1831: 0,-25 - 1833: 10,-30 - 1834: 24,-9 + 1809: -2,-28 + 1810: -2,-25 + 1811: 4,-24 + 1812: 1,-23 + 1813: -4,-23 + 1814: -4,-22 + 1815: 0,-25 + 1817: 10,-30 + 1818: 24,-9 - node: cleanable: True color: '#792C0079' id: Dirt decals: - 1912: 22,16 + 1896: 22,16 - node: cleanable: True color: '#792C0082' id: Dirt decals: - 1917: 11,11 - 1918: 11,14 - 1919: 19,16 - 1920: 12,18 - 1921: 13,25 - 1922: 13,24 - 1923: 14,5 - 1924: 23,6 - 1925: 19,8 - 1926: 11,5 - 1927: 8,7 - 1928: 6,11 - 1929: 19,6 + 1901: 11,11 + 1902: 11,14 + 1903: 19,16 + 1904: 12,18 + 1905: 13,25 + 1906: 13,24 + 1907: 14,5 + 1908: 23,6 + 1909: 19,8 + 1910: 11,5 + 1911: 8,7 + 1912: 6,11 + 1913: 19,6 - node: cleanable: True color: '#792C00B7' id: Dirt decals: - 1913: 21,17 - 1914: 16,15 - 1915: 12,15 - 1916: 10,13 + 1897: 21,17 + 1898: 16,15 + 1899: 12,15 + 1900: 10,13 - node: cleanable: True color: '#792C00D1' id: Dirt decals: - 1871: 25,-4 - 1872: 25,-10 - 1873: 39,-1 - 1874: 30,0 - 1875: 31,0 - 1876: 13,4 - 1877: 14,4 - 1878: 0,-2 - 1879: 20,-29 - 1880: 37,-24 - 1881: -7,-36 - 1882: -8,-37 - 1883: -7,-35 - 1884: -7,-31 - 1892: -14,-19 - 1893: -14,-19 - 1894: -15,-18 - 1895: -17,-21 - 1896: -18,-26 - 1897: -17,-13 - 1898: -17,-4 - 1899: -21,11 - 1900: -32,15 - 1901: -41,15 - 1902: -48,12 - 1903: -46,6 - 1909: 28,13 - 1910: 25,15 - 1911: 26,15 + 1855: 25,-4 + 1856: 25,-10 + 1857: 39,-1 + 1858: 30,0 + 1859: 31,0 + 1860: 13,4 + 1861: 14,4 + 1862: 0,-2 + 1863: 20,-29 + 1864: 37,-24 + 1865: -7,-36 + 1866: -8,-37 + 1867: -7,-35 + 1868: -7,-31 + 1876: -14,-19 + 1877: -14,-19 + 1878: -15,-18 + 1879: -17,-21 + 1880: -18,-26 + 1881: -17,-13 + 1882: -17,-4 + 1883: -21,11 + 1884: -32,15 + 1885: -41,15 + 1886: -48,12 + 1887: -46,6 + 1893: 28,13 + 1894: 25,15 + 1895: 26,15 - node: cleanable: True color: '#835432FF' id: Dirt decals: - 2253: 26,-17 - 2254: 25,-16 - 2255: 29,-17 + 2236: 26,-17 + 2237: 25,-16 + 2238: 29,-17 - node: cleanable: True color: '#A0521263' id: Dirt decals: - 1936: 18,7 - 1937: 18,7 - 1938: 18,6 - 1939: 17,6 - 1940: 17,7 - 1959: -28,10 - 1960: -28,10 - 1961: -28,9 - 1962: -28,9 - 1963: -29,10 - 1964: -28,11 - 1965: -29,11 - 1966: -28,10 - 1967: -28,10 - 1974: -29,13 - 1975: -29,13 - 1976: -29,13 - 1977: -28,14 - 1978: -28,15 - 1979: -30,14 - 1980: -29,12 - 1981: -28,12 - 1982: -29,12 - 1983: -29,12 - 1984: -29,13 - 1985: -29,13 - 1997: 39,-4 - 1998: 38,-4 - 1999: 38,-4 - 2000: 39,-8 - 2001: 39,-8 - 2002: 38,-7 - 2003: 38,-7 - 2004: 39,0 - 2005: 40,-1 - 2006: 40,-1 - 2007: 34,-1 - 2008: 33,-1 - 2009: 35,-1 - 2010: 35,-1 - 2011: 25,1 - 2012: 25,-3 - 2013: 24,-2 - 2014: 24,-3 - 2015: 26,-6 - 2016: 26,-6 - 2017: 29,-16 - 2018: 38,-19 - 2019: 36,-22 - 2020: 31,-23 - 2021: 40,-21 - 2022: 38,-20 - 2023: 40,-13 - 2025: 39,-14 - 2026: 34,-6 - 2027: 35,-6 - 2029: 32,-4 - 2030: 31,-3 - 2032: 31,-3 - 2033: 31,-6 - 2034: 30,-7 - 2035: 29,-7 - 2036: 33,-9 - 2037: 30,-10 - 2038: 28,-10 - 2039: 29,-9 - 2040: 28,-13 - 2042: 30,-13 - 2043: 30,-13 - 2044: 30,-12 - 2045: 30,-12 - 2046: 32,0 - 2048: 28,6 - 2049: 28,6 - 2050: 27,6 - 2051: 27,6 - 2053: 27,3 - 2054: 27,3 - 2057: 12,-7 - 2058: 13,-7 - 2059: 13,-7 - 2060: 12,-7 - 2061: 10,-6 - 2062: 10,-6 - 2063: 14,-6 - 2064: 14,-6 - 2065: 14,-5 - 2066: 12,-6 - 2067: 15,-5 - 2068: 13,-9 - 2069: 12,-9 - 2070: 14,-9 - 2071: 14,-11 - 2072: 14,-11 - 2073: 13,-9 - 2074: 10,-10 - 2075: 10,-10 - 2076: 11,-10 - 2077: 7,-10 - 2078: 7,-10 - 2079: 13,-10 - 2080: 13,-10 - 2081: 7,-18 - 2082: 7,-18 - 2085: 29,-19 - 2086: 29,-19 - 2089: 26,-12 - 2090: 24,-13 - 2091: 24,-13 - 2092: 24,-13 + 1920: 18,7 + 1921: 18,7 + 1922: 18,6 + 1923: 17,6 + 1924: 17,7 + 1943: -28,10 + 1944: -28,10 + 1945: -28,9 + 1946: -28,9 + 1947: -29,10 + 1948: -28,11 + 1949: -29,11 + 1950: -28,10 + 1951: -28,10 + 1958: -29,13 + 1959: -29,13 + 1960: -29,13 + 1961: -28,14 + 1962: -28,15 + 1963: -30,14 + 1964: -29,12 + 1965: -28,12 + 1966: -29,12 + 1967: -29,12 + 1968: -29,13 + 1969: -29,13 + 1981: 39,-4 + 1982: 38,-4 + 1983: 38,-4 + 1984: 39,-8 + 1985: 39,-8 + 1986: 38,-7 + 1987: 38,-7 + 1988: 39,0 + 1989: 40,-1 + 1990: 40,-1 + 1991: 34,-1 + 1992: 33,-1 + 1993: 35,-1 + 1994: 35,-1 + 1995: 25,1 + 1996: 25,-3 + 1997: 24,-2 + 1998: 24,-3 + 1999: 26,-6 + 2000: 26,-6 + 2001: 29,-16 + 2002: 38,-19 + 2003: 36,-22 + 2004: 31,-23 + 2005: 40,-21 + 2006: 38,-20 + 2007: 40,-13 + 2009: 39,-14 + 2010: 34,-6 + 2011: 35,-6 + 2013: 32,-4 + 2014: 31,-3 + 2016: 31,-3 + 2017: 31,-6 + 2018: 30,-7 + 2019: 29,-7 + 2020: 33,-9 + 2021: 30,-10 + 2022: 28,-10 + 2023: 29,-9 + 2024: 28,-13 + 2026: 30,-13 + 2027: 30,-13 + 2028: 30,-12 + 2029: 30,-12 + 2030: 32,0 + 2032: 28,6 + 2033: 28,6 + 2034: 27,6 + 2035: 27,6 + 2037: 27,3 + 2038: 27,3 + 2041: 12,-7 + 2042: 13,-7 + 2043: 13,-7 + 2044: 12,-7 + 2045: 10,-6 + 2046: 10,-6 + 2047: 14,-6 + 2048: 14,-6 + 2049: 14,-5 + 2050: 12,-6 + 2051: 15,-5 + 2052: 13,-9 + 2053: 12,-9 + 2054: 14,-9 + 2055: 14,-11 + 2056: 14,-11 + 2057: 13,-9 + 2058: 10,-10 + 2059: 10,-10 + 2060: 11,-10 + 2061: 7,-10 + 2062: 7,-10 + 2063: 13,-10 + 2064: 13,-10 + 2065: 7,-18 + 2066: 7,-18 + 2069: 29,-19 + 2070: 29,-19 + 2073: 26,-12 + 2074: 24,-13 + 2075: 24,-13 + 2076: 24,-13 - node: cleanable: True color: '#FF0000B7' id: Dirt decals: - 1968: 19,4 + 1952: 19,4 - node: cleanable: True color: '#FF0000FF' id: Dirt decals: - 2273: -40,-25 - 2274: -40,-24 - 2275: -40,-25 - 2276: -39,-25 + 2256: -40,-25 + 2257: -40,-24 + 2258: -40,-25 + 2259: -39,-25 - node: cleanable: True color: '#FFFCFFFF' id: Dirt decals: - 2189: -15,-75 - 2190: -17,-77 - 2191: -10,-71 - 2192: -9,-78 - 2193: -18,-76 - 2194: -23,-77 - 2195: -12,-74 - 2196: -12,-79 - 2197: -23,-78 - 2198: -12,-81 - 2199: -25,-78 - 2200: -11,-76 - 2201: -16,-67 - 2202: -15,-76 - 2203: -27,-77 - 2204: -23,-75 - 2205: -12,-81 - 2222: -18,-47 - 2223: -11,-37 - 2225: -21,-35 - 2226: -15,-38 - 2227: -17,-35 - 2228: -8,-33 - 2229: -19,-29 - 2230: -23,-28 - 2231: -7,-32 - 2232: -4,-28 + 2173: -15,-75 + 2174: -17,-77 + 2175: -10,-71 + 2176: -9,-78 + 2177: -18,-76 + 2178: -23,-77 + 2179: -12,-74 + 2180: -12,-79 + 2181: -23,-78 + 2182: -12,-81 + 2183: -25,-78 + 2184: -11,-76 + 2185: -16,-67 + 2186: -15,-76 + 2187: -27,-77 + 2188: -23,-75 + 2189: -12,-81 + 2206: -18,-47 + 2207: -11,-37 + 2208: -21,-35 + 2209: -15,-38 + 2210: -17,-35 + 2211: -8,-33 + 2212: -19,-29 + 2213: -23,-28 + 2214: -7,-32 + 2215: -4,-28 - node: cleanable: True color: '#FFFFFFF7' id: Dirt decals: - 1341: -33,2 + 1325: -33,2 - node: color: '#FFFFFFFF' id: Dirt decals: - 2639: -8,-40 - 2640: -7,-39 - 2641: -6,-38 - 2642: -2,-40 - 2643: -2,-42 - 2644: 1,-40 - 2645: -1,-45 - 2646: -4,-46 - 2647: -2,-48 + 2622: -8,-40 + 2623: -7,-39 + 2624: -6,-38 + 2625: -2,-40 + 2626: -2,-42 + 2627: 1,-40 + 2628: -1,-45 + 2629: -4,-46 + 2630: -2,-48 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 531: 34,-14 - 1041: 29,-24 - 1042: 39,-18 - 1043: 39,-11 - 1044: 39,-3 - 1045: 40,7 - 1046: 39,12 - 1047: 35,16 - 1048: 33,20 - 1049: 33,23 - 1050: 26,29 - 1051: 22,29 - 1052: 13,28 - 1053: 13,30 - 1054: 19,26 - 1055: 23,24 - 1056: 13,19 - 1057: 23,16 - 1058: 13,11 - 1059: 13,6 - 1060: 11,12 - 1061: 18,11 - 1062: 20,6 - 1063: 7,7 - 1064: 6,3 - 1065: 2,7 - 1066: 4,8 - 1067: 1,6 - 1068: -3,6 - 1069: -4,2 - 1070: -25,-1 - 1071: -43,1 - 1072: -20,0 - 1073: -26,1 - 1074: -37,6 - 1075: -49,5 - 1076: -46,11 - 1077: -41,23 - 1078: -43,29 - 1079: -40,33 - 1080: -31,41 - 1081: -40,46 - 1082: -46,46 - 1083: -50,45 - 1084: -52,45 - 1085: -52,50 - 1287: -60,-1 - 1288: -59,-1 - 1314: -43,0 - 1315: -41,-2 - 1316: -44,-6 - 1317: -42,-10 - 1318: -37,-9 - 1319: -39,-13 - 1320: -41,-16 - 1321: -43,-16 - 1322: -44,-15 - 1323: -43,-15 - 1458: 31,-9 - 1459: 31,-1 - 1461: 17,-2 - 1462: 8,-7 - 1469: -7,-4 - 1476: -8,-10 - 1483: -25,-6 - 1489: -10,3 - 1490: -9,17 - 1491: -10,21 - 1492: -6,27 - 1510: -9,10 - 1691: -28,25 - 1692: -28,31 - 1693: -30,31 - 1694: -32,31 - 1734: -18,-1 - 1735: -8,-8 - 1736: -10,-14 - 1737: 23,-13 - 1738: 33,-20 - 1739: 40,-12 - 1766: -13,43 - 1789: 0,32 - 1790: 3,32 - 1798: -29,13 - 1799: -31,10 - 1800: -37,10 - 1801: -17,10 - 1802: -12,10 - 1803: -20,-25 - 1804: -23,-23 - 1811: -22,-22 - 1814: -10,-23 - 1815: 2,-23 - 1854: -15,13 - 1855: -13,15 - 1856: -13,13 - 1857: -15,10 - 1858: -15,15 - 1859: 35,-17 - 1860: 35,-15 - 1861: 35,-16 - 1862: 35,-16 - 1863: 34,-17 - 1864: 33,-15 - 1865: 34,-15 - 1930: 13,1 - 2530: 12,-20 - 2531: 12,-21 - 2535: 22,-26 - 2536: 21,-25 - 2537: 22,-25 - 2538: 20,-25 - 2539: 18,-25 - 2540: 18,-26 - 2541: 18,-27 - 2551: 17,-23 - 2552: 16,-23 - 2553: 18,-20 - 2575: -48,-17 - 2576: -46,-19 - 2577: -48,-19 - 2608: 9,-44 - 2609: 9,-37 - 2611: 12,-35 + 515: 34,-14 + 1025: 29,-24 + 1026: 39,-18 + 1027: 39,-11 + 1028: 39,-3 + 1029: 40,7 + 1030: 39,12 + 1031: 35,16 + 1032: 33,20 + 1033: 33,23 + 1034: 26,29 + 1035: 22,29 + 1036: 13,28 + 1037: 13,30 + 1038: 19,26 + 1039: 23,24 + 1040: 13,19 + 1041: 23,16 + 1042: 13,11 + 1043: 13,6 + 1044: 11,12 + 1045: 18,11 + 1046: 20,6 + 1047: 7,7 + 1048: 6,3 + 1049: 2,7 + 1050: 4,8 + 1051: 1,6 + 1052: -3,6 + 1053: -4,2 + 1054: -25,-1 + 1055: -43,1 + 1056: -20,0 + 1057: -26,1 + 1058: -37,6 + 1059: -49,5 + 1060: -46,11 + 1061: -41,23 + 1062: -43,29 + 1063: -40,33 + 1064: -31,41 + 1065: -40,46 + 1066: -46,46 + 1067: -50,45 + 1068: -52,45 + 1069: -52,50 + 1271: -60,-1 + 1272: -59,-1 + 1298: -43,0 + 1299: -41,-2 + 1300: -44,-6 + 1301: -42,-10 + 1302: -37,-9 + 1303: -39,-13 + 1304: -41,-16 + 1305: -43,-16 + 1306: -44,-15 + 1307: -43,-15 + 1442: 31,-9 + 1443: 31,-1 + 1445: 17,-2 + 1446: 8,-7 + 1453: -7,-4 + 1460: -8,-10 + 1467: -25,-6 + 1473: -10,3 + 1474: -9,17 + 1475: -10,21 + 1476: -6,27 + 1494: -9,10 + 1675: -28,25 + 1676: -28,31 + 1677: -30,31 + 1678: -32,31 + 1718: -18,-1 + 1719: -8,-8 + 1720: -10,-14 + 1721: 23,-13 + 1722: 33,-20 + 1723: 40,-12 + 1750: -13,43 + 1773: 0,32 + 1774: 3,32 + 1782: -29,13 + 1783: -31,10 + 1784: -37,10 + 1785: -17,10 + 1786: -12,10 + 1787: -20,-25 + 1788: -23,-23 + 1795: -22,-22 + 1798: -10,-23 + 1799: 2,-23 + 1838: -15,13 + 1839: -13,15 + 1840: -13,13 + 1841: -15,10 + 1842: -15,15 + 1843: 35,-17 + 1844: 35,-15 + 1845: 35,-16 + 1846: 35,-16 + 1847: 34,-17 + 1848: 33,-15 + 1849: 34,-15 + 1914: 13,1 + 2513: 12,-20 + 2514: 12,-21 + 2518: 22,-26 + 2519: 21,-25 + 2520: 22,-25 + 2521: 20,-25 + 2522: 18,-25 + 2523: 18,-26 + 2524: 18,-27 + 2534: 17,-23 + 2535: 16,-23 + 2536: 18,-20 + 2558: -48,-17 + 2559: -46,-19 + 2560: -48,-19 + 2591: 9,-44 + 2592: 9,-37 + 2594: 12,-35 - node: cleanable: True color: '#00FF00FF' id: DirtHeavy decals: - 1021: -55,-8 - 1022: -52,-4 + 1005: -55,-8 + 1006: -52,-4 - node: cleanable: True color: '#5D2C00D3' id: DirtHeavy decals: - 1844: -29,7 - 1845: -36,7 - 1846: -35,5 + 1828: -29,7 + 1829: -36,7 + 1830: -35,5 - node: cleanable: True color: '#792C00D1' id: DirtHeavy decals: - 1885: -8,-35 - 1886: -6,-32 - 1904: 26,14 - 1905: 28,14 - 1906: 27,13 - 1907: 27,15 - 1908: 27,16 + 1869: -8,-35 + 1870: -6,-32 + 1888: 26,14 + 1889: 28,14 + 1890: 27,13 + 1891: 27,15 + 1892: 27,16 - node: cleanable: True color: '#8354329E' id: DirtHeavy decals: - 2261: 24,-15 + 2244: 24,-15 - node: cleanable: True color: '#835432FF' id: DirtHeavy decals: - 2260: 25,-12 + 2243: 25,-12 - node: cleanable: True color: '#A0521263' id: DirtHeavy decals: - 1969: -28,9 - 1971: -28,9 - 1972: -28,9 - 1973: -29,11 - 2093: 25,-15 + 1953: -28,9 + 1955: -28,9 + 1956: -28,9 + 1957: -29,11 + 2077: 25,-15 - node: cleanable: True color: '#FF0000FF' id: DirtHeavy decals: - 2277: -39,-24 - 2278: -38,-25 - 2279: -39,-23 - 2280: -39,-23 - 2281: -38,-25 - 2282: -39,-24 + 2260: -39,-24 + 2261: -38,-25 + 2262: -39,-23 + 2263: -39,-23 + 2264: -38,-25 + 2265: -39,-24 - node: cleanable: True color: '#FFFCFFFF' id: DirtHeavy decals: - 2206: -15,-79 - 2207: -17,-80 - 2208: -8,-75 - 2209: -19,-79 - 2210: -20,-78 - 2211: -22,-79 - 2212: -24,-75 - 2213: -27,-78 - 2214: -16,-74 - 2215: -10,-79 - 2216: -21,-77 - 2217: -28,-75 - 2218: -29,-77 - 2219: -29,-78 - 2220: -18,-44 - 2221: -13,-40 + 2190: -15,-79 + 2191: -17,-80 + 2192: -8,-75 + 2193: -19,-79 + 2194: -20,-78 + 2195: -22,-79 + 2196: -24,-75 + 2197: -27,-78 + 2198: -16,-74 + 2199: -10,-79 + 2200: -21,-77 + 2201: -28,-75 + 2202: -29,-77 + 2203: -29,-78 + 2204: -18,-44 + 2205: -13,-40 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: 67: -29,10 - 512: 28,-10 - 513: 35,-16 - 514: 33,-17 - 842: 34,-13 - 843: 32,-12 - 867: 28,-13 - 868: 31,-13 - 869: 31,-10 - 870: 29,-11 - 871: 29,-12 - 872: 34,-10 - 873: 35,-9 - 874: 33,-9 - 875: 32,-9 - 876: 32,-10 - 877: 33,-10 - 906: 29,-3 - 907: 28,-4 - 908: 30,-5 - 909: 31,-6 - 910: 32,-6 - 912: 32,-4 - 913: 32,-3 - 914: 32,-2 - 916: 34,-3 - 919: 33,-16 - 920: 32,-16 - 1038: 20,1 - 1039: 23,-9 - 1086: -47,43 - 1087: -48,43 - 1088: -41,35 - 1089: -38,23 - 1090: -42,19 - 1091: -38,15 - 1092: -42,8 - 1093: -37,6 - 1094: -36,0 - 1095: -38,-6 - 1096: -40,-10 - 1097: -38,-16 - 1098: -29,-22 - 1099: -25,-20 - 1100: -23,-15 - 1101: -27,-18 - 1102: -28,-16 - 1103: -13,-18 - 1104: -3,-19 - 1105: -7,-34 - 1106: -16,-44 - 1107: -19,-48 - 1108: -22,-44 - 1109: -33,-46 - 1110: -36,-40 - 1111: -32,-28 - 1250: -49,50 - 1251: -53,45 - 1252: -43,31 - 1253: -41,33 - 1254: -43,24 - 1255: -40,25 - 1256: -50,20 - 1257: -42,19 - 1258: -49,14 - 1259: -51,5 - 1260: -51,6 - 1261: -47,5 - 1262: -44,6 - 1266: -54,-18 - 1267: -53,-18 - 1268: -53,-17 - 1269: -50,-18 - 1270: -50,-18 - 1271: -59,-13 - 1272: -59,-13 - 1273: -60,-13 - 1274: -60,-12 - 1275: -59,-12 - 1290: -18,34 - 1291: -20,34 - 1399: -50,-5 - 1400: -48,-3 - 1401: -47,-5 - 1402: -48,-5 - 1403: -55,-1 - 1404: -57,1 - 1405: -57,0 - 1406: -55,1 - 1407: -57,-2 - 1408: -57,-1 - 1409: -56,-3 - 1410: -56,-5 - 1411: -57,-5 - 1412: -55,-7 - 1413: -57,-7 - 1419: 38,-18 - 1420: 37,-23 - 1421: 30,-23 - 1430: 33,3 - 1431: 26,1 - 1432: 15,-1 - 1435: 11,-4 - 1436: 21,10 - 1437: 11,16 - 1441: 21,19 - 1442: 27,19 - 1445: 21,21 - 1446: 23,22 - 1452: 16,23 - 1453: 12,22 - 1454: 12,21 - 1460: 18,-2 - 1463: 5,-8 - 1464: 5,-11 - 1470: -9,-4 - 1473: -4,-7 - 1474: -9,-9 - 1479: -17,-12 - 1480: -19,-12 - 1481: -19,-3 - 1484: -24,-6 - 1485: -24,-4 - 1488: -11,7 - 1493: -4,27 - 1494: -10,21 - 1495: -11,18 - 1496: -10,15 - 1497: -7,18 - 1499: -8,21 - 1500: -1,19 - 1501: -3,20 - 1509: -9,9 - 1511: -9,10 - 1512: -18,4 - 1517: -22,6 - 1518: -19,6 - 1519: -22,-8 - 1520: 12,-16 - 1556: 21,14 - 1607: -58,1 - 1608: -58,1 - 1609: -60,1 - 1610: -60,1 - 1611: -60,1 - 1612: -60,1 - 1613: -58,-2 - 1614: -58,-2 - 1615: -58,-2 - 1616: -58,-2 - 1617: -58,-2 - 1618: -58,-2 - 1619: -58,-2 - 1620: -58,-3 - 1621: -58,-3 - 1622: -58,-3 - 1623: -57,-4 - 1624: -56,-2 - 1625: -57,-1 - 1626: -57,-8 - 1627: -56,-9 - 1628: -51,10 - 1629: -50,12 - 1630: -50,15 - 1631: -50,16 - 1632: -51,19 - 1633: -51,18 - 1634: -49,20 - 1635: -48,19 - 1636: -47,17 - 1637: -45,17 - 1695: -28,31 - 1696: -38,25 - 1697: -25,24 - 1698: -25,29 - 1699: -23,31 - 1700: -23,35 - 1701: -23,34 - 1702: -15,25 - 1703: -18,25 - 1704: -21,26 - 1705: -15,26 - 1726: -13,5 - 1727: -11,6 - 1741: 40,-20 - 1742: 39,-20 - 1743: 40,-18 - 1767: -8,38 - 1768: -5,36 - 1769: -5,35 - 1770: -9,36 - 1771: -8,35 - 1772: -8,33 - 1773: -12,33 - 1774: -17,34 - 1775: -15,36 - 1776: -15,38 - 1777: -14,38 - 1778: -12,39 - 1779: -13,35 - 1780: -12,36 - 1781: -8,39 - 1782: -6,29 - 1783: -4,31 - 1784: -4,33 - 1785: -4,34 - 1786: -5,33 - 1787: -6,33 - 1788: -1,34 - 1791: 2,32 - 1792: -2,29 - 1793: 0,32 - 1794: -33,35 - 1795: -33,34 - 1796: -33,36 - 1797: -33,38 - 1805: -20,-24 - 1806: -19,-24 - 1807: -19,-21 - 1808: -18,-24 - 1809: -17,-20 - 1810: -22,-26 - 1812: -7,-22 - 1813: -8,-21 - 1840: -32,0 - 2522: -14,-25 - 2525: 10,-27 - 2529: 9,-21 - 2532: 20,-32 - 2533: 19,-33 - 2542: 19,-26 - 2605: 11,-41 + 496: 28,-10 + 497: 35,-16 + 498: 33,-17 + 826: 34,-13 + 827: 32,-12 + 851: 28,-13 + 852: 31,-13 + 853: 31,-10 + 854: 29,-11 + 855: 29,-12 + 856: 34,-10 + 857: 35,-9 + 858: 33,-9 + 859: 32,-9 + 860: 32,-10 + 861: 33,-10 + 890: 29,-3 + 891: 28,-4 + 892: 30,-5 + 893: 31,-6 + 894: 32,-6 + 896: 32,-4 + 897: 32,-3 + 898: 32,-2 + 900: 34,-3 + 903: 33,-16 + 904: 32,-16 + 1022: 20,1 + 1023: 23,-9 + 1070: -47,43 + 1071: -48,43 + 1072: -41,35 + 1073: -38,23 + 1074: -42,19 + 1075: -38,15 + 1076: -42,8 + 1077: -37,6 + 1078: -36,0 + 1079: -38,-6 + 1080: -40,-10 + 1081: -38,-16 + 1082: -29,-22 + 1083: -25,-20 + 1084: -23,-15 + 1085: -27,-18 + 1086: -28,-16 + 1087: -13,-18 + 1088: -3,-19 + 1089: -7,-34 + 1090: -16,-44 + 1091: -19,-48 + 1092: -22,-44 + 1093: -33,-46 + 1094: -36,-40 + 1095: -32,-28 + 1234: -49,50 + 1235: -53,45 + 1236: -43,31 + 1237: -41,33 + 1238: -43,24 + 1239: -40,25 + 1240: -50,20 + 1241: -42,19 + 1242: -49,14 + 1243: -51,5 + 1244: -51,6 + 1245: -47,5 + 1246: -44,6 + 1250: -54,-18 + 1251: -53,-18 + 1252: -53,-17 + 1253: -50,-18 + 1254: -50,-18 + 1255: -59,-13 + 1256: -59,-13 + 1257: -60,-13 + 1258: -60,-12 + 1259: -59,-12 + 1274: -18,34 + 1275: -20,34 + 1383: -50,-5 + 1384: -48,-3 + 1385: -47,-5 + 1386: -48,-5 + 1387: -55,-1 + 1388: -57,1 + 1389: -57,0 + 1390: -55,1 + 1391: -57,-2 + 1392: -57,-1 + 1393: -56,-3 + 1394: -56,-5 + 1395: -57,-5 + 1396: -55,-7 + 1397: -57,-7 + 1403: 38,-18 + 1404: 37,-23 + 1405: 30,-23 + 1414: 33,3 + 1415: 26,1 + 1416: 15,-1 + 1419: 11,-4 + 1420: 21,10 + 1421: 11,16 + 1425: 21,19 + 1426: 27,19 + 1429: 21,21 + 1430: 23,22 + 1436: 16,23 + 1437: 12,22 + 1438: 12,21 + 1444: 18,-2 + 1447: 5,-8 + 1448: 5,-11 + 1454: -9,-4 + 1457: -4,-7 + 1458: -9,-9 + 1463: -17,-12 + 1464: -19,-12 + 1465: -19,-3 + 1468: -24,-6 + 1469: -24,-4 + 1472: -11,7 + 1477: -4,27 + 1478: -10,21 + 1479: -11,18 + 1480: -10,15 + 1481: -7,18 + 1483: -8,21 + 1484: -1,19 + 1485: -3,20 + 1493: -9,9 + 1495: -9,10 + 1496: -18,4 + 1501: -22,6 + 1502: -19,6 + 1503: -22,-8 + 1504: 12,-16 + 1540: 21,14 + 1591: -58,1 + 1592: -58,1 + 1593: -60,1 + 1594: -60,1 + 1595: -60,1 + 1596: -60,1 + 1597: -58,-2 + 1598: -58,-2 + 1599: -58,-2 + 1600: -58,-2 + 1601: -58,-2 + 1602: -58,-2 + 1603: -58,-2 + 1604: -58,-3 + 1605: -58,-3 + 1606: -58,-3 + 1607: -57,-4 + 1608: -56,-2 + 1609: -57,-1 + 1610: -57,-8 + 1611: -56,-9 + 1612: -51,10 + 1613: -50,12 + 1614: -50,15 + 1615: -50,16 + 1616: -51,19 + 1617: -51,18 + 1618: -49,20 + 1619: -48,19 + 1620: -47,17 + 1621: -45,17 + 1679: -28,31 + 1680: -38,25 + 1681: -25,24 + 1682: -25,29 + 1683: -23,31 + 1684: -23,35 + 1685: -23,34 + 1686: -15,25 + 1687: -18,25 + 1688: -21,26 + 1689: -15,26 + 1710: -13,5 + 1711: -11,6 + 1725: 40,-20 + 1726: 39,-20 + 1727: 40,-18 + 1751: -8,38 + 1752: -5,36 + 1753: -5,35 + 1754: -9,36 + 1755: -8,35 + 1756: -8,33 + 1757: -12,33 + 1758: -17,34 + 1759: -15,36 + 1760: -15,38 + 1761: -14,38 + 1762: -12,39 + 1763: -13,35 + 1764: -12,36 + 1765: -8,39 + 1766: -6,29 + 1767: -4,31 + 1768: -4,33 + 1769: -4,34 + 1770: -5,33 + 1771: -6,33 + 1772: -1,34 + 1775: 2,32 + 1776: -2,29 + 1777: 0,32 + 1778: -33,35 + 1779: -33,34 + 1780: -33,36 + 1781: -33,38 + 1789: -20,-24 + 1790: -19,-24 + 1791: -19,-21 + 1792: -18,-24 + 1793: -17,-20 + 1794: -22,-26 + 1796: -7,-22 + 1797: -8,-21 + 1824: -32,0 + 2505: -14,-25 + 2508: 10,-27 + 2512: 9,-21 + 2515: 20,-32 + 2516: 19,-33 + 2525: 19,-26 + 2588: 11,-41 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2523: -14,-22 - 2534: 19,-27 - 2543: 20,-26 - 2573: -47,-15 - 2606: 11,-44 - 2610: 11,-37 + 2506: -14,-22 + 2517: 19,-27 + 2526: 20,-26 + 2556: -47,-15 + 2589: 11,-44 + 2593: 11,-37 - node: cleanable: True color: '#5D2C00D3' id: DirtLight decals: - 1841: -32,-1 - 1842: -33,5 + 1825: -32,-1 + 1826: -33,5 - node: cleanable: True color: '#792C00D1' id: DirtLight decals: - 1887: -8,-36 - 1888: -8,-23 - 1889: -8,-19 - 1890: -12,-18 - 1891: -13,-17 + 1871: -8,-36 + 1872: -8,-23 + 1873: -8,-19 + 1874: -12,-18 + 1875: -13,-17 - node: cleanable: True color: '#835432FF' id: DirtLight decals: - 2256: 28,-17 - 2258: 27,-17 + 2239: 28,-17 + 2241: 27,-17 - node: cleanable: True color: '#A0521263' id: DirtLight decals: - 1941: 19,7 - 2094: 25,-15 + 1925: 19,7 + 2078: 25,-15 - node: cleanable: True color: '#FF0000B7' id: DirtLight decals: - 1970: 20,6 + 1954: 20,6 - node: cleanable: True color: '#FF0000FF' id: DirtLight decals: - 1325: -50,-15 + 1309: -50,-15 - node: cleanable: True color: '#FFFCFFFF' id: DirtLight decals: - 2167: -12,-79 - 2168: -11,-78 - 2169: -8,-74 - 2170: -7,-78 - 2171: -8,-79 - 2172: -13,-76 - 2173: -18,-77 - 2174: -14,-73 - 2175: -17,-72 - 2176: -20,-78 - 2177: -22,-78 - 2178: -26,-75 - 2179: -22,-82 - 2180: -16,-82 - 2181: -11,-86 - 2182: -15,-88 - 2183: -20,-79 - 2184: -28,-80 - 2185: -17,-68 - 2186: -17,-65 - 2187: -17,-69 - 2188: -16,-73 - 2233: -17,-46 - 2234: -16,-42 - 2235: -12,-46 - 2236: -20,-46 - 2237: -17,-37 - 2238: -13,-40 - 2239: -21,-36 + 2151: -12,-79 + 2152: -11,-78 + 2153: -8,-74 + 2154: -7,-78 + 2155: -8,-79 + 2156: -13,-76 + 2157: -18,-77 + 2158: -14,-73 + 2159: -17,-72 + 2160: -20,-78 + 2161: -22,-78 + 2162: -26,-75 + 2163: -22,-82 + 2164: -16,-82 + 2165: -11,-86 + 2166: -15,-88 + 2167: -20,-79 + 2168: -28,-80 + 2169: -17,-68 + 2170: -17,-65 + 2171: -17,-69 + 2172: -16,-73 + 2216: -17,-46 + 2217: -16,-42 + 2218: -12,-46 + 2219: -20,-46 + 2220: -17,-37 + 2221: -13,-40 + 2222: -21,-36 - node: cleanable: True color: '#FFFFFFFF' @@ -2711,354 +2711,354 @@ entities: 68: -28,11 69: -28,12 71: -29,11 - 515: 32,-16 - 516: 34,-17 - 519: 33,-16 - 520: 26,-13 - 845: 33,-12 - 846: 32,-13 - 847: 29,-9 - 848: 29,-11 - 849: 29,-12 - 850: 31,-12 - 851: 29,-12 - 852: 30,-11 - 853: 31,-10 - 854: 30,-9 - 855: 30,-9 - 856: 30,-10 - 857: 31,-10 - 858: 31,-9 - 859: 30,-9 - 860: 30,-10 - 861: 29,-9 - 878: 35,-9 - 879: 34,-9 - 880: 31,-9 - 881: 30,-9 - 882: 35,-7 - 883: 32,-7 - 884: 31,-5 - 885: 32,-4 - 886: 29,-4 - 887: 29,-6 - 888: 29,-7 - 889: 33,-4 - 890: 34,-4 - 891: 30,-4 - 892: 29,-5 - 1160: 41,8 - 1161: 39,9 - 1162: 39,13 - 1163: 39,13 - 1164: 36,17 - 1165: 34,19 - 1166: 32,21 - 1167: 34,24 - 1168: 30,22 - 1169: 32,23 - 1170: 44,13 - 1171: 44,12 - 1172: 44,11 - 1173: 54,11 - 1174: 50,6 - 1175: 52,6 - 1176: 55,6 - 1177: 56,8 - 1178: 59,11 - 1179: 55,16 - 1180: 54,14 - 1181: 54,16 - 1182: 45,13 - 1183: 41,13 - 1184: 42,13 - 1185: 36,9 - 1186: 42,16 - 1187: 29,10 - 1188: 36,8 - 1189: 21,6 - 1190: 29,6 - 1191: 14,0 - 1192: 17,-4 - 1193: 22,-2 - 1194: 9,-6 - 1195: 12,-10 - 1196: 16,-8 - 1197: 7,-12 - 1198: 1,-10 - 1199: 6,-20 - 1200: -1,-15 - 1201: -3,-21 - 1202: 11,-19 - 1203: 7,-23 - 1204: 1,-23 - 1205: -1,-30 - 1206: 7,-31 - 1207: -2,-32 - 1208: 0,-42 - 1209: -1,-36 - 1210: -15,-41 - 1211: -18,-36 - 1212: -8,-43 - 1213: -25,-39 - 1214: -18,-44 - 1215: -18,-35 - 1216: -15,-38 - 1217: -25,-31 - 1218: -12,-29 - 1219: -24,-28 - 1220: -35,-22 - 1221: -20,-20 - 1222: -26,-27 - 1223: -28,-20 - 1224: -36,-18 - 1225: -33,-8 - 1226: -29,-16 - 1227: -45,-10 - 1228: -43,-1 - 1229: -36,-8 - 1230: -42,-1 - 1231: -45,2 - 1232: -54,2 - 1233: -42,7 - 1234: -45,21 - 1235: -46,27 - 1236: -38,33 - 1237: -50,36 - 1238: -38,46 - 1239: -36,45 - 1240: -36,44 - 1241: -42,50 - 1242: -44,51 - 1243: -40,57 - 1244: -39,57 - 1245: -46,57 - 1246: -41,60 - 1247: -47,61 - 1248: -44,65 - 1249: -39,65 - 1276: -59,-7 - 1277: -61,-8 - 1278: -58,-3 - 1279: -59,-3 - 1280: -59,-1 - 1281: -59,0 - 1282: -58,-1 - 1283: -59,0 - 1284: -60,0 - 1285: -60,1 - 1286: -59,1 - 1292: -15,35 - 1293: -15,38 - 1294: -4,38 - 1295: -5,38 - 1426: 40,-4 - 1427: 39,1 - 1428: 33,1 - 1429: 34,3 - 1433: 14,-4 - 1434: 11,-5 - 1438: 10,15 - 1439: 23,10 - 1444: 22,22 - 1450: 23,25 - 1451: 17,25 - 1472: -6,-6 - 1475: -7,-10 - 1482: -24,1 - 1486: -25,-5 - 1498: -12,17 - 1506: -7,10 - 1507: -9,9 - 1508: -8,9 - 1513: -22,5 - 1514: -18,6 - 1515: -18,5 - 1516: -21,6 - 1521: 9,-16 - 1522: 9,-14 - 1523: 21,-13 - 1524: 20,-14 - 1525: 28,-19 - 1526: 38,-24 - 1527: 40,-19 - 1528: 37,-16 - 1529: 40,-11 - 1530: 37,-4 - 1531: 37,0 - 1532: 33,1 - 1533: 32,12 - 1534: 31,13 - 1535: 30,13 - 1555: 27,11 - 1557: 7,-11 - 1558: 8,-12 - 1559: 8,-13 - 1560: 8,-11 - 1561: 2,-6 - 1562: 4,-6 - 1563: 1,-7 - 1564: 3,-6 - 1565: 1,-2 - 1566: 1,-1 - 1567: -1,3 - 1568: -4,1 - 1569: -9,0 - 1570: -12,0 - 1571: -16,0 - 1572: -17,-2 - 1573: -18,-3 - 1574: -18,-6 - 1575: -18,-10 - 1576: -18,-12 - 1577: -17,-14 - 1578: -22,-13 - 1579: -22,-13 - 1580: -22,-15 - 1581: -30,-11 - 1582: -32,-9 - 1583: -34,-9 - 1584: -36,-10 - 1585: -37,-10 - 1586: -41,-10 - 1587: -43,-10 - 1588: -45,-10 - 1589: -38,-12 - 1590: -38,-12 - 1591: -38,-14 - 1592: -38,-14 - 1593: -41,-15 - 1594: -45,-11 - 1595: -49,-9 - 1596: -50,-10 - 1597: -51,-15 - 1598: -53,-14 - 1599: -50,-15 - 1600: -53,-13 - 1601: -56,-12 - 1602: -57,-10 - 1603: -55,-9 - 1604: -55,-8 - 1605: -56,-8 - 1606: -55,-9 - 1638: -51,15 - 1639: -51,14 - 1640: -49,13 - 1641: -48,13 - 1642: -47,13 - 1643: -47,16 - 1644: -47,19 - 1645: -48,21 - 1646: -47,23 - 1647: -50,23 - 1648: -50,22 - 1649: -42,13 - 1650: -43,12 - 1651: -43,10 - 1652: -42,11 - 1653: -42,14 - 1654: -42,18 - 1655: -43,19 - 1656: -43,21 - 1657: -43,22 - 1658: -42,22 - 1659: -41,19 - 1660: -41,17 - 1661: -41,16 - 1662: -41,14 - 1663: -41,13 - 1664: -40,27 - 1665: -39,26 - 1666: -39,29 - 1667: -35,27 - 1668: -39,26 - 1669: -40,26 - 1670: -41,33 - 1671: -45,33 - 1672: -48,33 - 1673: -49,34 - 1674: -51,34 - 1675: -51,33 - 1676: -50,39 - 1677: -49,40 - 1678: -48,40 - 1679: -48,40 - 1680: -36,37 - 1681: -37,37 - 1682: -37,37 - 1683: -37,36 - 1684: -37,36 - 1685: -36,36 - 1686: -37,34 - 1687: -37,32 - 1688: -32,25 - 1689: -33,25 - 1690: -33,25 - 1706: -14,27 - 1707: -20,25 - 1708: -14,26 - 1709: -23,25 - 1710: -24,22 - 1711: -23,31 - 1712: -25,31 - 1713: -25,29 - 1715: -23,36 - 1716: -24,33 - 1717: -24,22 - 1718: -24,16 - 1719: -24,15 - 1720: -24,14 - 1721: -26,11 - 1722: -26,11 - 1723: -26,8 - 1728: -10,5 - 1729: -16,4 - 1730: -14,3 - 1731: -14,6 - 1732: -14,6 - 1733: -15,-1 - 1744: 30,-20 - 1745: 28,-20 - 1746: 28,-19 - 1747: 25,-8 - 1748: 25,-8 - 1749: 25,-6 - 1750: 24,-8 - 1751: 24,-6 - 1752: 24,-3 - 1753: 24,-3 - 1754: 26,-6 - 1755: 22,7 - 1756: 14,7 - 1757: 13,8 - 1758: 11,8 - 1759: 12,10 - 1760: 12,10 - 1761: 10,10 - 1762: 10,12 - 1763: 8,11 - 1764: 7,9 - 1765: 6,7 - 1816: -3,-28 - 1817: -5,-28 - 1818: -5,-23 - 1819: -5,-27 - 1820: -3,-29 - 1821: -2,-28 - 1822: 0,-24 - 1823: -1,-23 - 1824: 1,-24 - 2526: 12,-23 - 2527: 9,-20 - 2544: 20,-28 - 2545: 17,-26 - 2546: 16,-31 - 2547: 12,-14 - 2548: 9,-14 - 2549: 4,-14 - 2550: 14,-22 - 2574: -46,-16 - 2607: 11,-43 + 499: 32,-16 + 500: 34,-17 + 503: 33,-16 + 504: 26,-13 + 829: 33,-12 + 830: 32,-13 + 831: 29,-9 + 832: 29,-11 + 833: 29,-12 + 834: 31,-12 + 835: 29,-12 + 836: 30,-11 + 837: 31,-10 + 838: 30,-9 + 839: 30,-9 + 840: 30,-10 + 841: 31,-10 + 842: 31,-9 + 843: 30,-9 + 844: 30,-10 + 845: 29,-9 + 862: 35,-9 + 863: 34,-9 + 864: 31,-9 + 865: 30,-9 + 866: 35,-7 + 867: 32,-7 + 868: 31,-5 + 869: 32,-4 + 870: 29,-4 + 871: 29,-6 + 872: 29,-7 + 873: 33,-4 + 874: 34,-4 + 875: 30,-4 + 876: 29,-5 + 1144: 41,8 + 1145: 39,9 + 1146: 39,13 + 1147: 39,13 + 1148: 36,17 + 1149: 34,19 + 1150: 32,21 + 1151: 34,24 + 1152: 30,22 + 1153: 32,23 + 1154: 44,13 + 1155: 44,12 + 1156: 44,11 + 1157: 54,11 + 1158: 50,6 + 1159: 52,6 + 1160: 55,6 + 1161: 56,8 + 1162: 59,11 + 1163: 55,16 + 1164: 54,14 + 1165: 54,16 + 1166: 45,13 + 1167: 41,13 + 1168: 42,13 + 1169: 36,9 + 1170: 42,16 + 1171: 29,10 + 1172: 36,8 + 1173: 21,6 + 1174: 29,6 + 1175: 14,0 + 1176: 17,-4 + 1177: 22,-2 + 1178: 9,-6 + 1179: 12,-10 + 1180: 16,-8 + 1181: 7,-12 + 1182: 1,-10 + 1183: 6,-20 + 1184: -1,-15 + 1185: -3,-21 + 1186: 11,-19 + 1187: 7,-23 + 1188: 1,-23 + 1189: -1,-30 + 1190: 7,-31 + 1191: -2,-32 + 1192: 0,-42 + 1193: -1,-36 + 1194: -15,-41 + 1195: -18,-36 + 1196: -8,-43 + 1197: -25,-39 + 1198: -18,-44 + 1199: -18,-35 + 1200: -15,-38 + 1201: -25,-31 + 1202: -12,-29 + 1203: -24,-28 + 1204: -35,-22 + 1205: -20,-20 + 1206: -26,-27 + 1207: -28,-20 + 1208: -36,-18 + 1209: -33,-8 + 1210: -29,-16 + 1211: -45,-10 + 1212: -43,-1 + 1213: -36,-8 + 1214: -42,-1 + 1215: -45,2 + 1216: -54,2 + 1217: -42,7 + 1218: -45,21 + 1219: -46,27 + 1220: -38,33 + 1221: -50,36 + 1222: -38,46 + 1223: -36,45 + 1224: -36,44 + 1225: -42,50 + 1226: -44,51 + 1227: -40,57 + 1228: -39,57 + 1229: -46,57 + 1230: -41,60 + 1231: -47,61 + 1232: -44,65 + 1233: -39,65 + 1260: -59,-7 + 1261: -61,-8 + 1262: -58,-3 + 1263: -59,-3 + 1264: -59,-1 + 1265: -59,0 + 1266: -58,-1 + 1267: -59,0 + 1268: -60,0 + 1269: -60,1 + 1270: -59,1 + 1276: -15,35 + 1277: -15,38 + 1278: -4,38 + 1279: -5,38 + 1410: 40,-4 + 1411: 39,1 + 1412: 33,1 + 1413: 34,3 + 1417: 14,-4 + 1418: 11,-5 + 1422: 10,15 + 1423: 23,10 + 1428: 22,22 + 1434: 23,25 + 1435: 17,25 + 1456: -6,-6 + 1459: -7,-10 + 1466: -24,1 + 1470: -25,-5 + 1482: -12,17 + 1490: -7,10 + 1491: -9,9 + 1492: -8,9 + 1497: -22,5 + 1498: -18,6 + 1499: -18,5 + 1500: -21,6 + 1505: 9,-16 + 1506: 9,-14 + 1507: 21,-13 + 1508: 20,-14 + 1509: 28,-19 + 1510: 38,-24 + 1511: 40,-19 + 1512: 37,-16 + 1513: 40,-11 + 1514: 37,-4 + 1515: 37,0 + 1516: 33,1 + 1517: 32,12 + 1518: 31,13 + 1519: 30,13 + 1539: 27,11 + 1541: 7,-11 + 1542: 8,-12 + 1543: 8,-13 + 1544: 8,-11 + 1545: 2,-6 + 1546: 4,-6 + 1547: 1,-7 + 1548: 3,-6 + 1549: 1,-2 + 1550: 1,-1 + 1551: -1,3 + 1552: -4,1 + 1553: -9,0 + 1554: -12,0 + 1555: -16,0 + 1556: -17,-2 + 1557: -18,-3 + 1558: -18,-6 + 1559: -18,-10 + 1560: -18,-12 + 1561: -17,-14 + 1562: -22,-13 + 1563: -22,-13 + 1564: -22,-15 + 1565: -30,-11 + 1566: -32,-9 + 1567: -34,-9 + 1568: -36,-10 + 1569: -37,-10 + 1570: -41,-10 + 1571: -43,-10 + 1572: -45,-10 + 1573: -38,-12 + 1574: -38,-12 + 1575: -38,-14 + 1576: -38,-14 + 1577: -41,-15 + 1578: -45,-11 + 1579: -49,-9 + 1580: -50,-10 + 1581: -51,-15 + 1582: -53,-14 + 1583: -50,-15 + 1584: -53,-13 + 1585: -56,-12 + 1586: -57,-10 + 1587: -55,-9 + 1588: -55,-8 + 1589: -56,-8 + 1590: -55,-9 + 1622: -51,15 + 1623: -51,14 + 1624: -49,13 + 1625: -48,13 + 1626: -47,13 + 1627: -47,16 + 1628: -47,19 + 1629: -48,21 + 1630: -47,23 + 1631: -50,23 + 1632: -50,22 + 1633: -42,13 + 1634: -43,12 + 1635: -43,10 + 1636: -42,11 + 1637: -42,14 + 1638: -42,18 + 1639: -43,19 + 1640: -43,21 + 1641: -43,22 + 1642: -42,22 + 1643: -41,19 + 1644: -41,17 + 1645: -41,16 + 1646: -41,14 + 1647: -41,13 + 1648: -40,27 + 1649: -39,26 + 1650: -39,29 + 1651: -35,27 + 1652: -39,26 + 1653: -40,26 + 1654: -41,33 + 1655: -45,33 + 1656: -48,33 + 1657: -49,34 + 1658: -51,34 + 1659: -51,33 + 1660: -50,39 + 1661: -49,40 + 1662: -48,40 + 1663: -48,40 + 1664: -36,37 + 1665: -37,37 + 1666: -37,37 + 1667: -37,36 + 1668: -37,36 + 1669: -36,36 + 1670: -37,34 + 1671: -37,32 + 1672: -32,25 + 1673: -33,25 + 1674: -33,25 + 1690: -14,27 + 1691: -20,25 + 1692: -14,26 + 1693: -23,25 + 1694: -24,22 + 1695: -23,31 + 1696: -25,31 + 1697: -25,29 + 1699: -23,36 + 1700: -24,33 + 1701: -24,22 + 1702: -24,16 + 1703: -24,15 + 1704: -24,14 + 1705: -26,11 + 1706: -26,11 + 1707: -26,8 + 1712: -10,5 + 1713: -16,4 + 1714: -14,3 + 1715: -14,6 + 1716: -14,6 + 1717: -15,-1 + 1728: 30,-20 + 1729: 28,-20 + 1730: 28,-19 + 1731: 25,-8 + 1732: 25,-8 + 1733: 25,-6 + 1734: 24,-8 + 1735: 24,-6 + 1736: 24,-3 + 1737: 24,-3 + 1738: 26,-6 + 1739: 22,7 + 1740: 14,7 + 1741: 13,8 + 1742: 11,8 + 1743: 12,10 + 1744: 12,10 + 1745: 10,10 + 1746: 10,12 + 1747: 8,11 + 1748: 7,9 + 1749: 6,7 + 1800: -3,-28 + 1801: -5,-28 + 1802: -5,-23 + 1803: -5,-27 + 1804: -3,-29 + 1805: -2,-28 + 1806: 0,-24 + 1807: -1,-23 + 1808: 1,-24 + 2509: 12,-23 + 2510: 9,-20 + 2527: 20,-28 + 2528: 17,-26 + 2529: 16,-31 + 2530: 12,-14 + 2531: 9,-14 + 2532: 4,-14 + 2533: 14,-22 + 2557: -46,-16 + 2590: 11,-43 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3072,532 +3072,532 @@ entities: color: '#FFFFFFFF' id: DirtLight decals: - 1991: -17,26 + 1975: -17,26 - node: cleanable: True color: '#5D2C00D3' id: DirtMedium decals: - 1847: -35,7 - 1848: -38,5 - 1849: -42,5 - 1850: -41,10 - 1851: -44,13 - 1852: -41,17 - 1853: -51,11 + 1831: -35,7 + 1832: -38,5 + 1833: -42,5 + 1834: -41,10 + 1835: -44,13 + 1836: -41,17 + 1837: -51,11 - node: cleanable: True color: '#8354329E' id: DirtMedium decals: - 2262: 25,-15 + 2245: 25,-15 - node: cleanable: True color: '#835432FF' id: DirtMedium decals: - 2257: 27,-16 - 2259: 28,-17 + 2240: 27,-16 + 2242: 28,-17 - node: cleanable: True color: '#FF0000FF' id: DirtMedium decals: - 1324: -57,-10 + 1308: -57,-10 - node: cleanable: True color: '#FFFFFFF7' id: DirtMedium decals: - 1342: -33,0 - 1343: -34,0 + 1326: -33,0 + 1327: -34,0 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: 70: -29,9 - 517: 33,-15 - 518: 34,-16 - 559: 34,-16 - 844: 34,-12 - 862: 31,-11 - 863: 31,-10 - 864: 29,-11 - 865: 28,-10 - 866: 28,-12 - 893: 33,-4 - 894: 33,-4 - 895: 34,-5 - 896: 31,-7 - 897: 30,-7 - 898: 28,-7 - 899: 29,-5 - 900: 30,-3 - 901: 29,-5 - 902: 35,-6 - 903: 36,-6 - 1040: 21,-16 - 1112: -18,-19 - 1113: -15,-13 - 1114: -18,-9 - 1115: -17,-3 - 1116: -19,0 - 1117: -5,5 - 1118: -1,25 - 1119: 1,26 - 1120: 2,26 - 1121: 5,29 - 1122: 6,29 - 1123: 9,30 - 1124: 14,30 - 1125: 18,28 - 1126: 20,28 - 1127: 23,28 - 1128: 26,28 - 1129: 29,28 - 1130: 30,27 - 1131: 31,25 - 1132: 31,24 - 1133: 32,22 - 1134: 34,20 - 1135: 33,18 - 1136: 34,18 - 1137: 36,17 - 1138: 37,16 - 1139: 38,15 - 1140: 40,15 - 1141: 40,14 - 1142: 40,13 - 1143: 41,10 - 1144: 40,9 - 1145: 42,7 - 1146: 41,7 - 1147: 41,7 - 1148: 41,6 - 1149: 40,6 - 1150: 40,6 - 1151: 41,6 - 1152: 41,4 - 1153: 41,4 - 1154: 39,5 - 1155: 39,6 - 1156: 39,7 - 1157: 39,7 - 1158: 39,9 - 1159: 39,8 - 1263: -56,-17 - 1264: -57,-17 - 1265: -57,-18 - 1296: -13,38 - 1297: -13,39 - 1300: -25,10 - 1301: -26,6 - 1302: -25,1 - 1303: -16,2 - 1304: -8,6 - 1305: -11,10 - 1306: -14,10 - 1307: -19,11 - 1308: -19,10 - 1309: -13,15 - 1310: -15,14 - 1311: -14,15 - 1312: -14,14 - 1313: -13,14 - 1396: -54,-5 - 1397: -54,-3 - 1398: -50,-3 - 1414: -55,-10 - 1415: -57,-5 - 1422: 38,-22 - 1423: 39,-17 - 1424: 38,-11 - 1425: 40,-9 - 1440: 23,19 - 1443: 25,19 - 1447: 22,21 - 1448: 20,24 - 1449: 20,26 - 1455: 13,21 - 1456: 10,21 - 1457: 12,14 - 1465: 6,-8 - 1466: 6,-6 - 1467: 6,-7 - 1468: -2,-1 - 1471: -6,-4 - 1487: -22,-5 - 1502: -10,10 - 1503: -8,12 - 1504: -7,10 - 1505: -7,10 - 1536: 37,12 - 1537: 30,12 - 1538: 31,12 - 1539: 30,12 - 1540: 26,11 - 1541: 26,14 - 1542: 26,16 - 1543: 22,15 - 1544: 22,18 - 1545: 22,12 - 1546: 17,16 - 1547: 13,16 - 1548: 10,12 - 1549: 8,9 - 1550: 13,19 - 1551: 12,22 - 1552: 13,25 - 1553: 9,25 - 1554: 10,25 - 1740: 40,-10 - 1866: 34,-15 - 1867: 33,-17 - 1868: 25,-5 - 1869: 26,-4 - 2524: -12,-23 - 2528: 12,-28 - 2648: -5,-48 - 2649: -4,-47 - 2650: 1,-46 - 2651: -1,-46 - 2652: -3,-48 - 2653: -3,-40 - 2654: 1,-43 - 2655: -3,-39 - 2656: -6,-40 - 2657: -7,-40 - 2658: -8,-40 - 2659: -6,-38 - 2660: -3,-39 - 2661: 1,-43 - 2662: 1,-39 - 2663: 0,-38 - 2664: -3,-42 - 2665: 2,-44 - 2666: -1,-47 - 2667: -3,-48 - 2668: 0,-50 - 2669: -3,-51 - 2670: -3,-51 - 2671: -4,-50 - 2672: -6,-50 - 2673: -8,-49 - 2674: -9,-48 - 2675: -8,-49 - 2676: -8,-51 - 2677: -8,-52 - 2678: -8,-52 - 2679: 0,-52 - 2680: 1,-51 + 501: 33,-15 + 502: 34,-16 + 543: 34,-16 + 828: 34,-12 + 846: 31,-11 + 847: 31,-10 + 848: 29,-11 + 849: 28,-10 + 850: 28,-12 + 877: 33,-4 + 878: 33,-4 + 879: 34,-5 + 880: 31,-7 + 881: 30,-7 + 882: 28,-7 + 883: 29,-5 + 884: 30,-3 + 885: 29,-5 + 886: 35,-6 + 887: 36,-6 + 1024: 21,-16 + 1096: -18,-19 + 1097: -15,-13 + 1098: -18,-9 + 1099: -17,-3 + 1100: -19,0 + 1101: -5,5 + 1102: -1,25 + 1103: 1,26 + 1104: 2,26 + 1105: 5,29 + 1106: 6,29 + 1107: 9,30 + 1108: 14,30 + 1109: 18,28 + 1110: 20,28 + 1111: 23,28 + 1112: 26,28 + 1113: 29,28 + 1114: 30,27 + 1115: 31,25 + 1116: 31,24 + 1117: 32,22 + 1118: 34,20 + 1119: 33,18 + 1120: 34,18 + 1121: 36,17 + 1122: 37,16 + 1123: 38,15 + 1124: 40,15 + 1125: 40,14 + 1126: 40,13 + 1127: 41,10 + 1128: 40,9 + 1129: 42,7 + 1130: 41,7 + 1131: 41,7 + 1132: 41,6 + 1133: 40,6 + 1134: 40,6 + 1135: 41,6 + 1136: 41,4 + 1137: 41,4 + 1138: 39,5 + 1139: 39,6 + 1140: 39,7 + 1141: 39,7 + 1142: 39,9 + 1143: 39,8 + 1247: -56,-17 + 1248: -57,-17 + 1249: -57,-18 + 1280: -13,38 + 1281: -13,39 + 1284: -25,10 + 1285: -26,6 + 1286: -25,1 + 1287: -16,2 + 1288: -8,6 + 1289: -11,10 + 1290: -14,10 + 1291: -19,11 + 1292: -19,10 + 1293: -13,15 + 1294: -15,14 + 1295: -14,15 + 1296: -14,14 + 1297: -13,14 + 1380: -54,-5 + 1381: -54,-3 + 1382: -50,-3 + 1398: -55,-10 + 1399: -57,-5 + 1406: 38,-22 + 1407: 39,-17 + 1408: 38,-11 + 1409: 40,-9 + 1424: 23,19 + 1427: 25,19 + 1431: 22,21 + 1432: 20,24 + 1433: 20,26 + 1439: 13,21 + 1440: 10,21 + 1441: 12,14 + 1449: 6,-8 + 1450: 6,-6 + 1451: 6,-7 + 1452: -2,-1 + 1455: -6,-4 + 1471: -22,-5 + 1486: -10,10 + 1487: -8,12 + 1488: -7,10 + 1489: -7,10 + 1520: 37,12 + 1521: 30,12 + 1522: 31,12 + 1523: 30,12 + 1524: 26,11 + 1525: 26,14 + 1526: 26,16 + 1527: 22,15 + 1528: 22,18 + 1529: 22,12 + 1530: 17,16 + 1531: 13,16 + 1532: 10,12 + 1533: 8,9 + 1534: 13,19 + 1535: 12,22 + 1536: 13,25 + 1537: 9,25 + 1538: 10,25 + 1724: 40,-10 + 1850: 34,-15 + 1851: 33,-17 + 1852: 25,-5 + 1853: 26,-4 + 2507: -12,-23 + 2511: 12,-28 + 2631: -5,-48 + 2632: -4,-47 + 2633: 1,-46 + 2634: -1,-46 + 2635: -3,-48 + 2636: -3,-40 + 2637: 1,-43 + 2638: -3,-39 + 2639: -6,-40 + 2640: -7,-40 + 2641: -8,-40 + 2642: -6,-38 + 2643: -3,-39 + 2644: 1,-43 + 2645: 1,-39 + 2646: 0,-38 + 2647: -3,-42 + 2648: 2,-44 + 2649: -1,-47 + 2650: -3,-48 + 2651: 0,-50 + 2652: -3,-51 + 2653: -3,-51 + 2654: -4,-50 + 2655: -6,-50 + 2656: -8,-49 + 2657: -9,-48 + 2658: -8,-49 + 2659: -8,-51 + 2660: -8,-52 + 2661: -8,-52 + 2662: 0,-52 + 2663: 1,-51 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 962: -28,24 - 963: -17,32 - 1345: -4,39 + 946: -28,24 + 947: -17,32 + 1329: -4,39 - node: cleanable: True color: '#FFFFFFFF' id: FlowersBROne decals: - 2289: -20,4 + 2272: -20,4 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 915: -2,-3 - 1344: -16,39 + 899: -2,-3 + 1328: -16,39 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 971: 15,2 - 972: 37,-11 - 973: 33,-19 + 955: 15,2 + 956: 37,-11 + 957: 33,-19 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 978: 34,-19 + 962: 34,-19 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 917: 2,2 - 965: -18,27 - 977: 34,-19 - 2098: -15.033748,27.036722 + 901: 2,2 + 949: -18,27 + 961: 34,-19 + 2082: -15.033748,27.036722 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 918: 2,3 - 979: 34,-19 - 980: 37,-13 + 902: 2,3 + 963: 34,-19 + 964: 37,-13 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 974: 34,-23 + 958: 34,-23 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 911: -2,-2 - 2097: -16.064997,26.932484 + 895: -2,-2 + 2081: -16.064997,26.932484 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 964: -17,27 - 975: 34,-23 - 976: 33,-23 + 948: -17,27 + 959: 34,-23 + 960: 33,-23 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy3 decals: - 2290: -19,4 + 2273: -19,4 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 640: 11,8 - 641: 10,8 - 642: 10,7 - 659: 23,6 - 660: 19,8 - 661: 20,8 - 662: 21,8 - 663: 23,8 - 664: 17,6 - 665: 17,8 - 666: 20,6 - 667: 19,6 - 668: 21,6 - 669: 20,7 - 676: 11,7 - 785: 24,24 - 786: 25,24 - 787: 25,25 - 788: 24,25 - 789: 24,26 - 790: 25,26 - 2291: 26,24 - 2292: 26,26 - 2293: 26,25 + 624: 11,8 + 625: 10,8 + 626: 10,7 + 643: 23,6 + 644: 19,8 + 645: 20,8 + 646: 21,8 + 647: 23,8 + 648: 17,6 + 649: 17,8 + 650: 20,6 + 651: 19,6 + 652: 21,6 + 653: 20,7 + 660: 11,7 + 769: 24,24 + 770: 25,24 + 771: 25,25 + 772: 24,25 + 773: 24,26 + 774: 25,26 + 2274: 26,24 + 2275: 26,26 + 2276: 26,25 - node: cleanable: True color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 1326: -31,-1 - 1327: -34,-1 - 1328: -33,-1 - 1329: -31,0 - 1330: -34,0 - 1331: -33,0 - 1332: -34,1 - 1333: -33,1 - 1334: -31,1 - 1335: -31,2 - 1336: -33,2 - 1337: -34,2 - 1338: -34,3 - 1339: -33,3 - 1340: -31,3 + 1310: -31,-1 + 1311: -34,-1 + 1312: -33,-1 + 1313: -31,0 + 1314: -34,0 + 1315: -33,0 + 1316: -34,1 + 1317: -33,1 + 1318: -31,1 + 1319: -31,2 + 1320: -33,2 + 1321: -34,2 + 1322: -34,3 + 1323: -33,3 + 1324: -31,3 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 763: 27,16 - 764: 27,15 - 765: 28,15 - 766: 28,16 - 767: 27,13 - 768: 28,13 - 769: 28,14 - 770: 27,14 + 747: 27,16 + 748: 27,15 + 749: 28,15 + 750: 28,16 + 751: 27,13 + 752: 28,13 + 753: 28,14 + 754: 27,14 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 1018: -40,28 - 1019: -40,27 - 1020: -40,26 + 1002: -40,28 + 1003: -40,27 + 1004: -40,26 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 2127: -26,-80 - 2128: -25,-80 - 2129: -25,-74 - 2130: -26,-74 - 2131: -31,-77 + 2111: -26,-80 + 2112: -25,-80 + 2113: -25,-74 + 2114: -26,-74 + 2115: -31,-77 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 1365: -62.547764,-5.606035 - 1418: -50,5 + 1349: -62.547764,-5.606035 + 1402: -50,5 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 2283: -19,3 - 2284: -21,4 - 2285: -22,3 + 2266: -19,3 + 2267: -21,4 + 2268: -22,3 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1357: -61.648212,-5.625451 - 1358: -60.616962,-5.625451 + 1341: -61.648212,-5.625451 + 1342: -60.616962,-5.625451 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1351: -61.632587,-7.500451 - 1352: -59.273212,-9.375451 - 1356: -60.866962,-6.812951 + 1335: -61.632587,-7.500451 + 1336: -59.273212,-9.375451 + 1340: -60.866962,-6.812951 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1374: -62.77488,-9.999852 + 1358: -62.77488,-9.999852 - node: cleanable: True color: '#FFFFFFFF' id: Grassd2 decals: - 2286: -21,3 + 2269: -21,3 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1359: -60.788837,-9.828576 - 1360: -61.304462,-10.078576 + 1343: -60.788837,-9.828576 + 1344: -61.304462,-10.078576 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1353: -61.663837,-9.953576 - 1354: -59.320087,-7.359826 - 1355: -59.523212,-6.828576 - 1366: -63.25089,-6.387285 - 1367: -63.266514,-5.68416 - 1368: -62.735264,-6.262285 - 1369: -63.28214,-7.387285 + 1337: -61.663837,-9.953576 + 1338: -59.320087,-7.359826 + 1339: -59.523212,-6.828576 + 1350: -63.25089,-6.387285 + 1351: -63.266514,-5.68416 + 1352: -62.735264,-6.262285 + 1353: -63.28214,-7.387285 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1361: -58.820087,-10.078576 - 1362: -58.773212,-9.578576 - 1363: -58.429462,-9.406701 - 1364: -58.570087,-8.687951 + 1345: -58.820087,-10.078576 + 1346: -58.773212,-9.578576 + 1347: -58.429462,-9.406701 + 1348: -58.570087,-8.687951 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 2378: -47,-17 - 2379: -48,-17 + 2361: -47,-17 + 2362: -48,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 466: -7,27 - 467: -5,27 - 468: -6,27 - 469: -4,27 - 470: -3,27 - 471: -6,31 - 472: -5,31 - 1714: -4,31 + 450: -7,27 + 451: -5,27 + 452: -6,27 + 453: -4,27 + 454: -3,27 + 455: -6,31 + 456: -5,31 + 1698: -4,31 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 2332: 12,2 - 2333: 13,2 - 2491: 17,1 - 2492: 19,1 - 2493: 21,1 + 2315: 12,2 + 2316: 13,2 + 2474: 17,1 + 2475: 19,1 + 2476: 21,1 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 2307: -23,1 - 2308: -13,1 - 2314: -11,1 - 2315: -9,1 - 2316: -7,1 - 2326: -19,1 - 2327: -17,1 - 2328: -15,1 + 2290: -23,1 + 2291: -13,1 + 2297: -11,1 + 2298: -9,1 + 2299: -7,1 + 2309: -19,1 + 2310: -17,1 + 2311: -15,1 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 2445: 13,-13 - 2467: 15,-25 - 2468: 16,-25 - 2469: 17,-25 - 2481: 5,-3 - 2482: 6,-3 - 2483: 7,-3 - 2484: 8,-3 + 2428: 13,-13 + 2450: 15,-25 + 2451: 16,-25 + 2452: 17,-25 + 2464: 5,-3 + 2465: 6,-3 + 2466: 7,-3 + 2467: 8,-3 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 2488: 27,2 + 2471: 27,2 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 2506: -14,-24 - 2507: -13,-24 - 2508: -12,-24 - 2509: -11,-24 + 2489: -14,-24 + 2490: -13,-24 + 2491: -12,-24 + 2492: -11,-24 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 463: -6,29 - 464: -5,29 - 465: -4,29 + 447: -6,29 + 448: -5,29 + 449: -4,29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 2405: 14,-2 - 2406: 11,-2 - 2438: 6,-14 - 2439: 4,-14 - 2440: 3,-14 - 2442: 7,-14 - 2450: 13,-11 - 2461: 15,-33 - 2462: 16,-33 - 2463: 17,-33 - 2464: 19,-33 - 2465: 20,-33 - 2466: 21,-33 - 2471: 7,-8 - 2472: 6,-8 - 2473: 5,-8 - 2474: 4,-8 - 2475: 3,-8 - 2476: 2,-8 - 2480: 8,-8 - 2616: 5,-1 - 2617: 7,-1 - 2618: 9,-1 + 2388: 14,-2 + 2389: 11,-2 + 2421: 6,-14 + 2422: 4,-14 + 2423: 3,-14 + 2425: 7,-14 + 2433: 13,-11 + 2444: 15,-33 + 2445: 16,-33 + 2446: 17,-33 + 2447: 19,-33 + 2448: 20,-33 + 2449: 21,-33 + 2454: 7,-8 + 2455: 6,-8 + 2456: 5,-8 + 2457: 4,-8 + 2458: 3,-8 + 2459: 2,-8 + 2463: 8,-8 + 2599: 5,-1 + 2600: 7,-1 + 2601: 9,-1 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3619,59 +3619,59 @@ entities: 289: 3,-29 290: 4,-29 291: 5,-29 - 1832: 2,-29 - 2495: -15,-20 - 2496: -14,-20 - 2497: -13,-20 - 2498: -12,-20 - 2510: -14,-23 - 2511: -13,-23 - 2512: -12,-23 - 2513: -11,-23 + 1816: 2,-29 + 2478: -15,-20 + 2479: -14,-20 + 2480: -13,-20 + 2481: -12,-20 + 2493: -14,-23 + 2494: -13,-23 + 2495: -12,-23 + 2496: -11,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 476: -21,35 - 1724: -21,33 - 1725: -21,34 - 2612: 23,-5 - 2613: 23,-4 + 460: -21,35 + 1708: -21,33 + 1709: -21,34 + 2595: 23,-5 + 2596: 23,-4 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 2248: 24,-16 - 2249: 24,-15 - 2250: 24,-14 - 2251: 24,-13 - 2252: 24,-12 - 2317: -6,2 - 2318: -6,4 - 2319: -5,8 - 2320: -5,10 - 2321: -5,12 - 2322: -5,14 + 2231: 24,-16 + 2232: 24,-15 + 2233: 24,-14 + 2234: 24,-13 + 2235: 24,-12 + 2300: -6,2 + 2301: -6,4 + 2302: -5,8 + 2303: -5,10 + 2304: -5,12 + 2305: -5,14 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 2478: 1,-7 - 2479: 1,-6 + 2461: 1,-7 + 2462: 1,-6 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 484: -25,27 - 485: -25,28 - 491: -25,31 - 492: -25,30 - 493: -25,25 - 494: -25,24 - 2132: -18,-79 - 2133: -18,-78 - 2134: -18,-76 - 2135: -18,-75 + 468: -25,27 + 469: -25,28 + 475: -25,31 + 476: -25,30 + 477: -25,25 + 478: -25,24 + 2116: -18,-79 + 2117: -18,-78 + 2118: -18,-76 + 2119: -18,-75 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3690,105 +3690,105 @@ entities: 280: -5,-26 281: -5,-27 282: -5,-28 - 359: -5,-20 - 360: -5,-19 - 361: -5,-17 - 362: -5,-18 - 2121: -30,-76 - 2122: -30,-75 - 2123: -30,-74 - 2124: -30,-78 - 2125: -30,-79 - 2126: -30,-80 - 2514: -15,-22 - 2515: -15,-25 + 347: -5,-20 + 348: -5,-19 + 349: -5,-17 + 350: -5,-18 + 2105: -30,-76 + 2106: -30,-75 + 2107: -30,-74 + 2108: -30,-78 + 2109: -30,-79 + 2110: -30,-80 + 2497: -15,-22 + 2498: -15,-25 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 473: -20,34 - 474: -20,35 - 475: -20,33 - 477: -23,33 - 478: -23,34 - 479: -23,32 - 486: -23,35 - 487: -23,36 + 457: -20,34 + 458: -20,35 + 459: -20,33 + 461: -23,33 + 462: -23,34 + 463: -23,32 + 470: -23,35 + 471: -23,36 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 791: 23,21 - 792: 23,22 - 793: 23,23 - 794: 23,24 - 795: 23,25 - 796: 23,26 + 775: 23,21 + 776: 23,22 + 777: 23,23 + 778: 23,24 + 779: 23,25 + 780: 23,26 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 2309: -24,2 + 2292: -24,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 2424: 12,-25 - 2425: 12,-24 - 2426: 12,-23 + 2407: 12,-25 + 2408: 12,-24 + 2409: 12,-23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 2136: -15,-75 - 2137: -15,-76 - 2138: -15,-78 - 2139: -15,-79 + 2120: -15,-75 + 2121: -15,-76 + 2122: -15,-78 + 2123: -15,-79 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 355: -6,-31 - 356: -6,-32 - 357: -6,-33 - 358: -6,-34 - 363: -1,-19 - 364: -7,-17 - 365: -7,-18 - 366: -7,-19 - 367: -7,-20 - 368: -7,-21 - 369: -7,-22 - 370: -7,-23 - 371: -7,-25 - 372: -7,-27 - 373: -7,-28 - 374: -7,-29 - 981: -7,-16 - 2113: -27,-78 - 2114: -27,-79 - 2115: -27,-80 - 2116: -27,-81 - 2117: -27,-76 - 2118: -27,-75 - 2119: -27,-74 - 2120: -27,-73 - 2499: -11,-19 - 2500: -11,-18 - 2501: -11,-17 - 2502: -11,-16 + 343: -6,-31 + 344: -6,-32 + 345: -6,-33 + 346: -6,-34 + 351: -1,-19 + 352: -7,-17 + 353: -7,-18 + 354: -7,-19 + 355: -7,-20 + 356: -7,-21 + 357: -7,-22 + 358: -7,-23 + 359: -7,-25 + 360: -7,-27 + 361: -7,-28 + 362: -7,-29 + 965: -7,-16 + 2097: -27,-78 + 2098: -27,-79 + 2099: -27,-80 + 2100: -27,-81 + 2101: -27,-76 + 2102: -27,-75 + 2103: -27,-74 + 2104: -27,-73 + 2482: -11,-19 + 2483: -11,-18 + 2484: -11,-17 + 2485: -11,-16 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 2340: 22,-32 + 2323: 22,-32 - node: cleanable: True angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingAreaGreyscale decals: - 2369: 18,-31 + 2352: 18,-31 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3804,7 +3804,7 @@ entities: color: '#D381C996' id: MiniTileWhiteInnerNe decals: - 498: -45,26 + 482: -45,26 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw @@ -3815,13 +3815,13 @@ entities: color: '#D381C996' id: MiniTileWhiteInnerSe decals: - 497: -45,29 + 481: -45,29 - node: color: '#D381C996' id: MiniTileWhiteLineE decals: - 495: -45,27 - 496: -45,28 + 479: -45,27 + 480: -45,28 - node: color: '#EFB34196' id: MiniTileWhiteLineN @@ -3831,8 +3831,8 @@ entities: color: '#D381C996' id: MiniTileWhiteLineW decals: - 482: -25,21 - 483: -25,22 + 466: -25,21 + 467: -25,22 - node: color: '#EFB34196' id: MiniTileWhiteLineW @@ -3842,220 +3842,220 @@ entities: color: '#FFFFFFFF' id: OldConcreteTrimLineN decals: - 2586: -46,-17 + 2569: -46,-17 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 569: -50,39 - 570: -50,40 - 571: -50,41 - 572: -33,-13 - 573: -33,-14 - 574: -33,-15 - 575: -33,-15 - 576: -33,-16 - 595: -4,-32 - 596: -4,-34 + 553: -50,39 + 554: -50,40 + 555: -50,41 + 556: -33,-13 + 557: -33,-14 + 558: -33,-15 + 559: -33,-15 + 560: -33,-16 + 579: -4,-32 + 580: -4,-34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 825: 8,17 - 826: 8,18 - 827: 8,22 - 828: 8,21 - 829: 8,20 - 830: 8,19 + 809: 8,17 + 810: 8,18 + 811: 8,22 + 812: 8,21 + 813: 8,20 + 814: 8,19 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 1029: 17,-5 - 1030: 17,-4 - 2313: -6,1 - 2324: -6,6 + 1013: 17,-5 + 1014: 17,-4 + 2296: -6,1 + 2307: -6,6 - node: color: '#9FED58FF' id: QuarterTileOverlayGreyscale decals: - 1031: 17,-5 - 1032: 17,-4 - 1033: 17,-6 - 1034: 17,-7 + 1015: 17,-5 + 1016: 17,-4 + 1017: 17,-6 + 1018: 17,-7 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 2446: 14,-13 + 2429: 14,-13 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 2311: -19,-4 + 2294: -19,-4 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 480: -3,27 - 566: -47,40 - 567: -47,41 - 568: -47,39 - 577: -31,-16 - 578: -31,-13 - 587: -31,-15 - 588: -31,-14 - 597: -2,-34 - 598: -2,-32 + 464: -3,27 + 550: -47,40 + 551: -47,41 + 552: -47,39 + 561: -31,-16 + 562: -31,-13 + 571: -31,-15 + 572: -31,-14 + 581: -2,-34 + 582: -2,-32 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 820: 10,18 - 821: 10,19 - 822: 10,20 - 823: 10,21 - 824: 10,22 + 804: 10,18 + 805: 10,19 + 806: 10,20 + 807: 10,21 + 808: 10,22 - node: color: '#9FED58FF' id: QuarterTileOverlayGreyscale180 decals: - 1035: 21,-5 - 1036: 21,-4 + 1019: 21,-5 + 1020: 21,-4 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 2428: 12,-27 - 2429: 12,-22 - 2441: 7,-12 - 2444: 8,-11 - 2448: 12,-11 - 2620: 15,-1 + 2411: 12,-27 + 2412: 12,-22 + 2424: 7,-12 + 2427: 8,-11 + 2431: 12,-11 + 2603: 15,-1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 481: -7,27 - 831: 8,19 - 832: 8,20 - 833: 8,21 - 834: 8,22 - 835: 8,18 - 836: 8,17 - 2614: 23,-3 + 465: -7,27 + 815: 8,19 + 816: 8,20 + 817: 8,21 + 818: 8,22 + 819: 8,18 + 820: 8,17 + 2597: 23,-3 - node: color: '#334E6DFF' id: QuarterTileOverlayGreyscale270 decals: - 1023: 17,-7 - 1024: 17,-6 - 1025: 17,-5 - 1026: 17,-4 + 1007: 17,-7 + 1008: 17,-6 + 1009: 17,-5 + 1010: 17,-4 - node: color: '#9C0000FF' id: QuarterTileOverlayGreyscale270 decals: - 579: -33,-15 - 580: -33,-16 - 581: -33,-14 - 582: -33,-13 + 563: -33,-15 + 564: -33,-16 + 565: -33,-14 + 566: -33,-13 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 2325: -6,5 + 2308: -6,5 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 2449: 14,-11 - 2619: 10,-1 + 2432: 14,-11 + 2602: 10,-1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 560: -50,40 - 561: -50,41 - 562: -50,39 + 544: -50,40 + 545: -50,41 + 546: -50,39 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: 187: -19,-1 - 2312: -19,-5 + 2295: -19,-5 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 593: -4,-32 - 594: -4,-34 + 577: -4,-32 + 578: -4,-34 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 488: -23,31 - 837: 10,18 - 838: 10,19 - 839: 10,20 - 840: 10,21 - 841: 10,22 + 472: -23,31 + 821: 10,18 + 822: 10,19 + 823: 10,20 + 824: 10,21 + 825: 10,22 - node: color: '#334E6DFF' id: QuarterTileOverlayGreyscale90 decals: - 1027: 21,-5 - 1028: 21,-4 + 1011: 21,-5 + 1012: 21,-4 - node: color: '#9C0000FF' id: QuarterTileOverlayGreyscale90 decals: - 583: -31,-14 - 584: -31,-13 - 585: -31,-15 - 586: -31,-16 + 567: -31,-14 + 568: -31,-13 + 569: -31,-15 + 570: -31,-16 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 2310: -24,1 + 2293: -24,1 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 2427: 12,-26 - 2443: 7,-13 - 2447: 12,-13 + 2410: 12,-26 + 2426: 7,-13 + 2430: 12,-13 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 563: -47,41 - 564: -47,40 - 565: -47,39 + 547: -47,41 + 548: -47,40 + 549: -47,39 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 376: -7,-30 - 591: -2,-32 - 592: -2,-34 + 364: -7,-30 + 575: -2,-32 + 576: -2,-34 - node: color: '#FFFFFFFF' id: Rock02 decals: - 1370: -61.96964,-10.30916 + 1354: -61.96964,-10.30916 - node: color: '#FFFFFFFF' id: Rock05 decals: - 1371: -62.90714,-5.93416 + 1355: -62.90714,-5.93416 - node: color: '#FFFFFFFF' id: Rust decals: - 1416: -59,-5 - 1417: -58,-5 + 1400: -59,-5 + 1401: -58,-5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -4097,292 +4097,292 @@ entities: decals: 236: -38,-11 237: -39,-11 - 1393: -52,-10 - 1394: -52,-9 - 2295: 25,24 + 1377: -52,-10 + 1378: -52,-9 + 2278: 25,24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 2296: 26,25 + 2279: 26,25 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 2297: 25,26 + 2280: 25,26 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 2298: 24,25 + 2281: 24,25 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2330: 11,2 + 2313: 11,2 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 2323: -6,7 + 2306: -6,7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 2489: 25,2 + 2472: 25,2 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2505: -15,-24 + 2488: -15,-24 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2404: 15,-2 - 2431: 12,-28 + 2387: 15,-2 + 2414: 12,-28 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2503: -11,-20 + 2486: -11,-20 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2403: 10,-2 - 2477: 1,-8 + 2386: 10,-2 + 2460: 1,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2504: -15,-23 + 2487: -15,-23 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2331: 14,2 + 2314: 14,2 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2430: 12,-20 + 2413: 12,-20 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2490: 28,2 + 2473: 28,2 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 375: -6,-30 + 363: -6,-30 - node: color: '#FFFFFFFF' id: WarnBox decals: 51: -4,-25 52: -3,-25 - 2294: 25,25 - 2554: -13,-25 + 2277: 25,25 + 2537: -13,-25 - node: color: '#D381C9FF' id: WarnCornerGreyscaleNW decals: - 2150: -11,-75 - 2157: -12,-76 + 2134: -11,-75 + 2141: -12,-76 - node: color: '#D381C9FF' id: WarnCornerGreyscaleSW decals: - 2149: -11,-79 - 2158: -12,-78 + 2133: -11,-79 + 2142: -12,-78 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 2686: -33,-40 + 2668: -33,-40 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnCornerSW decals: - 2687: -31,-40 + 2669: -31,-40 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarnCornerSW decals: - 2688: -31,-38 + 2670: -31,-38 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: WarnCornerSW decals: - 2689: -33,-38 + 2671: -33,-38 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE decals: - 2163: -10,-75 + 2147: -10,-75 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNW decals: - 2164: -10,-75 - 2165: -6,-75 + 2148: -10,-75 + 2149: -6,-75 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSE decals: - 2162: -10,-79 + 2146: -10,-79 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSW decals: - 2159: -11,-78 - 2160: -10,-79 - 2161: -6,-79 + 2143: -11,-78 + 2144: -10,-79 + 2145: -6,-79 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 1002: -3,-18 - 2517: -11,-22 + 986: -3,-18 + 2500: -11,-22 - node: color: '#D381C9FF' id: WarnEndGreyscaleN decals: - 2144: -6,-74 - 2145: -10,-74 + 2128: -6,-74 + 2129: -10,-74 - node: color: '#D381C9FF' id: WarnEndGreyscaleS decals: - 2146: -10,-80 - 2147: -6,-80 + 2130: -10,-80 + 2131: -6,-80 - node: cleanable: True color: '#FFFFFFFF' id: WarnEndN decals: - 2348: 15,-11 - 2364: 22,-33 - 2370: 18,-32 - 2590: 15,-6 + 2331: 15,-11 + 2347: 22,-33 + 2353: 18,-32 + 2573: 15,-6 - node: cleanable: True color: '#FFFFFFFF' id: WarnEndS decals: - 2349: 15,-9 - 2589: 15,-7 + 2332: 15,-9 + 2572: 15,-7 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 1001: -4,-18 - 2516: -13,-22 + 985: -4,-18 + 2499: -13,-22 - node: cleanable: True color: '#FFFFFFFF' id: WarnFull decals: - 2347: 15,-10 - 2350: 15,-13 - 2351: 15,-14 - 2352: 15,-15 - 2353: 14,-15 - 2354: 13,-15 - 2355: 12,-15 - 2356: 11,-18 - 2357: 11,-20 - 2358: 11,-21 - 2359: 11,-22 - 2360: 11,-23 - 2361: 11,-24 - 2362: 11,-25 - 2363: 11,-26 - 2365: 18,-35 - 2366: 22,-35 - 2371: 18,-33 + 2330: 15,-10 + 2333: 15,-13 + 2334: 15,-14 + 2335: 15,-15 + 2336: 14,-15 + 2337: 13,-15 + 2338: 12,-15 + 2339: 11,-18 + 2340: 11,-20 + 2341: 11,-21 + 2342: 11,-22 + 2343: 11,-23 + 2344: 11,-24 + 2345: 11,-25 + 2346: 11,-26 + 2348: 18,-35 + 2349: 22,-35 + 2354: 18,-33 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnFull decals: - 2685: -32,-39 + 2667: -32,-39 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 2380: -42,41 - 2691: -31,-39 + 2363: -42,41 + 2673: -31,-39 - node: color: '#D381C9FF' id: WarnLineGreyscaleE decals: - 2141: -6,-78 - 2142: -6,-77 - 2143: -6,-76 - 2148: -6,-79 - 2166: -6,-75 + 2125: -6,-78 + 2126: -6,-77 + 2127: -6,-76 + 2132: -6,-79 + 2150: -6,-75 - node: color: '#D381C9FF' id: WarnLineGreyscaleN decals: - 2151: -9,-75 - 2152: -8,-75 - 2153: -7,-75 + 2135: -9,-75 + 2136: -8,-75 + 2137: -7,-75 - node: color: '#D381C9FF' id: WarnLineGreyscaleS decals: - 2154: -9,-79 - 2155: -8,-79 - 2156: -7,-79 + 2138: -9,-79 + 2139: -8,-79 + 2140: -7,-79 - node: color: '#D381C9FF' id: WarnLineGreyscaleW decals: - 2140: -12,-77 + 2124: -12,-77 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2519: -12,-22 - 2555: -48,-16 - 2556: -47,-16 - 2557: -46,-16 - 2690: -32,-40 + 2502: -12,-22 + 2538: -48,-16 + 2539: -47,-16 + 2540: -46,-16 + 2672: -32,-40 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 2381: -43,41 - 2692: -33,-39 + 2364: -43,41 + 2674: -33,-39 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1382: 7,-40 - 1383: 6,-40 - 1384: 5,-40 - 2518: -12,-22 - 2693: -32,-38 + 1366: 7,-40 + 1367: 6,-40 + 1368: 5,-40 + 2501: -12,-22 + 2675: -32,-38 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2593: 27,5 + 2576: 27,5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 817: 19,-6 + 801: 19,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -4408,12 +4408,12 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 2604: 9,-35 + 2587: 9,-35 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 2603: 9,-30 + 2586: 9,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -4423,32 +4423,32 @@ entities: 56: 11,-31 57: 11,-32 58: 11,-33 - 411: -1,37 - 412: -1,38 - 413: -1,39 - 414: -1,40 - 611: -58,-4 - 612: -58,-3 - 613: -58,-2 - 614: -58,-2 - 615: -58,-1 - 616: -58,0 - 617: -58,1 - 618: -58,2 - 1372: -61.84464,-9.074785 - 1373: -62.988163,-9.100406 - 2594: 27,4 - 2595: 11,-35 - 2596: 11,-34 + 395: -1,37 + 396: -1,38 + 397: -1,39 + 398: -1,40 + 595: -58,-4 + 596: -58,-3 + 597: -58,-2 + 598: -58,-2 + 599: -58,-1 + 600: -58,0 + 601: -58,1 + 602: -58,2 + 1356: -61.84464,-9.074785 + 1357: -62.988163,-9.100406 + 2577: 27,4 + 2578: 11,-35 + 2579: 11,-34 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: 43: -5,-8 44: -6,-8 - 818: 20,-6 - 2591: 26,5 - 2592: 25,5 + 802: 20,-6 + 2574: 26,5 + 2575: 25,5 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -4456,14 +4456,14 @@ entities: 35: -8,-10 36: -7,-10 37: -4,-10 - 1346: 21.001646,-5.1484656 + 1330: 21.001646,-5.1484656 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1477: -6,-10 - 1478: -5,-10 + 1461: -6,-10 + 1462: -5,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -4480,38 +4480,38 @@ entities: 48: -14,21 49: -14,22 50: -14,23 - 819: 19,-7 - 2599: 9,-34 - 2600: 9,-33 - 2601: 9,-32 - 2602: 9,-31 + 803: 19,-7 + 2582: 9,-34 + 2583: 9,-33 + 2584: 9,-32 + 2585: 9,-31 - node: color: '#FFFFFFFF' id: bushsnowa3 decals: - 922: 2,-3 - 923: -2,2 - 931: 37,-12 - 932: 37,-9 + 906: 2,-3 + 907: -2,2 + 915: 37,-12 + 916: 37,-9 - node: angle: 1.5707963267948966 rad color: '#FF0000FF' id: danger decals: - 2684: -20,-47 + 2666: -20,-47 - node: angle: 0.8726646259971648 rad color: '#FFFF0089' id: end decals: - 2584: -48,-19 + 2567: -48,-19 - node: cleanable: True angle: -0.8726646259971648 rad color: '#00C83AFF' id: peace decals: - 2588: -46.181316,-17.267536 + 2571: -46.181316,-17.267536 - node: color: '#EFB34196' id: radiation @@ -4526,17 +4526,17 @@ entities: color: '#FFFFFFFF' id: skull decals: - 2585: -46.264652,-18.779003 + 2568: -46.264652,-18.779003 - node: cleanable: True color: '#0000008B' id: splatter decals: - 2578: -47.00404,-18.038906 - 2579: -47.00404,-18.038906 - 2580: -47.00404,-18.038906 - 2581: -46.733208,-18.247383 - 2582: -47.25404,-17.694916 + 2561: -47.00404,-18.038906 + 2562: -47.00404,-18.038906 + 2563: -47.00404,-18.038906 + 2564: -46.733208,-18.247383 + 2565: -47.25404,-17.694916 - type: GridAtmosphere version: 2 data: @@ -5415,18 +5415,25 @@ entities: 0: 65535 -8,-11: 0: 6641 + 3: 58894 -8,-10: 0: 5107 + 3: 60428 -8,-9: 0: 62453 + 3: 3082 -7,-12: 0: 49151 + 3: 16384 -7,-11: 0: 40441 + 3: 25094 -7,-10: 0: 39417 + 3: 26118 -7,-9: 0: 39421 + 3: 26114 -6,-12: 0: 65535 -6,-11: @@ -5623,28 +5630,37 @@ entities: 0: 53196 -11,-11: 0: 61183 + 3: 4096 -11,-10: 0: 61422 + 3: 4113 -11,-9: 0: 65518 -11,-12: 0: 61132 -10,-12: 0: 16383 + 3: 49152 -10,-11: 0: 14331 + 3: 51204 -10,-10: 0: 13299 + 3: 52236 -10,-9: 0: 13303 + 3: 52232 -9,-12: 0: 65535 -9,-11: 0: 4597 + 3: 60938 -9,-10: 0: 7673 + 3: 57862 -9,-9: 0: 61937 + 3: 3598 -11,-13: 0: 49152 -10,-13: @@ -5863,6 +5879,7 @@ entities: 0: 11810 -12,-9: 0: 32768 + 3: 2 12,2: 0: 63884 12,3: @@ -6112,6 +6129,10 @@ entities: 3: 59184 6,-12: 3: 305 + -12,-10: + 3: 64718 + -12,-11: + 3: 49152 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -6224,6 +6245,20 @@ entities: - type: BecomesStation id: Edge - type: NavMap +- proto: ActionToggleInternals + entities: + - uid: 17770 + components: + - type: Transform + parent: 17769 + - type: InstantAction + container: 17769 + - uid: 17772 + components: + - type: Transform + parent: 17771 + - type: InstantAction + container: 17771 - proto: ActionToggleLight entities: - uid: 4 @@ -9722,6 +9757,15 @@ entities: - type: Transform pos: 4.5,-22.5 parent: 2 +- proto: AmmoniaCanister + entities: + - uid: 3165 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: AnomalyScanner entities: - uid: 463 @@ -22866,6 +22910,296 @@ entities: - type: Transform pos: -22.5,-39.5 parent: 2 + - uid: 17702 + components: + - type: Transform + pos: -27.5,-45.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + pos: -26.5,-45.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 17705 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 17708 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 17711 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 17712 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 17714 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 17717 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 17719 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 17720 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + pos: -39.5,-40.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 17724 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 17725 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 17726 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: -39.5,-38.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - uid: 17740 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 17741 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 17748 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 17749 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 - proto: CableApcStack entities: - uid: 3016 @@ -22927,6 +23261,11 @@ entities: parent: 2 - proto: CableHV entities: + - uid: 2628 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 - uid: 2638 components: - type: Transform @@ -22942,11 +23281,6 @@ entities: - type: Transform pos: -30.5,-41.5 parent: 2 - - uid: 2641 - components: - - type: Transform - pos: -33.5,-43.5 - parent: 2 - uid: 2642 components: - type: Transform @@ -23027,11 +23361,6 @@ entities: - type: Transform pos: -31.5,-32.5 parent: 2 - - uid: 2659 - components: - - type: Transform - pos: -31.5,-34.5 - parent: 2 - uid: 2660 components: - type: Transform @@ -23752,6 +24081,11 @@ entities: - type: Transform pos: -32.5,-41.5 parent: 2 + - uid: 3167 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 - uid: 3168 components: - type: Transform @@ -26847,15 +27181,15 @@ entities: - type: Transform pos: -29.5,-43.5 parent: 2 - - uid: 3917 + - uid: 3918 components: - type: Transform - pos: -31.5,-42.5 + pos: -26.5,-45.5 parent: 2 - - uid: 3918 + - uid: 3921 components: - type: Transform - pos: -26.5,-45.5 + pos: -33.5,-42.5 parent: 2 - uid: 3923 components: @@ -26867,11 +27201,26 @@ entities: - type: Transform pos: -31.5,-44.5 parent: 2 + - uid: 5002 + components: + - type: Transform + pos: -35.5,-40.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 2 - uid: 6248 components: - type: Transform pos: -30.5,-46.5 parent: 2 + - uid: 6250 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 - uid: 6263 components: - type: Transform @@ -26887,6 +27236,11 @@ entities: - type: Transform pos: -36.5,-31.5 parent: 2 + - uid: 7259 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 - uid: 9756 components: - type: Transform @@ -26897,6 +27251,16 @@ entities: - type: Transform pos: -13.5,-81.5 parent: 2 + - uid: 12006 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 - uid: 12077 components: - type: Transform @@ -26912,11 +27276,6 @@ entities: - type: Transform pos: -17.5,-71.5 parent: 2 - - uid: 12737 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 2 - uid: 12738 components: - type: Transform @@ -26947,6 +27306,26 @@ entities: - type: Transform pos: -13.5,-71.5 parent: 2 + - uid: 17504 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 17547 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 + - uid: 17598 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 - uid: 17673 components: - type: Transform @@ -26962,6 +27341,16 @@ entities: - type: Transform pos: -19.5,-37.5 parent: 2 + - uid: 17695 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 - proto: CableHVStack entities: - uid: 3789 @@ -32946,11 +33335,6 @@ entities: - type: Transform pos: 44.5,14.5 parent: 2 - - uid: 17547 - components: - - type: Transform - pos: -27.5,-36.5 - parent: 2 - uid: 17548 components: - type: Transform @@ -33056,6 +33440,21 @@ entities: - type: Transform pos: -31.5,-42.5 parent: 2 + - uid: 17698 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 - proto: CableMVStack entities: - uid: 4996 @@ -40182,6 +40581,16 @@ entities: - type: Transform pos: -10.5,-45.5 parent: 2 + - uid: 17774 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 - proto: CrateEngineeringSingularityEmitter entities: - uid: 6184 @@ -49445,6 +49854,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 3911 components: - type: Transform @@ -49453,6 +49864,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 5001 components: - type: Transform @@ -49461,6 +49874,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 7255 components: - type: Transform @@ -49469,6 +49884,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 7683 components: - type: MetaData @@ -49903,13 +50320,35 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' + - uid: 17788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-49.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: GasPipeBend entities: + - uid: 2635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-36.5 + parent: 2 - uid: 3140 components: - type: Transform pos: -30.5,-36.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 3159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-43.5 + parent: 2 - uid: 3217 components: - type: Transform @@ -49922,12 +50361,8 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,-36.5 parent: 2 - - uid: 3813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-37.5 - parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 3817 components: - type: Transform @@ -49940,6 +50375,8 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 7726 components: - type: Transform @@ -51455,6 +51892,8 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17482 components: - type: Transform @@ -51472,11 +51911,6 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-42.5 parent: 2 - - uid: 17494 - components: - - type: Transform - pos: -39.5,-42.5 - parent: 2 - uid: 17496 components: - type: Transform @@ -51512,11 +51946,15 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17543 components: - type: Transform pos: -18.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17627 components: - type: Transform @@ -51551,6 +51989,11 @@ entities: - type: Transform pos: -26.5,-31.5 parent: 2 + - uid: 17789 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 - proto: GasPipeFourway entities: - uid: 3169 @@ -51558,6 +52001,8 @@ entities: - type: Transform pos: -31.5,-36.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 3889 components: - type: Transform @@ -51869,6 +52314,14 @@ entities: - type: Transform pos: -31.5,-35.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 3163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-35.5 + parent: 2 - uid: 3691 components: - type: Transform @@ -51880,12 +52333,16 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 3888 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 3910 components: - type: Transform @@ -66259,11 +66716,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#800080FF' - - uid: 12011 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 2 - uid: 13766 components: - type: Transform @@ -66310,6 +66762,8 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17512 components: - type: Transform @@ -66322,6 +66776,8 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17521 components: - type: Transform @@ -66393,36 +66849,48 @@ entities: - type: Transform pos: -24.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17538 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17539 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17540 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17541 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17542 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-32.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17624 components: - type: Transform @@ -66441,12 +66909,6 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-42.5 parent: 2 - - uid: 17635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-43.5 - parent: 2 - uid: 17636 components: - type: Transform @@ -66483,12 +66945,6 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-46.5 parent: 2 - - uid: 17642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-45.5 - parent: 2 - uid: 17643 components: - type: Transform @@ -66548,34 +67004,86 @@ entities: - type: Transform pos: -26.5,-32.5 parent: 2 + - uid: 17786 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 - proto: GasPipeTJunction entities: + - uid: 2633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-37.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-43.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 - uid: 3812 components: - type: Transform pos: -37.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 3818 components: - type: Transform pos: -38.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 3823 components: - type: Transform pos: -31.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 5000 components: - type: Transform pos: -36.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 7257 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 7258 components: - type: Transform @@ -69185,18 +69693,14 @@ entities: - type: Transform pos: -36.5,-43.5 parent: 2 - - uid: 17504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-43.5 - parent: 2 - uid: 17514 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-34.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17628 components: - type: Transform @@ -69209,6 +69713,14 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-33.5 parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 17795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-42.5 + parent: 2 - proto: GasPort entities: - uid: 10174 @@ -69609,6 +70121,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17520 components: - type: Transform @@ -69619,6 +70133,8 @@ entities: joinedGrid: 2 - uid: 17629 components: + - type: MetaData + name: coolant extract - type: Transform pos: -36.5,-44.5 parent: 2 @@ -69626,6 +70142,8 @@ entities: joinedGrid: 2 - uid: 17630 components: + - type: MetaData + name: coolant input - type: Transform rot: 3.141592653589793 rad pos: -35.5,-44.5 @@ -69639,10 +70157,19 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 17694 + - uid: 17790 components: - type: Transform - pos: -39.5,-35.5 + rot: -1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-42.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -69719,22 +70246,43 @@ entities: joinedGrid: 2 - proto: GasValve entities: + - uid: 2634 + components: + - type: MetaData + name: radiator bypass + - type: Transform + pos: -38.5,-39.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 - uid: 3893 components: + - type: MetaData + name: hot to filters - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-34.5 parent: 2 + - type: GasValve + open: False - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 6249 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-33.5 parent: 2 + - type: GasValve + open: False - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 10216 components: - type: Transform @@ -69818,26 +70366,51 @@ entities: color: '#66FF00FF' - uid: 17510 components: + - type: MetaData + name: hot to waste - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-34.5 parent: 2 + - type: GasValve + open: False - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 17517 components: + - type: MetaData + name: distro to coolant - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-46.5 parent: 2 + - type: GasValve + open: False - type: AtmosDevice joinedGrid: 2 - uid: 17682 components: + - type: MetaData + name: filtered hot to waste - type: Transform rot: 3.141592653589793 rad pos: -35.5,-32.5 parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - uid: 17785 + components: + - type: MetaData + name: coolant to space + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - type: GasValve + open: False - type: AtmosDevice joinedGrid: 2 - proto: GasVentPump @@ -69850,6 +70423,8 @@ entities: - type: DeviceNetwork deviceLists: - 17544 + - type: AtmosDevice + joinedGrid: 2 - uid: 2674 components: - type: Transform @@ -69858,6 +70433,8 @@ entities: - type: DeviceNetwork deviceLists: - 17544 + - type: AtmosDevice + joinedGrid: 2 - uid: 3906 components: - type: Transform @@ -69866,6 +70443,8 @@ entities: - type: DeviceNetwork deviceLists: - 17544 + - type: AtmosDevice + joinedGrid: 2 - uid: 10223 components: - type: Transform @@ -71679,6 +72258,10 @@ entities: - type: DeviceNetwork deviceLists: - 17544 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 2676 components: - type: Transform @@ -71688,6 +72271,10 @@ entities: - type: DeviceNetwork deviceLists: - 17544 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 3901 components: - type: Transform @@ -71697,6 +72284,10 @@ entities: - type: DeviceNetwork deviceLists: - 17544 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' - uid: 10409 components: - type: Transform @@ -73497,6 +74088,22 @@ entities: - type: Transform pos: -20.301476,-28.461052 parent: 2 + - uid: 17776 + components: + - type: MetaData + desc: A wall mounted device used for detecting and measuring radiation pulses. + name: wall mounted Geiger counter + - type: Transform + anchored: True + pos: -30.5,-40.5 + parent: 2 + - type: Geiger + isEnabled: True + - type: Physics + canCollide: False + bodyType: Static + - type: RadiationReceiver + - type: Anchorable - proto: GeneratorBasic entities: - uid: 10597 @@ -73631,6 +74238,31 @@ entities: parent: 2 - proto: Grille entities: + - uid: 2629 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 - uid: 3894 components: - type: Transform @@ -73641,6 +74273,11 @@ entities: - type: Transform pos: -32.5,17.5 parent: 2 + - uid: 6247 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 - uid: 10613 components: - type: Transform @@ -78348,6 +78985,31 @@ entities: - type: Transform pos: -35.5,-35.5 parent: 2 + - uid: 17777 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 17781 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 17782 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 - proto: GrilleBroken entities: - uid: 11522 @@ -79923,18 +80585,39 @@ entities: - type: Transform pos: -6.7160864,-10.619381 parent: 2 +- proto: LiquidNitrogenCanister + entities: + - uid: 17783 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: LiquidOxygenCanister + entities: + - uid: 17784 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: LockableButtonChiefEngineer entities: - uid: 17654 components: + - type: MetaData + desc: An attached note reads, "Go get your CE if you want to start the SME." + name: core shutters - type: Transform pos: -20.5,-35.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 17598: + 17767: - Pressed: Toggle - 17599: + 17766: - Pressed: Toggle 12740: - Pressed: Toggle @@ -79968,6 +80651,9 @@ entities: - Pressed: Toggle - uid: 17680 components: + - type: MetaData + desc: This button toggles the emitters that start the Supermatter reaction. + name: toggle emitters - type: Transform pos: -18.5,-35.5 parent: 2 @@ -80864,7 +81550,7 @@ entities: - uid: 17662 components: - type: Transform - pos: -21.318426,-38.538857 + pos: -21.45905,-38.443382 parent: 2 - uid: 17663 components: @@ -80991,10 +81677,10 @@ entities: parent: 2 - proto: NitrogenCanister entities: - - uid: 6185 + - uid: 3164 components: - type: Transform - pos: -12.5,-42.5 + pos: -11.5,-42.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -81124,13 +81810,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 6247 - components: - - type: Transform - pos: -11.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 11962 components: - type: Transform @@ -81785,6 +82464,57 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,1.5 parent: 2 +- proto: PlasmaTankFilled + entities: + - uid: 17769 + components: + - type: Transform + pos: -24.689806,-42.62592 + parent: 2 + - type: GasTank + toggleActionEntity: 17770 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 17770 + - uid: 17771 + components: + - type: Transform + pos: -24.408556,-42.37592 + parent: 2 + - type: GasTank + toggleActionEntity: 17772 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 17772 + - uid: 17773 + components: + - type: Transform + pos: -24.714287,-42.35479 + parent: 2 + - uid: 17797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.62771,-43.660828 + parent: 2 + - uid: 17798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.62771,-43.348328 + parent: 2 + - uid: 17799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.31521,-43.567078 + parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 12078 @@ -81831,20 +82561,20 @@ entities: - type: Transform pos: -31.5,-36.5 parent: 2 - - uid: 2634 + - uid: 3162 components: - type: Transform - pos: -28.5,-36.5 + pos: -33.5,-37.5 parent: 2 - - uid: 2635 + - uid: 3212 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 3162 + - uid: 3917 components: - type: Transform - pos: -33.5,-37.5 + pos: -33.5,-40.5 parent: 2 - uid: 8135 components: @@ -81856,11 +82586,6 @@ entities: - type: Transform pos: -33.5,-38.5 parent: 2 - - uid: 12006 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 2 - uid: 12007 components: - type: Transform @@ -81881,11 +82606,31 @@ entities: - type: Transform pos: -30.5,-36.5 parent: 2 + - uid: 12012 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 - uid: 12743 components: - type: Transform pos: -29.5,-39.5 parent: 2 + - uid: 17494 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 - proto: PlushieBee entities: - uid: 12085 @@ -85704,27 +86449,29 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-42.5 parent: 2 -- proto: RadiationCollectorNoTank - entities: - - uid: 2626 + - uid: 17768 components: - type: Transform - pos: -29.5,-41.5 + rot: -1.5707963267948966 rad + pos: -24.5,-42.5 parent: 2 - - uid: 2627 + - uid: 17796 components: - type: Transform - pos: -30.5,-41.5 + rot: 3.141592653589793 rad + pos: -33.5,-43.5 parent: 2 - - uid: 2631 +- proto: RadiationCollectorNoTank + entities: + - uid: 2626 components: - type: Transform - pos: -36.5,-39.5 + pos: -29.5,-41.5 parent: 2 - - uid: 2632 + - uid: 2627 components: - type: Transform - pos: -36.5,-40.5 + pos: -30.5,-41.5 parent: 2 - uid: 2648 components: @@ -85736,31 +86483,11 @@ entities: - type: Transform pos: -34.5,-39.5 parent: 2 - - uid: 3159 - components: - - type: Transform - pos: -36.5,-37.5 - parent: 2 - uid: 3160 components: - type: Transform pos: -34.5,-40.5 parent: 2 - - uid: 3164 - components: - - type: Transform - pos: -29.5,-43.5 - parent: 2 - - uid: 3165 - components: - - type: Transform - pos: -30.5,-43.5 - parent: 2 - - uid: 3212 - components: - - type: Transform - pos: -29.5,-33.5 - parent: 2 - uid: 3213 components: - type: Transform @@ -85781,50 +86508,60 @@ entities: - type: Transform pos: -29.5,-35.5 parent: 2 - - uid: 3821 + - uid: 3919 components: - type: Transform - pos: -33.5,-43.5 + pos: -33.5,-41.5 parent: 2 - - uid: 3890 + - uid: 3920 components: - type: Transform - pos: -32.5,-43.5 + pos: -33.5,-35.5 parent: 2 - - uid: 3919 + - uid: 12739 components: - type: Transform - pos: -33.5,-41.5 + pos: -34.5,-36.5 parent: 2 - - uid: 3920 + - uid: 17697 components: - type: Transform - pos: -33.5,-35.5 + pos: -33.5,-42.5 parent: 2 - - uid: 3921 + - uid: 17701 components: - type: Transform - pos: -33.5,-33.5 + pos: -29.5,-42.5 parent: 2 - - uid: 5002 + - uid: 17760 components: - type: Transform - pos: -30.5,-33.5 + pos: -28.5,-39.5 parent: 2 - - uid: 6250 + - uid: 17761 components: - type: Transform - pos: -32.5,-33.5 + pos: -28.5,-40.5 parent: 2 - - uid: 12012 + - uid: 17762 components: - type: Transform - pos: -36.5,-36.5 + pos: -35.5,-40.5 parent: 2 - - uid: 12739 + - uid: 17763 components: - type: Transform - pos: -34.5,-36.5 + pos: -35.5,-36.5 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 17765 + components: + - type: Transform + pos: -29.5,-34.5 parent: 2 - proto: RadioHandheld entities: @@ -90626,20 +91363,20 @@ entities: - type: DeviceLinkSink links: - 17654 - - uid: 17598 + - uid: 17766 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-39.5 + pos: -27.5,-40.5 parent: 2 - type: DeviceLinkSink links: - 17654 - - uid: 17599 + - uid: 17767 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-40.5 + pos: -27.5,-39.5 parent: 2 - type: DeviceLinkSink links: @@ -98732,45 +99469,18 @@ entities: - type: Transform pos: -6.5,-27.5 parent: 2 -- proto: WallPlastitanium +- proto: WallReinforced entities: - - uid: 2628 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 2 - - uid: 2629 - components: - - type: Transform - pos: -29.5,-40.5 - parent: 2 - - uid: 2630 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 2633 - components: - - type: Transform - pos: -27.5,-38.5 - parent: 2 - - uid: 3163 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 2 - - uid: 3167 + - uid: 2632 components: - type: Transform - pos: -27.5,-36.5 + pos: -28.5,-36.5 parent: 2 - - uid: 7259 + - uid: 3890 components: - type: Transform - pos: -29.5,-38.5 + pos: -27.5,-41.5 parent: 2 -- proto: WallReinforced - entities: - uid: 10710 components: - type: Transform @@ -105792,11 +106502,26 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-41.5 parent: 2 + - uid: 17599 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 - uid: 17676 components: - type: Transform pos: -34.5,-44.5 parent: 2 + - uid: 17694 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 - proto: WallRiveted entities: - uid: 16104 From a9d8b6b56bb606152b99de631d087603d7be3acb Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 26 Apr 2024 18:30:56 -0400 Subject: [PATCH 05/38] New edge by Colintel --- Resources/Maps/edge.yml | 4743 +++++++++++++++++++++++---------------- 1 file changed, 2839 insertions(+), 1904 deletions(-) diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 7963641ddf5..0d3a0ca5587 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -195,7 +195,7 @@ entities: version: 6 -2,-3: ind: -2,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -243,7 +243,7 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAUAAAAAAARgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -373,6 +373,7 @@ entities: id: Arrows decals: 89: 21,-2 + 2719: -27,-39 - node: color: '#FFFFFFFF' id: Bot @@ -1647,6 +1648,13 @@ entities: id: Caution decals: 2566: -47,-16 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 2717: -29,-38 + 2718: -29,-39 - node: color: '#52B4E996' id: CheckerNESW @@ -1780,22 +1788,16 @@ entities: color: '#EFB34196' id: Delivery decals: - 315: -28,-32 - 316: -25,-35 - 317: -36,-32 - 318: -39,-35 - 319: -36,-35 - 320: -28,-35 321: -28,-39 - 322: -36,-39 - 323: -32,-43 - 324: -32,-35 325: -28,-43 - 326: -25,-43 - 327: -28,-46 - 328: -36,-46 - 329: -39,-43 330: -36,-43 + 2677: -37,-43 + 2678: -28,-44 + 2685: -32,-42 + 2686: -32,-36 + 2687: -35,-39 + 2711: -38,-31 + 2712: -39,-31 - node: color: '#FFFFFFFF' id: Delivery @@ -4188,6 +4190,11 @@ entities: 52: -3,-25 2277: 25,25 2537: -13,-25 + - node: + color: '#FF2E26FF' + id: WarnCornerGreyscaleNE + decals: + 2734: -39,-47 - node: color: '#D381C9FF' id: WarnCornerGreyscaleNW @@ -4200,29 +4207,37 @@ entities: decals: 2133: -11,-79 2142: -12,-78 + - node: + color: '#FF2E26FF' + id: WarnCornerNE + decals: + 2733: -39,-47 - node: color: '#FFFFFFFF' - id: WarnCornerSW + id: WarnCornerNE decals: - 2668: -33,-40 + 2690: -31,-38 + 2701: -33,-36 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: WarnCornerSW + id: WarnCornerNW decals: - 2669: -31,-40 + 2689: -33,-38 + 2700: -31,-36 + 2710: -35,-40 - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: WarnCornerSW + id: WarnCornerSE decals: - 2670: -31,-38 + 2688: -31,-40 + 2709: -33,-42 - node: - angle: 4.71238898038469 rad color: '#FFFFFFFF' id: WarnCornerSW decals: - 2671: -33,-38 + 2691: -33,-40 + 2707: -35,-38 + 2708: -31,-42 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE @@ -4252,6 +4267,7 @@ entities: decals: 986: -3,-18 2500: -11,-22 + 2720: -27,-39 - node: color: '#D381C9FF' id: WarnEndGreyscaleN @@ -4264,6 +4280,11 @@ entities: decals: 2130: -10,-80 2131: -6,-80 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 2714: -19,-45 - node: cleanable: True color: '#FFFFFFFF' @@ -4273,6 +4294,11 @@ entities: 2347: 22,-33 2353: 18,-32 2573: 15,-6 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 2713: -19,-46 - node: cleanable: True color: '#FFFFFFFF' @@ -4320,7 +4346,9 @@ entities: id: WarnLineE decals: 2363: -42,41 - 2673: -31,-39 + 2694: -31,-39 + 2715: -29,-41 + 2716: -29,-40 - node: color: '#D381C9FF' id: WarnLineGreyscaleE @@ -4357,13 +4385,17 @@ entities: 2538: -48,-16 2539: -47,-16 2540: -46,-16 - 2672: -32,-40 + 2692: -32,-40 + 2703: -30,-42 + 2704: -34,-42 - node: color: '#FFFFFFFF' id: WarnLineS decals: 2364: -43,41 - 2674: -33,-39 + 2693: -33,-39 + 2705: -35,-41 + 2706: -35,-37 - node: color: '#FFFFFFFF' id: WarnLineW @@ -4372,7 +4404,9 @@ entities: 1367: 6,-40 1368: 5,-40 2501: -12,-22 - 2675: -32,-38 + 2695: -32,-38 + 2696: -30,-36 + 2699: -34,-36 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -4807,11 +4841,13 @@ entities: -8,-5: 0: 65535 -7,-6: - 0: 65535 + 0: 62463 + 2: 3072 -7,-5: 0: 65535 -6,-6: - 0: 65535 + 0: 64767 + 2: 768 -6,-5: 0: 65535 -5,-6: @@ -5025,11 +5061,13 @@ entities: -7,-8: 0: 65535 -7,-7: - 0: 65535 + 0: 62463 + 2: 3072 -6,-8: 0: 65535 -6,-7: - 0: 65535 + 0: 64767 + 2: 768 -5,-8: 0: 65535 -5,-7: @@ -5064,7 +5102,7 @@ entities: 0: 65535 -10,-2: 0: 57343 - 2: 8192 + 3: 8192 -10,-1: 0: 65535 -9,-4: @@ -5415,25 +5453,25 @@ entities: 0: 65535 -8,-11: 0: 6641 - 3: 58894 + 4: 58894 -8,-10: 0: 5107 - 3: 60428 + 4: 60428 -8,-9: 0: 62453 - 3: 3082 + 4: 3082 -7,-12: 0: 49151 - 3: 16384 + 4: 16384 -7,-11: 0: 40441 - 3: 25094 + 4: 25094 -7,-10: 0: 39417 - 3: 26118 + 4: 26118 -7,-9: 0: 39421 - 3: 26114 + 4: 26114 -6,-12: 0: 65535 -6,-11: @@ -5468,11 +5506,11 @@ entities: 0: 65535 1,-12: 0: 61937 - 3: 14 - 4: 3584 + 4: 14 + 5: 3584 1,-11: 0: 65521 - 5: 14 + 6: 14 1,-10: 0: 65535 2,-12: @@ -5577,15 +5615,15 @@ entities: 0: 63487 0,-14: 0: 65522 - 3: 12 + 4: 12 0,-13: 0: 65535 1,-14: 0: 65521 1,-13: 0: 61937 - 3: 14 - 6: 3584 + 4: 14 + 7: 3584 2,-14: 0: 12848 2,-13: @@ -5630,37 +5668,37 @@ entities: 0: 53196 -11,-11: 0: 61183 - 3: 4096 + 4: 4096 -11,-10: 0: 61422 - 3: 4113 + 4: 4113 -11,-9: 0: 65518 -11,-12: 0: 61132 -10,-12: 0: 16383 - 3: 49152 + 4: 49152 -10,-11: 0: 14331 - 3: 51204 + 4: 51204 -10,-10: 0: 13299 - 3: 52236 + 4: 52236 -10,-9: 0: 13303 - 3: 52232 + 4: 52232 -9,-12: 0: 65535 -9,-11: 0: 4597 - 3: 60938 + 4: 60938 -9,-10: 0: 7673 - 3: 57862 + 4: 57862 -9,-9: 0: 61937 - 3: 3598 + 4: 3598 -11,-13: 0: 49152 -10,-13: @@ -5879,7 +5917,7 @@ entities: 0: 11810 -12,-9: 0: 32768 - 3: 2 + 4: 2 12,2: 0: 63884 12,3: @@ -5964,7 +6002,7 @@ entities: 0: 1908 -16,7: 0: 40704 - 3: 24576 + 4: 24576 -15,7: 0: 65280 -12,10: @@ -5981,7 +6019,7 @@ entities: 0: 65535 -16,9: 0: 65439 - 3: 96 + 4: 96 -16,10: 0: 231 -15,8: @@ -6118,21 +6156,21 @@ entities: 0: 4095 5,-12: 0: 883 - 3: 3212 + 4: 3212 3,-13: 0: 51200 4,-13: 0: 65392 - 3: 128 + 4: 128 5,-13: 0: 4096 - 3: 59184 + 4: 59184 6,-12: - 3: 305 + 4: 305 -12,-10: - 3: 64718 + 4: 64718 -12,-11: - 3: 49152 + 4: 49152 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -6164,6 +6202,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.14975 moles: @@ -7211,6 +7264,8 @@ entities: joinedGrid: 2 - uid: 17544 components: + - type: MetaData + name: inner chamber air alarm - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-38.5 @@ -7225,15 +7280,21 @@ entities: - 2676 - type: AtmosDevice joinedGrid: 2 -- proto: AirCanister - entities: - - uid: 54 + - uid: 17838 components: - type: Transform - pos: -22.5,-23.5 + rot: -1.5707963267948966 rad + pos: -24.5,-35.5 parent: 2 + - type: DeviceList + devices: + - 17827 + - 17828 + - 17837 - type: AtmosDevice joinedGrid: 2 +- proto: AirCanister + entities: - uid: 55 components: - type: Transform @@ -7248,13 +7309,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 57 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 58 components: - type: Transform @@ -7693,6 +7747,11 @@ entities: - type: Transform pos: -14.5,-39.5 parent: 2 + - uid: 12010 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 - proto: AirlockEngineeringLocked entities: - uid: 143 @@ -7754,6 +7813,11 @@ entities: - type: Transform pos: 28.5,26.5 parent: 2 + - uid: 12009 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 - proto: AirlockEVAGlassLocked entities: - uid: 123 @@ -10161,6 +10225,13 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 2 + - uid: 17801 + components: + - type: MetaData + name: APC (Eng, Supermatter) + - type: Transform + pos: -29.5,-29.5 + parent: 2 - proto: AppleSeeds entities: - uid: 512 @@ -10661,11 +10732,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-37.5 parent: 2 - - uid: 17653 - components: - - type: Transform - pos: -21.5,-36.5 - parent: 2 - proto: BeachBall entities: - uid: 602 @@ -11526,6 +11592,13 @@ entities: - type: Transform pos: 8.7060175,-4.32035 parent: 2 +- proto: BoxInflatable + entities: + - uid: 13713 + components: + - type: Transform + pos: -18.712307,-45.33811 + parent: 2 - proto: BoxingBell entities: - uid: 17473 @@ -11739,6 +11812,11 @@ entities: - type: Transform pos: 1.4052037,10.873797 parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -25.087479,-44.991642 + parent: 2 - proto: ButtonFrameCaution entities: - uid: 17678 @@ -11746,6 +11824,29 @@ entities: - type: Transform pos: -20.5,-35.5 parent: 2 + - uid: 17808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-32.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-41.5 + parent: 2 - proto: ButtonFrameCautionSecurity entities: - uid: 17679 @@ -20995,26 +21096,6 @@ entities: - type: Transform pos: -19.5,-46.5 parent: 2 - - uid: 2622 - components: - - type: Transform - pos: -20.5,-46.5 - parent: 2 - - uid: 2623 - components: - - type: Transform - pos: -21.5,-46.5 - parent: 2 - - uid: 2624 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 2 - - uid: 2625 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 2 - uid: 2677 components: - type: Transform @@ -22700,6 +22781,36 @@ entities: - type: Transform pos: 1.5,-44.5 parent: 2 + - uid: 3161 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 - uid: 5013 components: - type: Transform @@ -22770,11 +22881,6 @@ entities: - type: Transform pos: 44.5,13.5 parent: 2 - - uid: 17600 - components: - - type: Transform - pos: -24.5,-46.5 - parent: 2 - uid: 17601 components: - type: Transform @@ -22785,26 +22891,6 @@ entities: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 17603 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 2 - - uid: 17604 - components: - - type: Transform - pos: -25.5,-43.5 - parent: 2 - - uid: 17605 - components: - - type: Transform - pos: -25.5,-42.5 - parent: 2 - - uid: 17606 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 2 - uid: 17607 components: - type: Transform @@ -22820,31 +22906,11 @@ entities: - type: Transform pos: -26.5,-39.5 parent: 2 - - uid: 17610 - components: - - type: Transform - pos: -26.5,-38.5 - parent: 2 - - uid: 17611 - components: - - type: Transform - pos: -27.5,-38.5 - parent: 2 - - uid: 17612 - components: - - type: Transform - pos: -28.5,-38.5 - parent: 2 - uid: 17613 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 17614 - components: - - type: Transform - pos: -29.5,-38.5 - parent: 2 - uid: 17615 components: - type: Transform @@ -22890,6 +22956,16 @@ entities: - type: Transform pos: -30.5,-37.5 parent: 2 + - uid: 17653 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 - uid: 17669 components: - type: Transform @@ -24071,11 +24147,6 @@ entities: - type: Transform pos: -32.5,-43.5 parent: 2 - - uid: 3161 - components: - - type: Transform - pos: -24.5,-46.5 - parent: 2 - uid: 3166 components: - type: Transform @@ -27545,15 +27616,20 @@ entities: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 3830 + - uid: 2625 components: - type: Transform - pos: -64.5,-4.5 + pos: -29.5,-30.5 parent: 2 - - uid: 3831 + - uid: 2636 components: - type: Transform - pos: -24.5,-29.5 + pos: -30.5,-30.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: -64.5,-4.5 parent: 2 - uid: 3832 components: @@ -30205,11 +30281,6 @@ entities: - type: Transform pos: 22.5,-5.5 parent: 2 - - uid: 4394 - components: - - type: Transform - pos: -26.5,-29.5 - parent: 2 - uid: 4395 components: - type: Transform @@ -30375,41 +30446,16 @@ entities: - type: Transform pos: -8.5,-33.5 parent: 2 - - uid: 4428 - components: - - type: Transform - pos: -25.5,-29.5 - parent: 2 - uid: 4429 components: - type: Transform pos: -15.5,-38.5 parent: 2 - - uid: 4430 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 2 - uid: 4431 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 2 - - uid: 4432 - components: - - type: Transform - pos: -28.5,-29.5 - parent: 2 - - uid: 4433 components: - type: Transform pos: -29.5,-29.5 parent: 2 - - uid: 4434 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 2 - uid: 4435 components: - type: Transform @@ -33531,17 +33577,17 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 6240 + - uid: 6091 components: - type: Transform - pos: -13.5,-43.5 + pos: -13.5,-42.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 6242 + - uid: 12737 components: - type: Transform - pos: -13.5,-42.5 + pos: -11.5,-42.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -38034,6 +38080,17 @@ entities: rot: 3.141592653589793 rad pos: 6.557425,21.731491 parent: 2 + - uid: 12012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.680004,-45.141827 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: -18.211254,-43.57824 + parent: 2 - uid: 14359 components: - type: Transform @@ -38292,23 +38349,16 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 - - uid: 5876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-50.5 - parent: 2 - uid: 5877 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-50.5 parent: 2 - - uid: 5878 + - uid: 6174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-50.5 + pos: -21.891918,-37.495163 parent: 2 - uid: 12586 components: @@ -38322,23 +38372,17 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,-12.5 parent: 2 - - uid: 17666 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-39.5 - parent: 2 - uid: 17667 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-38.5 parent: 2 - - uid: 17668 + - uid: 17854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-37.5 + rot: 3.141592653589793 rad + pos: -21.182276,-39.227512 parent: 2 - proto: ChairOfficeLight entities: @@ -39618,36 +39662,62 @@ entities: parent: 2 - proto: ClothingShoesBootsMag entities: - - uid: 6088 + - uid: 17666 components: - type: Transform - pos: -20.697605,-21.704687 - parent: 2 - - uid: 6089 + parent: 14172 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17668 components: - type: Transform - pos: -20.70455,-25.651873 - parent: 2 - - uid: 6090 + parent: 14173 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17697 components: - type: Transform - pos: -20.31566,-25.554583 - parent: 2 - - uid: 6091 + parent: 14174 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17701 components: - type: Transform - pos: -20.64205,-25.373901 - parent: 2 - - uid: 6092 + parent: 14175 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17762 components: - type: Transform - pos: -20.287882,-21.551802 - parent: 2 - - uid: 6093 + parent: 14176 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17763 components: - type: Transform - pos: -20.655937,-21.371122 - parent: 2 + parent: 14177 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17764 + components: + - type: Transform + parent: 14178 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17765 + components: + - type: Transform + parent: 14179 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingShoesBootsWork entities: - uid: 6095 @@ -39853,6 +39923,15 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,24.5 parent: 2 + - uid: 6171 + components: + - type: MetaData + desc: Only the fairest wrench-user may plant their cheeks upon this throne. + name: The throne of the engineering union + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-38.5 + parent: 2 - proto: CommsComputerCircuitboard entities: - uid: 6130 @@ -39862,6 +39941,11 @@ entities: parent: 2 - proto: ComputerAlert entities: + - uid: 456 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 - uid: 6131 components: - type: Transform @@ -39968,6 +40052,12 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,41.5 parent: 2 + - uid: 6232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 - proto: ComputerId entities: - uid: 6146 @@ -40145,12 +40235,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-79.5 parent: 2 - - uid: 6171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 2 - uid: 6172 components: - type: Transform @@ -40163,14 +40247,14 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,33.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 6174 + - uid: 9677 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-7.5 parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: - uid: 6175 components: - type: Transform @@ -40189,6 +40273,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,5.5 parent: 2 + - uid: 8135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - uid: 6178 @@ -46454,6 +46544,11 @@ entities: - type: Transform pos: 8.374847,6.5835924 parent: 2 + - uid: 9765 + components: + - type: Transform + pos: -21.221249,-38.076916 + parent: 2 - proto: DrinkIcedTeaCan entities: - uid: 7135 @@ -49364,12 +49459,12 @@ entities: - type: Transform pos: -35.033707,11.511257 parent: 2 -- proto: FoodCakeSuppermatterSlice +- proto: FoodCakeSuppermatter entities: - - uid: 17664 + - uid: 17855 components: - type: Transform - pos: -20.537176,-38.476357 + pos: -20.702072,-38.39349 parent: 2 - proto: FoodCarrot entities: @@ -49837,6 +49932,11 @@ entities: - type: Transform pos: -15.5,-27.5 parent: 2 + - uid: 17851 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 - proto: GasAnalyzer entities: - uid: 7682 @@ -49855,7 +49955,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 3911 components: - type: Transform @@ -49897,7 +49997,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7684 components: - type: MetaData @@ -49909,7 +50009,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7685 components: - type: Transform @@ -50179,7 +50279,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7706 components: - type: Transform @@ -50336,6 +50436,8 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-36.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 3140 components: - type: Transform @@ -50349,12 +50451,16 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-43.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 3217 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 3218 components: - type: Transform @@ -50369,6 +50475,8 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 5003 components: - type: Transform @@ -50376,7 +50484,7 @@ entities: pos: -39.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7726 components: - type: Transform @@ -50500,7 +50608,7 @@ entities: pos: 5.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7742 components: - type: Transform @@ -50538,7 +50646,7 @@ entities: pos: 17.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7747 components: - type: Transform @@ -50576,7 +50684,7 @@ entities: pos: 17.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7752 components: - type: Transform @@ -50584,7 +50692,7 @@ entities: pos: -46.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7753 components: - type: Transform @@ -50598,7 +50706,7 @@ entities: pos: 7.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7755 components: - type: Transform @@ -50653,7 +50761,7 @@ entities: pos: -16.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7764 components: - type: Transform @@ -50661,7 +50769,7 @@ entities: pos: 4.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7765 components: - type: Transform @@ -50669,7 +50777,7 @@ entities: pos: -44.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7766 components: - type: Transform @@ -50697,7 +50805,7 @@ entities: pos: 28.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7770 components: - type: Transform @@ -50712,7 +50820,7 @@ entities: pos: -44.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7772 components: - type: Transform @@ -50720,7 +50828,7 @@ entities: pos: -27.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7773 components: - type: Transform @@ -50775,14 +50883,14 @@ entities: pos: 30.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7780 components: - type: Transform pos: 34.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7781 components: - type: Transform @@ -50842,7 +50950,7 @@ entities: pos: 38.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7789 components: - type: Transform @@ -50850,21 +50958,21 @@ entities: pos: 10.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7790 components: - type: Transform pos: 30.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7791 components: - type: Transform pos: 29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7792 components: - type: Transform @@ -50904,7 +51012,7 @@ entities: pos: 24.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7797 components: - type: Transform @@ -50912,7 +51020,7 @@ entities: pos: 17.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7798 components: - type: Transform @@ -50928,7 +51036,7 @@ entities: pos: 33.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7800 components: - type: Transform @@ -50944,7 +51052,7 @@ entities: pos: 17.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7802 components: - type: Transform @@ -51021,7 +51129,7 @@ entities: pos: 32.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7812 components: - type: Transform @@ -51029,28 +51137,28 @@ entities: pos: 35.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7813 components: - type: Transform pos: 35.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7814 components: - type: Transform pos: 39.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7815 components: - type: Transform pos: 31.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7816 components: - type: Transform @@ -51058,7 +51166,7 @@ entities: pos: 28.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7817 components: - type: Transform @@ -51066,7 +51174,7 @@ entities: pos: 5.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7818 components: - type: Transform @@ -51112,7 +51220,7 @@ entities: pos: 5.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7824 components: - type: Transform @@ -51143,7 +51251,7 @@ entities: pos: 14.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7828 components: - type: Transform @@ -51151,14 +51259,14 @@ entities: pos: 21.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7829 components: - type: Transform pos: 26.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7830 components: - type: Transform @@ -51166,7 +51274,7 @@ entities: pos: 21.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7831 components: - type: Transform @@ -51197,7 +51305,7 @@ entities: pos: 14.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7835 components: - type: Transform @@ -51205,7 +51313,7 @@ entities: pos: 13.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7836 components: - type: Transform @@ -51221,7 +51329,7 @@ entities: pos: 15.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7838 components: - type: Transform @@ -51229,7 +51337,7 @@ entities: pos: 15.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7839 components: - type: Transform @@ -51245,7 +51353,7 @@ entities: pos: -0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7841 components: - type: Transform @@ -51253,7 +51361,7 @@ entities: pos: -1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7842 components: - type: Transform @@ -51261,7 +51369,7 @@ entities: pos: -0.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7843 components: - type: Transform @@ -51269,7 +51377,7 @@ entities: pos: 0.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7844 components: - type: Transform @@ -51285,7 +51393,7 @@ entities: pos: 12.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7846 components: - type: Transform @@ -51316,7 +51424,7 @@ entities: pos: -17.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7850 components: - type: Transform @@ -51347,14 +51455,14 @@ entities: pos: -25.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7854 components: - type: Transform pos: -36.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7855 components: - type: Transform @@ -51369,7 +51477,7 @@ entities: pos: -35.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7857 components: - type: Transform @@ -51377,7 +51485,7 @@ entities: pos: -36.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7858 components: - type: Transform @@ -51385,14 +51493,14 @@ entities: pos: -52.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7859 components: - type: Transform pos: -49.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7860 components: - type: Transform @@ -51415,7 +51523,7 @@ entities: pos: -21.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7863 components: - type: Transform @@ -51447,7 +51555,7 @@ entities: pos: -32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7867 components: - type: Transform @@ -51470,14 +51578,14 @@ entities: pos: -44.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7870 components: - type: Transform pos: -46.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7871 components: - type: Transform @@ -51515,7 +51623,7 @@ entities: pos: -20.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7876 components: - type: Transform @@ -51523,7 +51631,7 @@ entities: pos: -16.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7877 components: - type: Transform @@ -51547,7 +51655,7 @@ entities: pos: -26.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7880 components: - type: Transform @@ -51563,7 +51671,7 @@ entities: pos: -14.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7882 components: - type: Transform @@ -51571,14 +51679,14 @@ entities: pos: -14.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7883 components: - type: Transform pos: -5.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7884 components: - type: Transform @@ -51586,14 +51694,14 @@ entities: pos: -36.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7885 components: - type: Transform pos: -3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7886 components: - type: Transform @@ -51639,7 +51747,7 @@ entities: pos: -40.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7892 components: - type: Transform @@ -51655,7 +51763,7 @@ entities: pos: -17.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7894 components: - type: Transform @@ -51679,7 +51787,7 @@ entities: pos: -8.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7897 components: - type: Transform @@ -51725,7 +51833,7 @@ entities: pos: 23.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7903 components: - type: Transform @@ -51765,14 +51873,14 @@ entities: pos: -50.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7908 components: - type: Transform pos: -20.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7909 components: - type: Transform @@ -51780,7 +51888,7 @@ entities: pos: -20.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7910 components: - type: Transform @@ -51863,29 +51971,39 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17477 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-38.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17478 components: - type: Transform pos: -42.5,-38.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17479 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-39.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17480 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-39.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17481 components: - type: Transform @@ -51893,53 +52011,69 @@ entities: pos: -24.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17482 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17483 components: - type: Transform pos: -42.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17484 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17496 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17531 components: - type: Transform pos: -18.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17532 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17534 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17535 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17536 components: - type: Transform @@ -51947,37 +52081,45 @@ entities: pos: -24.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17543 components: - type: Transform pos: -18.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17627 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17644 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17645 components: - type: Transform pos: -37.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17646 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17677 components: - type: Transform @@ -51994,6 +52136,16 @@ entities: - type: Transform pos: -38.5,-36.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - proto: GasPipeFourway entities: - uid: 3169 @@ -52008,6 +52160,8 @@ entities: - type: Transform pos: -31.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 7920 components: - type: Transform @@ -52063,7 +52217,7 @@ entities: pos: -7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7928 components: - type: Transform @@ -52077,21 +52231,21 @@ entities: pos: -34.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7930 components: - type: Transform pos: 24.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7931 components: - type: Transform pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7932 components: - type: Transform @@ -52112,7 +52266,7 @@ entities: pos: -0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7935 components: - type: Transform @@ -52133,21 +52287,21 @@ entities: pos: -22.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7938 components: - type: Transform pos: -9.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7939 components: - type: Transform pos: -28.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7940 components: - type: Transform @@ -52161,49 +52315,49 @@ entities: pos: -36.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7942 components: - type: Transform pos: -39.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7943 components: - type: Transform pos: -47.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7944 components: - type: Transform pos: -52.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7945 components: - type: Transform pos: -55.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7946 components: - type: Transform pos: -16.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7947 components: - type: Transform pos: 20.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7948 components: - type: Transform @@ -52217,14 +52371,14 @@ entities: pos: -35.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7950 components: - type: Transform pos: -24.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7951 components: - type: Transform @@ -52245,21 +52399,21 @@ entities: pos: -36.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7954 components: - type: Transform pos: -24.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7955 components: - type: Transform pos: -8.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7956 components: - type: Transform @@ -52273,14 +52427,14 @@ entities: pos: -7.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7958 components: - type: Transform pos: -37.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7959 components: - type: Transform @@ -52294,7 +52448,7 @@ entities: pos: -31.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7961 components: - type: Transform @@ -52302,11 +52456,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' + - uid: 12007 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 17503 components: - type: Transform pos: -37.5,-43.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: GasPipeStraight entities: - uid: 3141 @@ -52322,11 +52485,15 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-35.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 3691 components: - type: Transform pos: -16.5,-54.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 3816 components: - type: Transform @@ -52622,21 +52789,21 @@ entities: pos: -7.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7996 components: - type: Transform pos: 10.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7997 components: - type: Transform pos: 10.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7998 components: - type: Transform @@ -52666,14 +52833,14 @@ entities: pos: 0.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8002 components: - type: Transform pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8003 components: - type: Transform @@ -52681,7 +52848,7 @@ entities: pos: -36.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8004 components: - type: Transform @@ -52727,14 +52894,14 @@ entities: pos: 9.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8010 components: - type: Transform pos: 10.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8011 components: - type: Transform @@ -52755,7 +52922,7 @@ entities: pos: 11.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8014 components: - type: Transform @@ -52794,7 +52961,7 @@ entities: pos: 11.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8019 components: - type: Transform @@ -52857,7 +53024,7 @@ entities: pos: 10.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8027 components: - type: Transform @@ -52881,7 +53048,7 @@ entities: pos: 7.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8030 components: - type: Transform @@ -52889,7 +53056,7 @@ entities: pos: -12.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8031 components: - type: Transform @@ -52918,14 +53085,14 @@ entities: pos: 10.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8035 components: - type: Transform pos: 10.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8036 components: - type: Transform @@ -52949,7 +53116,7 @@ entities: pos: 8.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8039 components: - type: Transform @@ -52973,7 +53140,7 @@ entities: pos: 8.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8042 components: - type: Transform @@ -53044,7 +53211,7 @@ entities: pos: 15.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8052 components: - type: Transform @@ -53052,7 +53219,7 @@ entities: pos: 15.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8053 components: - type: Transform @@ -53060,7 +53227,7 @@ entities: pos: 15.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8054 components: - type: Transform @@ -53068,7 +53235,7 @@ entities: pos: 15.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8055 components: - type: Transform @@ -53210,7 +53377,7 @@ entities: pos: 10.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8073 components: - type: Transform @@ -53225,14 +53392,14 @@ entities: pos: 8.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8075 components: - type: Transform pos: 11.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8076 components: - type: Transform @@ -53240,7 +53407,7 @@ entities: pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8077 components: - type: Transform @@ -53248,7 +53415,7 @@ entities: pos: -9.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8078 components: - type: Transform @@ -53268,14 +53435,14 @@ entities: pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8081 components: - type: Transform pos: 12.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8082 components: - type: Transform @@ -53283,7 +53450,7 @@ entities: pos: 7.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8083 components: - type: Transform @@ -53305,7 +53472,7 @@ entities: pos: 27.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8086 components: - type: Transform @@ -53341,7 +53508,7 @@ entities: pos: 31.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8091 components: - type: Transform @@ -53349,7 +53516,7 @@ entities: pos: 17.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8092 components: - type: Transform @@ -53357,7 +53524,7 @@ entities: pos: 14.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8093 components: - type: Transform @@ -53365,7 +53532,7 @@ entities: pos: 13.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8094 components: - type: Transform @@ -53373,7 +53540,7 @@ entities: pos: 28.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8095 components: - type: Transform @@ -53381,7 +53548,7 @@ entities: pos: 27.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8096 components: - type: Transform @@ -53389,14 +53556,14 @@ entities: pos: -35.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8097 components: - type: Transform pos: -7.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8098 components: - type: Transform @@ -53472,7 +53639,7 @@ entities: pos: 5.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8110 components: - type: Transform @@ -53567,7 +53734,7 @@ entities: pos: -3.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8126 components: - type: Transform @@ -53613,7 +53780,7 @@ entities: pos: 9.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8133 components: - type: Transform @@ -53637,7 +53804,7 @@ entities: pos: -16.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8137 components: - type: Transform @@ -53645,7 +53812,7 @@ entities: pos: -17.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8138 components: - type: Transform @@ -53653,7 +53820,7 @@ entities: pos: -15.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8139 components: - type: Transform @@ -53661,21 +53828,21 @@ entities: pos: -31.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8140 components: - type: Transform pos: 0.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8141 components: - type: Transform pos: 11.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8142 components: - type: Transform @@ -53683,7 +53850,7 @@ entities: pos: -29.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8143 components: - type: Transform @@ -53691,7 +53858,7 @@ entities: pos: -45.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8144 components: - type: Transform @@ -53699,7 +53866,7 @@ entities: pos: -41.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8145 components: - type: Transform @@ -53771,7 +53938,7 @@ entities: pos: 27.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8154 components: - type: Transform @@ -53802,7 +53969,7 @@ entities: pos: -32.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8158 components: - type: Transform @@ -53818,7 +53985,7 @@ entities: pos: -43.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8160 components: - type: Transform @@ -53834,7 +54001,7 @@ entities: pos: 33.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8162 components: - type: Transform @@ -53842,7 +54009,7 @@ entities: pos: 6.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8163 components: - type: Transform @@ -53850,7 +54017,7 @@ entities: pos: -39.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8164 components: - type: Transform @@ -53887,7 +54054,7 @@ entities: pos: -8.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8169 components: - type: Transform @@ -53917,7 +54084,7 @@ entities: pos: 12.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8173 components: - type: Transform @@ -54067,7 +54234,7 @@ entities: pos: -8.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8193 components: - type: Transform @@ -54075,7 +54242,7 @@ entities: pos: -9.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8194 components: - type: Transform @@ -54083,7 +54250,7 @@ entities: pos: -11.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8195 components: - type: Transform @@ -54091,7 +54258,7 @@ entities: pos: -11.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8196 components: - type: Transform @@ -54099,21 +54266,21 @@ entities: pos: -11.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8197 components: - type: Transform pos: 34.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8198 components: - type: Transform pos: 34.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8199 components: - type: Transform @@ -54121,7 +54288,7 @@ entities: pos: 33.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8200 components: - type: Transform @@ -54129,7 +54296,7 @@ entities: pos: 32.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8201 components: - type: Transform @@ -54137,7 +54304,7 @@ entities: pos: 31.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8202 components: - type: Transform @@ -54145,7 +54312,7 @@ entities: pos: 30.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8203 components: - type: Transform @@ -54153,7 +54320,7 @@ entities: pos: 30.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8204 components: - type: Transform @@ -54161,7 +54328,7 @@ entities: pos: 30.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8205 components: - type: Transform @@ -54169,7 +54336,7 @@ entities: pos: 30.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8206 components: - type: Transform @@ -54177,7 +54344,7 @@ entities: pos: 30.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8207 components: - type: Transform @@ -54185,7 +54352,7 @@ entities: pos: 29.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8208 components: - type: Transform @@ -54193,7 +54360,7 @@ entities: pos: 28.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8209 components: - type: Transform @@ -54201,7 +54368,7 @@ entities: pos: 27.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8210 components: - type: Transform @@ -54209,28 +54376,28 @@ entities: pos: 26.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8211 components: - type: Transform pos: -12.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8212 components: - type: Transform pos: -12.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8213 components: - type: Transform pos: -12.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8214 components: - type: Transform @@ -54324,7 +54491,7 @@ entities: pos: -7.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8226 components: - type: Transform @@ -54332,7 +54499,7 @@ entities: pos: -7.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8227 components: - type: Transform @@ -54340,7 +54507,7 @@ entities: pos: -7.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8228 components: - type: Transform @@ -54348,7 +54515,7 @@ entities: pos: -7.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8229 components: - type: Transform @@ -54356,7 +54523,7 @@ entities: pos: -7.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8230 components: - type: Transform @@ -54364,7 +54531,7 @@ entities: pos: -7.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8231 components: - type: Transform @@ -54372,7 +54539,7 @@ entities: pos: -7.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8232 components: - type: Transform @@ -54380,7 +54547,7 @@ entities: pos: -7.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8233 components: - type: Transform @@ -54388,7 +54555,7 @@ entities: pos: -7.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8234 components: - type: Transform @@ -54396,7 +54563,7 @@ entities: pos: -7.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8235 components: - type: Transform @@ -54404,7 +54571,7 @@ entities: pos: 34.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8236 components: - type: Transform @@ -54420,7 +54587,7 @@ entities: pos: -6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8238 components: - type: Transform @@ -54428,7 +54595,7 @@ entities: pos: -5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8239 components: - type: Transform @@ -54436,7 +54603,7 @@ entities: pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8240 components: - type: Transform @@ -54444,7 +54611,7 @@ entities: pos: -2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8241 components: - type: Transform @@ -54483,7 +54650,7 @@ entities: pos: -3.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8246 components: - type: Transform @@ -54550,7 +54717,7 @@ entities: pos: -3.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8255 components: - type: Transform @@ -54558,7 +54725,7 @@ entities: pos: -3.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8256 components: - type: Transform @@ -54566,7 +54733,7 @@ entities: pos: -26.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8257 components: - type: Transform @@ -54782,7 +54949,7 @@ entities: pos: 35.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8285 components: - type: Transform @@ -54790,7 +54957,7 @@ entities: pos: 36.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8286 components: - type: Transform @@ -54798,7 +54965,7 @@ entities: pos: 37.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8287 components: - type: Transform @@ -54806,7 +54973,7 @@ entities: pos: 38.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8288 components: - type: Transform @@ -54814,7 +54981,7 @@ entities: pos: 38.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8289 components: - type: Transform @@ -54822,7 +54989,7 @@ entities: pos: 38.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8290 components: - type: Transform @@ -54830,7 +54997,7 @@ entities: pos: 38.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8291 components: - type: Transform @@ -54838,7 +55005,7 @@ entities: pos: 38.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8292 components: - type: Transform @@ -54846,7 +55013,7 @@ entities: pos: 38.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8293 components: - type: Transform @@ -54854,7 +55021,7 @@ entities: pos: 38.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8294 components: - type: Transform @@ -54862,7 +55029,7 @@ entities: pos: 38.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8295 components: - type: Transform @@ -54870,7 +55037,7 @@ entities: pos: 38.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8296 components: - type: Transform @@ -54878,7 +55045,7 @@ entities: pos: 38.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8297 components: - type: Transform @@ -54886,7 +55053,7 @@ entities: pos: 38.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8298 components: - type: Transform @@ -54894,35 +55061,35 @@ entities: pos: 38.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8299 components: - type: Transform pos: 38.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8300 components: - type: Transform pos: 38.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8301 components: - type: Transform pos: 38.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8302 components: - type: Transform pos: 38.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8303 components: - type: Transform @@ -54930,7 +55097,7 @@ entities: pos: 37.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8304 components: - type: Transform @@ -54938,7 +55105,7 @@ entities: pos: 36.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8305 components: - type: Transform @@ -54946,7 +55113,7 @@ entities: pos: 35.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8306 components: - type: Transform @@ -54954,7 +55121,7 @@ entities: pos: 34.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8307 components: - type: Transform @@ -54962,7 +55129,7 @@ entities: pos: 33.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8308 components: - type: Transform @@ -54970,7 +55137,7 @@ entities: pos: 32.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8309 components: - type: Transform @@ -54978,7 +55145,7 @@ entities: pos: 31.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8310 components: - type: Transform @@ -54986,7 +55153,7 @@ entities: pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8311 components: - type: Transform @@ -54994,7 +55161,7 @@ entities: pos: 30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8312 components: - type: Transform @@ -55002,7 +55169,7 @@ entities: pos: 29.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8313 components: - type: Transform @@ -55010,7 +55177,7 @@ entities: pos: 28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8314 components: - type: Transform @@ -55018,7 +55185,7 @@ entities: pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8315 components: - type: Transform @@ -55026,7 +55193,7 @@ entities: pos: 26.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8316 components: - type: Transform @@ -55034,7 +55201,7 @@ entities: pos: 23.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8317 components: - type: Transform @@ -55042,7 +55209,7 @@ entities: pos: 22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8318 components: - type: Transform @@ -55050,7 +55217,7 @@ entities: pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8319 components: - type: Transform @@ -55058,7 +55225,7 @@ entities: pos: 19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8320 components: - type: Transform @@ -55066,7 +55233,7 @@ entities: pos: 25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8321 components: - type: Transform @@ -55074,7 +55241,7 @@ entities: pos: 24.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8322 components: - type: Transform @@ -55082,7 +55249,7 @@ entities: pos: 24.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8323 components: - type: Transform @@ -55090,7 +55257,7 @@ entities: pos: 24.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8324 components: - type: Transform @@ -55106,63 +55273,63 @@ entities: pos: 24.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8326 components: - type: Transform pos: 24.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8327 components: - type: Transform pos: 24.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8328 components: - type: Transform pos: 24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8329 components: - type: Transform pos: 24.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8330 components: - type: Transform pos: 24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8331 components: - type: Transform pos: 24.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8332 components: - type: Transform pos: 24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8333 components: - type: Transform pos: 24.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8334 components: - type: Transform @@ -55170,7 +55337,7 @@ entities: pos: 29.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8335 components: - type: Transform @@ -55178,7 +55345,7 @@ entities: pos: 29.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8336 components: - type: Transform @@ -55186,7 +55353,7 @@ entities: pos: -1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8337 components: - type: Transform @@ -55194,21 +55361,21 @@ entities: pos: -1.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8338 components: - type: Transform pos: -1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8339 components: - type: Transform pos: -1.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8340 components: - type: Transform @@ -55216,7 +55383,7 @@ entities: pos: -0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8341 components: - type: Transform @@ -55224,7 +55391,7 @@ entities: pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8342 components: - type: Transform @@ -55232,7 +55399,7 @@ entities: pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8343 components: - type: Transform @@ -55240,7 +55407,7 @@ entities: pos: 2.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8344 components: - type: Transform @@ -55248,7 +55415,7 @@ entities: pos: 3.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8345 components: - type: Transform @@ -55256,7 +55423,7 @@ entities: pos: 4.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8346 components: - type: Transform @@ -55264,7 +55431,7 @@ entities: pos: 5.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8347 components: - type: Transform @@ -55272,7 +55439,7 @@ entities: pos: 7.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8348 components: - type: Transform @@ -55359,7 +55526,7 @@ entities: pos: 6.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8359 components: - type: Transform @@ -55367,7 +55534,7 @@ entities: pos: 16.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8360 components: - type: Transform @@ -55391,7 +55558,7 @@ entities: pos: 13.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8363 components: - type: Transform @@ -55407,7 +55574,7 @@ entities: pos: 25.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8365 components: - type: Transform @@ -55511,7 +55678,7 @@ entities: pos: 28.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8378 components: - type: Transform @@ -55519,7 +55686,7 @@ entities: pos: 26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8379 components: - type: Transform @@ -55527,7 +55694,7 @@ entities: pos: 25.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8380 components: - type: Transform @@ -55551,7 +55718,7 @@ entities: pos: 22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8383 components: - type: Transform @@ -55559,7 +55726,7 @@ entities: pos: 23.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8384 components: - type: Transform @@ -55567,7 +55734,7 @@ entities: pos: 15.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8385 components: - type: Transform @@ -55575,7 +55742,7 @@ entities: pos: 16.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8386 components: - type: Transform @@ -55583,7 +55750,7 @@ entities: pos: 17.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8387 components: - type: Transform @@ -55591,7 +55758,7 @@ entities: pos: 17.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8388 components: - type: Transform @@ -55662,7 +55829,7 @@ entities: pos: 33.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8398 components: - type: Transform @@ -55670,7 +55837,7 @@ entities: pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8399 components: - type: Transform @@ -55678,7 +55845,7 @@ entities: pos: 33.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8400 components: - type: Transform @@ -55686,7 +55853,7 @@ entities: pos: 33.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8401 components: - type: Transform @@ -55694,7 +55861,7 @@ entities: pos: 33.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8402 components: - type: Transform @@ -55702,7 +55869,7 @@ entities: pos: 8.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8403 components: - type: Transform @@ -55710,7 +55877,7 @@ entities: pos: 33.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8404 components: - type: Transform @@ -55718,7 +55885,7 @@ entities: pos: 33.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8405 components: - type: Transform @@ -55726,7 +55893,7 @@ entities: pos: 33.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8406 components: - type: Transform @@ -55734,7 +55901,7 @@ entities: pos: 33.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8407 components: - type: Transform @@ -55742,7 +55909,7 @@ entities: pos: 20.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8408 components: - type: Transform @@ -55750,7 +55917,7 @@ entities: pos: 19.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8409 components: - type: Transform @@ -55758,7 +55925,7 @@ entities: pos: 18.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8410 components: - type: Transform @@ -55766,7 +55933,7 @@ entities: pos: 17.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8411 components: - type: Transform @@ -55774,7 +55941,7 @@ entities: pos: 21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8412 components: - type: Transform @@ -55846,7 +56013,7 @@ entities: pos: 41.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8421 components: - type: Transform @@ -55854,7 +56021,7 @@ entities: pos: 42.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8422 components: - type: Transform @@ -55862,7 +56029,7 @@ entities: pos: 43.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8423 components: - type: Transform @@ -55870,7 +56037,7 @@ entities: pos: 38.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8424 components: - type: Transform @@ -55878,7 +56045,7 @@ entities: pos: 37.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8425 components: - type: Transform @@ -55886,7 +56053,7 @@ entities: pos: 36.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8426 components: - type: Transform @@ -55894,7 +56061,7 @@ entities: pos: 35.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8427 components: - type: Transform @@ -55902,7 +56069,7 @@ entities: pos: 34.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8428 components: - type: Transform @@ -56104,7 +56271,7 @@ entities: pos: 38.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8454 components: - type: Transform @@ -56167,21 +56334,21 @@ entities: pos: 39.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8462 components: - type: Transform pos: 39.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8463 components: - type: Transform pos: 39.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8464 components: - type: Transform @@ -56189,7 +56356,7 @@ entities: pos: 37.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8465 components: - type: Transform @@ -56197,7 +56364,7 @@ entities: pos: 36.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8466 components: - type: Transform @@ -56205,7 +56372,7 @@ entities: pos: 35.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8467 components: - type: Transform @@ -56213,7 +56380,7 @@ entities: pos: 35.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8468 components: - type: Transform @@ -56221,7 +56388,7 @@ entities: pos: 34.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8469 components: - type: Transform @@ -56229,7 +56396,7 @@ entities: pos: 33.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8470 components: - type: Transform @@ -56237,28 +56404,28 @@ entities: pos: 32.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8471 components: - type: Transform pos: 31.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8472 components: - type: Transform pos: 31.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8473 components: - type: Transform pos: 31.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8474 components: - type: Transform @@ -56266,7 +56433,7 @@ entities: pos: 23.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8475 components: - type: Transform @@ -56274,7 +56441,7 @@ entities: pos: 22.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8476 components: - type: Transform @@ -56282,35 +56449,35 @@ entities: pos: 21.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8477 components: - type: Transform pos: 31.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8478 components: - type: Transform pos: 31.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8479 components: - type: Transform pos: 31.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8480 components: - type: Transform pos: 31.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8481 components: - type: Transform @@ -56318,7 +56485,7 @@ entities: pos: 29.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8482 components: - type: Transform @@ -56326,7 +56493,7 @@ entities: pos: 30.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8483 components: - type: Transform @@ -56334,7 +56501,7 @@ entities: pos: 26.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8484 components: - type: Transform @@ -56342,7 +56509,7 @@ entities: pos: 25.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8485 components: - type: Transform @@ -56350,7 +56517,7 @@ entities: pos: 24.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8486 components: - type: Transform @@ -56358,7 +56525,7 @@ entities: pos: 23.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8487 components: - type: Transform @@ -56366,7 +56533,7 @@ entities: pos: 22.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8488 components: - type: Transform @@ -56374,7 +56541,7 @@ entities: pos: 21.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8489 components: - type: Transform @@ -56382,7 +56549,7 @@ entities: pos: 21.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8490 components: - type: Transform @@ -56390,7 +56557,7 @@ entities: pos: 19.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8491 components: - type: Transform @@ -56398,7 +56565,7 @@ entities: pos: 18.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8492 components: - type: Transform @@ -56406,7 +56573,7 @@ entities: pos: 17.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8493 components: - type: Transform @@ -56414,7 +56581,7 @@ entities: pos: 16.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8494 components: - type: Transform @@ -56422,7 +56589,7 @@ entities: pos: 15.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8495 components: - type: Transform @@ -56430,7 +56597,7 @@ entities: pos: 14.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8496 components: - type: Transform @@ -56438,7 +56605,7 @@ entities: pos: 12.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8497 components: - type: Transform @@ -56446,7 +56613,7 @@ entities: pos: 11.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8498 components: - type: Transform @@ -56454,7 +56621,7 @@ entities: pos: 10.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8499 components: - type: Transform @@ -56462,7 +56629,7 @@ entities: pos: 9.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8500 components: - type: Transform @@ -56470,7 +56637,7 @@ entities: pos: 8.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8501 components: - type: Transform @@ -56478,7 +56645,7 @@ entities: pos: 7.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8502 components: - type: Transform @@ -56486,7 +56653,7 @@ entities: pos: 6.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8503 components: - type: Transform @@ -56494,7 +56661,7 @@ entities: pos: 5.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8504 components: - type: Transform @@ -56502,7 +56669,7 @@ entities: pos: 5.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8505 components: - type: Transform @@ -56510,7 +56677,7 @@ entities: pos: 5.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8506 components: - type: Transform @@ -56518,7 +56685,7 @@ entities: pos: 4.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8507 components: - type: Transform @@ -56526,7 +56693,7 @@ entities: pos: 18.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8508 components: - type: Transform @@ -56534,7 +56701,7 @@ entities: pos: 17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8509 components: - type: Transform @@ -56542,7 +56709,7 @@ entities: pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8510 components: - type: Transform @@ -56550,7 +56717,7 @@ entities: pos: 15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8511 components: - type: Transform @@ -56762,14 +56929,14 @@ entities: pos: 14.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8538 components: - type: Transform pos: 14.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8539 components: - type: Transform @@ -56833,7 +57000,7 @@ entities: pos: 5.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8547 components: - type: Transform @@ -56841,7 +57008,7 @@ entities: pos: 5.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8548 components: - type: Transform @@ -56849,7 +57016,7 @@ entities: pos: 5.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8549 components: - type: Transform @@ -56857,7 +57024,7 @@ entities: pos: 5.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8550 components: - type: Transform @@ -56865,7 +57032,7 @@ entities: pos: 5.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8551 components: - type: Transform @@ -56873,7 +57040,7 @@ entities: pos: 5.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8552 components: - type: Transform @@ -56881,7 +57048,7 @@ entities: pos: 5.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8553 components: - type: Transform @@ -56889,7 +57056,7 @@ entities: pos: 5.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8554 components: - type: Transform @@ -56897,7 +57064,7 @@ entities: pos: 5.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8555 components: - type: Transform @@ -56998,14 +57165,14 @@ entities: pos: 14.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8568 components: - type: Transform pos: 14.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8569 components: - type: Transform @@ -57037,7 +57204,7 @@ entities: pos: 13.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8573 components: - type: Transform @@ -57045,7 +57212,7 @@ entities: pos: 12.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8574 components: - type: Transform @@ -57053,7 +57220,7 @@ entities: pos: 11.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8575 components: - type: Transform @@ -57061,7 +57228,7 @@ entities: pos: 10.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8576 components: - type: Transform @@ -57069,7 +57236,7 @@ entities: pos: 9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8577 components: - type: Transform @@ -57077,7 +57244,7 @@ entities: pos: 26.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8578 components: - type: Transform @@ -57085,7 +57252,7 @@ entities: pos: 26.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8579 components: - type: Transform @@ -57093,7 +57260,7 @@ entities: pos: 25.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8580 components: - type: Transform @@ -57101,7 +57268,7 @@ entities: pos: 24.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8581 components: - type: Transform @@ -57109,7 +57276,7 @@ entities: pos: 14.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8582 components: - type: Transform @@ -57206,7 +57373,7 @@ entities: pos: 22.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8595 components: - type: Transform @@ -57214,21 +57381,21 @@ entities: pos: 12.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8596 components: - type: Transform pos: 13.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8597 components: - type: Transform pos: 13.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8598 components: - type: Transform @@ -57236,7 +57403,7 @@ entities: pos: 21.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8599 components: - type: Transform @@ -57259,7 +57426,7 @@ entities: pos: 13.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8602 components: - type: Transform @@ -57267,7 +57434,7 @@ entities: pos: 24.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8603 components: - type: Transform @@ -57275,70 +57442,70 @@ entities: pos: 25.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8604 components: - type: Transform pos: 13.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8605 components: - type: Transform pos: 13.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8606 components: - type: Transform pos: 26.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8607 components: - type: Transform pos: 26.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8608 components: - type: Transform pos: 26.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8609 components: - type: Transform pos: 26.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8610 components: - type: Transform pos: 26.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8611 components: - type: Transform pos: 26.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8612 components: - type: Transform pos: 26.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8613 components: - type: Transform @@ -57346,7 +57513,7 @@ entities: pos: 11.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8614 components: - type: Transform @@ -57354,7 +57521,7 @@ entities: pos: 9.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8615 components: - type: Transform @@ -57362,7 +57529,7 @@ entities: pos: 18.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8616 components: - type: Transform @@ -57440,7 +57607,7 @@ entities: pos: -22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8626 components: - type: Transform @@ -57448,7 +57615,7 @@ entities: pos: 25.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8627 components: - type: Transform @@ -57456,7 +57623,7 @@ entities: pos: 24.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8628 components: - type: Transform @@ -57464,7 +57631,7 @@ entities: pos: 23.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8629 components: - type: Transform @@ -57472,7 +57639,7 @@ entities: pos: 22.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8630 components: - type: Transform @@ -57534,14 +57701,14 @@ entities: pos: 12.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8638 components: - type: Transform pos: 5.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8639 components: - type: Transform @@ -57556,7 +57723,7 @@ entities: pos: 7.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8641 components: - type: Transform @@ -57564,7 +57731,7 @@ entities: pos: 6.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8642 components: - type: Transform @@ -57588,7 +57755,7 @@ entities: pos: 20.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8645 components: - type: Transform @@ -57604,7 +57771,7 @@ entities: pos: 19.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8647 components: - type: Transform @@ -57612,7 +57779,7 @@ entities: pos: 19.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8648 components: - type: Transform @@ -57628,7 +57795,7 @@ entities: pos: 17.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8650 components: - type: Transform @@ -57636,7 +57803,7 @@ entities: pos: 15.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8651 components: - type: Transform @@ -57644,7 +57811,7 @@ entities: pos: 14.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8652 components: - type: Transform @@ -57652,7 +57819,7 @@ entities: pos: 13.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8653 components: - type: Transform @@ -57675,28 +57842,28 @@ entities: pos: 12.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8656 components: - type: Transform pos: 12.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8657 components: - type: Transform pos: 12.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8658 components: - type: Transform pos: 12.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8659 components: - type: Transform @@ -57763,7 +57930,7 @@ entities: pos: 18.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8668 components: - type: Transform @@ -57771,7 +57938,7 @@ entities: pos: 18.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8669 components: - type: Transform @@ -57779,7 +57946,7 @@ entities: pos: 13.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8670 components: - type: Transform @@ -57794,14 +57961,14 @@ entities: pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8672 components: - type: Transform pos: 14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8673 components: - type: Transform @@ -57809,7 +57976,7 @@ entities: pos: 15.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8674 components: - type: Transform @@ -57832,7 +57999,7 @@ entities: pos: 17.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8677 components: - type: Transform @@ -57840,7 +58007,7 @@ entities: pos: 18.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8678 components: - type: Transform @@ -57848,7 +58015,7 @@ entities: pos: 18.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8679 components: - type: Transform @@ -57856,7 +58023,7 @@ entities: pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8680 components: - type: Transform @@ -57864,7 +58031,7 @@ entities: pos: 18.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8681 components: - type: Transform @@ -57872,7 +58039,7 @@ entities: pos: 18.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8682 components: - type: Transform @@ -57880,7 +58047,7 @@ entities: pos: 17.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8683 components: - type: Transform @@ -57888,7 +58055,7 @@ entities: pos: 16.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8684 components: - type: Transform @@ -57896,7 +58063,7 @@ entities: pos: 3.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8685 components: - type: Transform @@ -57931,7 +58098,7 @@ entities: pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8690 components: - type: Transform @@ -57954,7 +58121,7 @@ entities: pos: 12.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8693 components: - type: Transform @@ -57962,7 +58129,7 @@ entities: pos: 12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8694 components: - type: Transform @@ -57970,7 +58137,7 @@ entities: pos: 11.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8695 components: - type: Transform @@ -57978,7 +58145,7 @@ entities: pos: 10.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8696 components: - type: Transform @@ -57986,7 +58153,7 @@ entities: pos: 9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8697 components: - type: Transform @@ -57994,7 +58161,7 @@ entities: pos: 8.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8698 components: - type: Transform @@ -58002,7 +58169,7 @@ entities: pos: 7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8699 components: - type: Transform @@ -58010,7 +58177,7 @@ entities: pos: 6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8700 components: - type: Transform @@ -58018,7 +58185,7 @@ entities: pos: 5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8701 components: - type: Transform @@ -58026,7 +58193,7 @@ entities: pos: 4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8702 components: - type: Transform @@ -58066,7 +58233,7 @@ entities: pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8707 components: - type: Transform @@ -58074,7 +58241,7 @@ entities: pos: 1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8708 components: - type: Transform @@ -58082,7 +58249,7 @@ entities: pos: 19.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8709 components: - type: Transform @@ -58125,7 +58292,7 @@ entities: pos: 28.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8715 components: - type: Transform @@ -58188,28 +58355,28 @@ entities: pos: -0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8723 components: - type: Transform pos: -1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8724 components: - type: Transform pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8725 components: - type: Transform pos: -0.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8726 components: - type: Transform @@ -58224,7 +58391,7 @@ entities: pos: 0.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8728 components: - type: Transform @@ -58256,7 +58423,7 @@ entities: pos: 15.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8732 components: - type: Transform @@ -58264,7 +58431,7 @@ entities: pos: 14.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8733 components: - type: Transform @@ -58272,7 +58439,7 @@ entities: pos: 11.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8734 components: - type: Transform @@ -58280,7 +58447,7 @@ entities: pos: 10.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8735 components: - type: Transform @@ -58295,7 +58462,7 @@ entities: pos: 5.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8737 components: - type: Transform @@ -58324,7 +58491,7 @@ entities: pos: 10.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8741 components: - type: Transform @@ -58332,7 +58499,7 @@ entities: pos: 11.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8742 components: - type: Transform @@ -58369,21 +58536,21 @@ entities: pos: 12.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8747 components: - type: Transform pos: 12.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8748 components: - type: Transform pos: 12.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8749 components: - type: Transform @@ -58447,7 +58614,7 @@ entities: pos: 11.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8757 components: - type: Transform @@ -58455,7 +58622,7 @@ entities: pos: 9.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8758 components: - type: Transform @@ -58463,28 +58630,28 @@ entities: pos: 8.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8759 components: - type: Transform pos: 12.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8760 components: - type: Transform pos: 12.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8761 components: - type: Transform pos: 12.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8762 components: - type: Transform @@ -58500,7 +58667,7 @@ entities: pos: -15.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8764 components: - type: Transform @@ -58508,7 +58675,7 @@ entities: pos: 21.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8765 components: - type: Transform @@ -58516,7 +58683,7 @@ entities: pos: 22.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8766 components: - type: Transform @@ -58524,7 +58691,7 @@ entities: pos: 23.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8767 components: - type: Transform @@ -58675,7 +58842,7 @@ entities: pos: -1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8786 components: - type: Transform @@ -58683,7 +58850,7 @@ entities: pos: -2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8787 components: - type: Transform @@ -58691,7 +58858,7 @@ entities: pos: -4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8788 components: - type: Transform @@ -58699,7 +58866,7 @@ entities: pos: -6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8789 components: - type: Transform @@ -58707,7 +58874,7 @@ entities: pos: -7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8790 components: - type: Transform @@ -58715,7 +58882,7 @@ entities: pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8791 components: - type: Transform @@ -58723,7 +58890,7 @@ entities: pos: -10.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8792 components: - type: Transform @@ -58731,7 +58898,7 @@ entities: pos: -11.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8793 components: - type: Transform @@ -58739,7 +58906,7 @@ entities: pos: -12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8794 components: - type: Transform @@ -58747,7 +58914,7 @@ entities: pos: -13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8795 components: - type: Transform @@ -58755,7 +58922,7 @@ entities: pos: -15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8796 components: - type: Transform @@ -58890,35 +59057,35 @@ entities: pos: -16.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8814 components: - type: Transform pos: -16.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8815 components: - type: Transform pos: -16.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8816 components: - type: Transform pos: -16.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8817 components: - type: Transform pos: -16.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8818 components: - type: Transform @@ -58926,7 +59093,7 @@ entities: pos: -17.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8819 components: - type: Transform @@ -58934,7 +59101,7 @@ entities: pos: -18.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8820 components: - type: Transform @@ -58942,7 +59109,7 @@ entities: pos: -19.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8821 components: - type: Transform @@ -58950,7 +59117,7 @@ entities: pos: -20.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8822 components: - type: Transform @@ -58958,7 +59125,7 @@ entities: pos: -21.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8823 components: - type: Transform @@ -59046,7 +59213,7 @@ entities: pos: -22.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8834 components: - type: Transform @@ -59054,7 +59221,7 @@ entities: pos: -22.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8835 components: - type: Transform @@ -59062,7 +59229,7 @@ entities: pos: -22.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8836 components: - type: Transform @@ -59124,35 +59291,35 @@ entities: pos: -3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8844 components: - type: Transform pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8845 components: - type: Transform pos: -3.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8846 components: - type: Transform pos: -3.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8847 components: - type: Transform pos: -3.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8848 components: - type: Transform @@ -59160,7 +59327,7 @@ entities: pos: -4.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8849 components: - type: Transform @@ -59168,7 +59335,7 @@ entities: pos: -5.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8850 components: - type: Transform @@ -59176,7 +59343,7 @@ entities: pos: -6.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8851 components: - type: Transform @@ -59184,7 +59351,7 @@ entities: pos: -7.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8852 components: - type: Transform @@ -59192,7 +59359,7 @@ entities: pos: -8.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8853 components: - type: Transform @@ -59200,7 +59367,7 @@ entities: pos: -10.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8854 components: - type: Transform @@ -59208,7 +59375,7 @@ entities: pos: -11.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8855 components: - type: Transform @@ -59216,42 +59383,42 @@ entities: pos: -12.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8856 components: - type: Transform pos: -14.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8857 components: - type: Transform pos: -14.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8858 components: - type: Transform pos: -14.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8859 components: - type: Transform pos: -14.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8860 components: - type: Transform pos: -14.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8861 components: - type: Transform @@ -59259,7 +59426,7 @@ entities: pos: -15.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8862 components: - type: Transform @@ -59267,7 +59434,7 @@ entities: pos: -16.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8863 components: - type: Transform @@ -59275,35 +59442,35 @@ entities: pos: -18.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8864 components: - type: Transform pos: -17.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8865 components: - type: Transform pos: -17.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8866 components: - type: Transform pos: -17.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8867 components: - type: Transform pos: -17.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8868 components: - type: Transform @@ -59311,7 +59478,7 @@ entities: pos: -18.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8869 components: - type: Transform @@ -59319,7 +59486,7 @@ entities: pos: -19.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8870 components: - type: Transform @@ -59367,7 +59534,7 @@ entities: pos: -17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8876 components: - type: Transform @@ -59375,7 +59542,7 @@ entities: pos: -18.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8877 components: - type: Transform @@ -59383,7 +59550,7 @@ entities: pos: -19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8878 components: - type: Transform @@ -59391,7 +59558,7 @@ entities: pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8879 components: - type: Transform @@ -59399,7 +59566,7 @@ entities: pos: -21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8880 components: - type: Transform @@ -59407,7 +59574,7 @@ entities: pos: -23.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8881 components: - type: Transform @@ -59415,7 +59582,7 @@ entities: pos: -24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8882 components: - type: Transform @@ -59423,7 +59590,7 @@ entities: pos: -26.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8883 components: - type: Transform @@ -59431,35 +59598,35 @@ entities: pos: -27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8884 components: - type: Transform pos: -25.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8885 components: - type: Transform pos: -25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8886 components: - type: Transform pos: -25.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8887 components: - type: Transform pos: -25.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8888 components: - type: Transform @@ -59467,7 +59634,7 @@ entities: pos: -42.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8889 components: - type: Transform @@ -59475,7 +59642,7 @@ entities: pos: -46.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8890 components: - type: Transform @@ -59490,7 +59657,7 @@ entities: pos: -49.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8892 components: - type: Transform @@ -59498,7 +59665,7 @@ entities: pos: -48.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8893 components: - type: Transform @@ -59561,56 +59728,56 @@ entities: pos: -25.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8902 components: - type: Transform pos: -25.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8903 components: - type: Transform pos: -25.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8904 components: - type: Transform pos: -25.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8905 components: - type: Transform pos: -25.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8906 components: - type: Transform pos: -25.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8907 components: - type: Transform pos: -25.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8908 components: - type: Transform pos: -25.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8909 components: - type: Transform @@ -59674,7 +59841,7 @@ entities: pos: -9.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8917 components: - type: Transform @@ -59682,7 +59849,7 @@ entities: pos: -10.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8918 components: - type: Transform @@ -59690,7 +59857,7 @@ entities: pos: -11.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8919 components: - type: Transform @@ -59698,28 +59865,28 @@ entities: pos: -11.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8920 components: - type: Transform pos: -8.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8921 components: - type: Transform pos: -8.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8922 components: - type: Transform pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8923 components: - type: Transform @@ -59727,7 +59894,7 @@ entities: pos: -10.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8924 components: - type: Transform @@ -59735,63 +59902,63 @@ entities: pos: -9.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8925 components: - type: Transform pos: -8.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8926 components: - type: Transform pos: -8.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8927 components: - type: Transform pos: -42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8928 components: - type: Transform pos: -42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8929 components: - type: Transform pos: -42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8930 components: - type: Transform pos: -42.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8931 components: - type: Transform pos: -42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8932 components: - type: Transform pos: -42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8933 components: - type: Transform @@ -59853,7 +60020,7 @@ entities: pos: -23.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8941 components: - type: Transform @@ -59861,7 +60028,7 @@ entities: pos: -24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8942 components: - type: Transform @@ -59869,7 +60036,7 @@ entities: pos: -25.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8943 components: - type: Transform @@ -59877,7 +60044,7 @@ entities: pos: -26.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8944 components: - type: Transform @@ -59885,7 +60052,7 @@ entities: pos: -27.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8945 components: - type: Transform @@ -59893,7 +60060,7 @@ entities: pos: -29.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8946 components: - type: Transform @@ -59901,7 +60068,7 @@ entities: pos: -30.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8947 components: - type: Transform @@ -59909,7 +60076,7 @@ entities: pos: -31.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8948 components: - type: Transform @@ -59917,7 +60084,7 @@ entities: pos: -33.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8949 components: - type: Transform @@ -59925,7 +60092,7 @@ entities: pos: -34.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8950 components: - type: Transform @@ -59933,7 +60100,7 @@ entities: pos: -35.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8951 components: - type: Transform @@ -59941,7 +60108,7 @@ entities: pos: -37.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8952 components: - type: Transform @@ -59949,7 +60116,7 @@ entities: pos: -38.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8953 components: - type: Transform @@ -59957,7 +60124,7 @@ entities: pos: -40.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8954 components: - type: Transform @@ -60053,7 +60220,7 @@ entities: pos: -41.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8966 components: - type: Transform @@ -60085,7 +60252,7 @@ entities: pos: -36.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8970 components: - type: Transform @@ -60093,7 +60260,7 @@ entities: pos: -36.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8971 components: - type: Transform @@ -60101,7 +60268,7 @@ entities: pos: -36.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8972 components: - type: Transform @@ -60109,56 +60276,56 @@ entities: pos: -29.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8973 components: - type: Transform pos: -28.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8974 components: - type: Transform pos: -28.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8975 components: - type: Transform pos: -28.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8976 components: - type: Transform pos: -28.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8977 components: - type: Transform pos: -28.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8978 components: - type: Transform pos: -35.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8979 components: - type: Transform pos: -39.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8980 components: - type: Transform @@ -60166,7 +60333,7 @@ entities: pos: -41.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8981 components: - type: Transform @@ -60174,7 +60341,7 @@ entities: pos: -40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8982 components: - type: Transform @@ -60182,7 +60349,7 @@ entities: pos: -41.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8983 components: - type: Transform @@ -60190,7 +60357,7 @@ entities: pos: -40.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8984 components: - type: Transform @@ -60198,7 +60365,7 @@ entities: pos: -39.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8985 components: - type: Transform @@ -60206,7 +60373,7 @@ entities: pos: -39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8986 components: - type: Transform @@ -60214,7 +60381,7 @@ entities: pos: -36.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8987 components: - type: Transform @@ -60222,14 +60389,14 @@ entities: pos: -38.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8988 components: - type: Transform pos: -37.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8989 components: - type: Transform @@ -60237,7 +60404,7 @@ entities: pos: -38.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8990 components: - type: Transform @@ -60245,7 +60412,7 @@ entities: pos: -36.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8991 components: - type: Transform @@ -60253,7 +60420,7 @@ entities: pos: -36.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8992 components: - type: Transform @@ -60261,7 +60428,7 @@ entities: pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8993 components: - type: Transform @@ -60309,7 +60476,7 @@ entities: pos: -46.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 8999 components: - type: Transform @@ -60317,7 +60484,7 @@ entities: pos: -45.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9000 components: - type: Transform @@ -60325,7 +60492,7 @@ entities: pos: -44.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9001 components: - type: Transform @@ -60333,7 +60500,7 @@ entities: pos: -43.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9002 components: - type: Transform @@ -60361,42 +60528,42 @@ entities: pos: -47.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9006 components: - type: Transform pos: -47.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9007 components: - type: Transform pos: -47.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9008 components: - type: Transform pos: -47.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9009 components: - type: Transform pos: -47.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9010 components: - type: Transform pos: -47.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9011 components: - type: Transform @@ -60412,7 +60579,7 @@ entities: pos: -49.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9013 components: - type: Transform @@ -60420,7 +60587,7 @@ entities: pos: -50.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9014 components: - type: Transform @@ -60428,7 +60595,7 @@ entities: pos: -51.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9015 components: - type: Transform @@ -60464,28 +60631,28 @@ entities: pos: -47.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9020 components: - type: Transform pos: -47.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9021 components: - type: Transform pos: -47.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9022 components: - type: Transform pos: -47.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9023 components: - type: Transform @@ -60500,35 +60667,35 @@ entities: pos: -49.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9025 components: - type: Transform pos: -52.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9026 components: - type: Transform pos: -55.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9027 components: - type: Transform pos: -58.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9028 components: - type: Transform pos: -58.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9029 components: - type: Transform @@ -60536,7 +60703,7 @@ entities: pos: -57.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9030 components: - type: Transform @@ -60544,7 +60711,7 @@ entities: pos: -56.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9031 components: - type: Transform @@ -60552,7 +60719,7 @@ entities: pos: -54.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9032 components: - type: Transform @@ -60560,7 +60727,7 @@ entities: pos: -53.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9033 components: - type: Transform @@ -60568,7 +60735,7 @@ entities: pos: -51.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9034 components: - type: Transform @@ -60576,7 +60743,7 @@ entities: pos: -50.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9035 components: - type: Transform @@ -60584,7 +60751,7 @@ entities: pos: -55.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9036 components: - type: Transform @@ -60592,7 +60759,7 @@ entities: pos: -55.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9037 components: - type: Transform @@ -60600,7 +60767,7 @@ entities: pos: -55.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9038 components: - type: Transform @@ -60608,7 +60775,7 @@ entities: pos: -55.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9039 components: - type: Transform @@ -60616,7 +60783,7 @@ entities: pos: -55.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9040 components: - type: Transform @@ -60624,7 +60791,7 @@ entities: pos: -55.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9041 components: - type: Transform @@ -60632,7 +60799,7 @@ entities: pos: -55.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9042 components: - type: Transform @@ -60640,7 +60807,7 @@ entities: pos: -55.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9043 components: - type: Transform @@ -60648,7 +60815,7 @@ entities: pos: -55.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9044 components: - type: Transform @@ -60656,7 +60823,7 @@ entities: pos: -55.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9045 components: - type: Transform @@ -60664,7 +60831,7 @@ entities: pos: -55.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9046 components: - type: Transform @@ -60672,7 +60839,7 @@ entities: pos: -54.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9047 components: - type: Transform @@ -60680,35 +60847,35 @@ entities: pos: -53.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9048 components: - type: Transform pos: -58.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9049 components: - type: Transform pos: -58.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9050 components: - type: Transform pos: -55.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9051 components: - type: Transform pos: -52.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9052 components: - type: Transform @@ -60716,7 +60883,7 @@ entities: pos: -56.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9053 components: - type: Transform @@ -60724,7 +60891,7 @@ entities: pos: -57.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9054 components: - type: Transform @@ -60732,7 +60899,7 @@ entities: pos: -58.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9055 components: - type: Transform @@ -60740,7 +60907,7 @@ entities: pos: -53.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9056 components: - type: Transform @@ -60748,7 +60915,7 @@ entities: pos: -54.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9057 components: - type: Transform @@ -60908,7 +61075,7 @@ entities: pos: -52.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9078 components: - type: Transform @@ -61047,28 +61214,28 @@ entities: pos: -22.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9096 components: - type: Transform pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9097 components: - type: Transform pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9098 components: - type: Transform pos: -22.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9099 components: - type: Transform @@ -61082,35 +61249,35 @@ entities: pos: -37.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9101 components: - type: Transform pos: -37.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9102 components: - type: Transform pos: -37.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9103 components: - type: Transform pos: -37.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9104 components: - type: Transform pos: -37.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9105 components: - type: Transform @@ -61126,7 +61293,7 @@ entities: pos: -16.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9107 components: - type: Transform @@ -61134,7 +61301,7 @@ entities: pos: -16.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9108 components: - type: Transform @@ -61142,7 +61309,7 @@ entities: pos: -16.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9109 components: - type: Transform @@ -61150,7 +61317,7 @@ entities: pos: -16.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9110 components: - type: Transform @@ -61158,7 +61325,7 @@ entities: pos: -16.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9111 components: - type: Transform @@ -61166,7 +61333,7 @@ entities: pos: -16.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9112 components: - type: Transform @@ -61174,7 +61341,7 @@ entities: pos: -16.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9113 components: - type: Transform @@ -61182,7 +61349,7 @@ entities: pos: -16.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9114 components: - type: Transform @@ -61190,7 +61357,7 @@ entities: pos: -16.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9115 components: - type: Transform @@ -61198,7 +61365,7 @@ entities: pos: -16.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9116 components: - type: Transform @@ -61206,7 +61373,7 @@ entities: pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9117 components: - type: Transform @@ -61214,7 +61381,7 @@ entities: pos: -14.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9118 components: - type: Transform @@ -61222,7 +61389,7 @@ entities: pos: -13.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9119 components: - type: Transform @@ -61230,7 +61397,7 @@ entities: pos: -12.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9120 components: - type: Transform @@ -61238,7 +61405,7 @@ entities: pos: -11.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9121 components: - type: Transform @@ -61246,7 +61413,7 @@ entities: pos: -10.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9122 components: - type: Transform @@ -61254,7 +61421,7 @@ entities: pos: -9.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9123 components: - type: Transform @@ -61262,7 +61429,7 @@ entities: pos: -20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9124 components: - type: Transform @@ -61270,7 +61437,7 @@ entities: pos: -19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9125 components: - type: Transform @@ -61278,7 +61445,7 @@ entities: pos: -18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9126 components: - type: Transform @@ -61286,7 +61453,7 @@ entities: pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9127 components: - type: Transform @@ -61294,7 +61461,7 @@ entities: pos: 20.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9128 components: - type: Transform @@ -61302,7 +61469,7 @@ entities: pos: -20.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9129 components: - type: Transform @@ -61310,7 +61477,7 @@ entities: pos: -19.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9130 components: - type: Transform @@ -61318,7 +61485,7 @@ entities: pos: -18.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9131 components: - type: Transform @@ -61326,7 +61493,7 @@ entities: pos: -17.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9132 components: - type: Transform @@ -61422,7 +61589,7 @@ entities: pos: -28.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9145 components: - type: Transform @@ -61430,7 +61597,7 @@ entities: pos: -28.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9146 components: - type: Transform @@ -61438,7 +61605,7 @@ entities: pos: -26.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9147 components: - type: Transform @@ -61446,7 +61613,7 @@ entities: pos: -27.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9148 components: - type: Transform @@ -61454,7 +61621,7 @@ entities: pos: -29.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9149 components: - type: Transform @@ -61462,7 +61629,7 @@ entities: pos: -30.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9150 components: - type: Transform @@ -61470,7 +61637,7 @@ entities: pos: -31.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9151 components: - type: Transform @@ -61486,7 +61653,7 @@ entities: pos: -34.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9153 components: - type: Transform @@ -61494,7 +61661,7 @@ entities: pos: -35.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9154 components: - type: Transform @@ -61502,7 +61669,7 @@ entities: pos: -36.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9155 components: - type: Transform @@ -61510,7 +61677,7 @@ entities: pos: -37.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9156 components: - type: Transform @@ -61518,7 +61685,7 @@ entities: pos: -38.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9157 components: - type: Transform @@ -61526,7 +61693,7 @@ entities: pos: -39.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9158 components: - type: Transform @@ -61534,7 +61701,7 @@ entities: pos: -41.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9159 components: - type: Transform @@ -61542,7 +61709,7 @@ entities: pos: -43.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9160 components: - type: Transform @@ -61550,7 +61717,7 @@ entities: pos: -44.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9161 components: - type: Transform @@ -61558,7 +61725,7 @@ entities: pos: -45.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9162 components: - type: Transform @@ -61693,7 +61860,7 @@ entities: pos: -33.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9179 components: - type: Transform @@ -61701,7 +61868,7 @@ entities: pos: -30.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9180 components: - type: Transform @@ -61709,14 +61876,14 @@ entities: pos: -34.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9181 components: - type: Transform pos: -25.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9182 components: - type: Transform @@ -61739,14 +61906,14 @@ entities: pos: -28.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9185 components: - type: Transform pos: -28.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9186 components: - type: Transform @@ -61777,7 +61944,7 @@ entities: pos: -35.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9190 components: - type: Transform @@ -61785,7 +61952,7 @@ entities: pos: -27.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9191 components: - type: Transform @@ -61793,7 +61960,7 @@ entities: pos: -26.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9192 components: - type: Transform @@ -61801,7 +61968,7 @@ entities: pos: -25.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9193 components: - type: Transform @@ -61809,7 +61976,7 @@ entities: pos: -24.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9194 components: - type: Transform @@ -61817,7 +61984,7 @@ entities: pos: -24.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9195 components: - type: Transform @@ -61825,7 +61992,7 @@ entities: pos: -24.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9196 components: - type: Transform @@ -61833,7 +62000,7 @@ entities: pos: -24.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9197 components: - type: Transform @@ -61841,7 +62008,7 @@ entities: pos: -24.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9198 components: - type: Transform @@ -61849,7 +62016,7 @@ entities: pos: -24.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9199 components: - type: Transform @@ -61857,7 +62024,7 @@ entities: pos: -24.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9200 components: - type: Transform @@ -61865,7 +62032,7 @@ entities: pos: -24.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9201 components: - type: Transform @@ -61873,14 +62040,14 @@ entities: pos: -24.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9202 components: - type: Transform pos: 12.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9203 components: - type: Transform @@ -61888,7 +62055,7 @@ entities: pos: -36.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9204 components: - type: Transform @@ -61896,7 +62063,7 @@ entities: pos: -37.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9205 components: - type: Transform @@ -61904,7 +62071,7 @@ entities: pos: -38.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9206 components: - type: Transform @@ -61912,7 +62079,7 @@ entities: pos: -39.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9207 components: - type: Transform @@ -61920,7 +62087,7 @@ entities: pos: -41.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9208 components: - type: Transform @@ -61928,7 +62095,7 @@ entities: pos: -42.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9209 components: - type: Transform @@ -61936,7 +62103,7 @@ entities: pos: -43.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9210 components: - type: Transform @@ -61944,7 +62111,7 @@ entities: pos: -35.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9211 components: - type: Transform @@ -61952,7 +62119,7 @@ entities: pos: -35.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9212 components: - type: Transform @@ -62195,7 +62362,7 @@ entities: pos: -40.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9243 components: - type: Transform @@ -62203,7 +62370,7 @@ entities: pos: -40.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9244 components: - type: Transform @@ -62211,7 +62378,7 @@ entities: pos: -40.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9245 components: - type: Transform @@ -62219,7 +62386,7 @@ entities: pos: -40.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9246 components: - type: Transform @@ -62258,21 +62425,21 @@ entities: pos: -32.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9252 components: - type: Transform pos: -32.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9253 components: - type: Transform pos: -32.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9254 components: - type: Transform @@ -62308,7 +62475,7 @@ entities: pos: -36.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9259 components: - type: Transform @@ -62316,7 +62483,7 @@ entities: pos: -38.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9260 components: - type: Transform @@ -62324,63 +62491,63 @@ entities: pos: -37.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9261 components: - type: Transform pos: -36.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9262 components: - type: Transform pos: -36.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9263 components: - type: Transform pos: -36.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9264 components: - type: Transform pos: 0.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9265 components: - type: Transform pos: 0.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9266 components: - type: Transform pos: -35.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9267 components: - type: Transform pos: 0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9268 components: - type: Transform pos: 0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9269 components: - type: Transform @@ -62467,7 +62634,7 @@ entities: pos: -45.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9280 components: - type: Transform @@ -62499,35 +62666,35 @@ entities: pos: -48.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9284 components: - type: Transform pos: -46.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9285 components: - type: Transform pos: -46.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9286 components: - type: Transform pos: -46.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9287 components: - type: Transform pos: -46.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9288 components: - type: Transform @@ -62535,7 +62702,7 @@ entities: pos: -51.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9289 components: - type: Transform @@ -62582,91 +62749,91 @@ entities: pos: -40.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9295 components: - type: Transform pos: -40.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9296 components: - type: Transform pos: -40.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9297 components: - type: Transform pos: -40.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9298 components: - type: Transform pos: -40.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9299 components: - type: Transform pos: -40.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9300 components: - type: Transform pos: -40.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9301 components: - type: Transform pos: -40.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9302 components: - type: Transform pos: -40.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9303 components: - type: Transform pos: -40.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9304 components: - type: Transform pos: -40.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9305 components: - type: Transform pos: -40.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9306 components: - type: Transform pos: -40.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9307 components: - type: Transform @@ -62764,7 +62931,7 @@ entities: pos: -34.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9320 components: - type: Transform @@ -62772,7 +62939,7 @@ entities: pos: -33.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9321 components: - type: Transform @@ -62780,7 +62947,7 @@ entities: pos: -23.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9322 components: - type: Transform @@ -62788,7 +62955,7 @@ entities: pos: -22.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9323 components: - type: Transform @@ -62796,7 +62963,7 @@ entities: pos: -21.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9324 components: - type: Transform @@ -62804,7 +62971,7 @@ entities: pos: -19.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9325 components: - type: Transform @@ -62812,7 +62979,7 @@ entities: pos: -18.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9326 components: - type: Transform @@ -62820,7 +62987,7 @@ entities: pos: -20.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9327 components: - type: Transform @@ -62828,7 +62995,7 @@ entities: pos: -20.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9328 components: - type: Transform @@ -62860,7 +63027,7 @@ entities: pos: -23.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9332 components: - type: Transform @@ -62884,7 +63051,7 @@ entities: pos: -24.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9335 components: - type: Transform @@ -62892,7 +63059,7 @@ entities: pos: -24.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9336 components: - type: Transform @@ -62940,7 +63107,7 @@ entities: pos: -24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9342 components: - type: Transform @@ -62948,7 +63115,7 @@ entities: pos: -24.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9343 components: - type: Transform @@ -62956,7 +63123,7 @@ entities: pos: -24.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9344 components: - type: Transform @@ -62964,7 +63131,7 @@ entities: pos: -24.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9345 components: - type: Transform @@ -62972,7 +63139,7 @@ entities: pos: -20.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9346 components: - type: Transform @@ -62980,7 +63147,7 @@ entities: pos: -24.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9347 components: - type: Transform @@ -62988,7 +63155,7 @@ entities: pos: -24.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9348 components: - type: Transform @@ -62996,7 +63163,7 @@ entities: pos: -24.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9349 components: - type: Transform @@ -63020,7 +63187,7 @@ entities: pos: -24.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9352 components: - type: Transform @@ -63028,7 +63195,7 @@ entities: pos: -24.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9353 components: - type: Transform @@ -63036,7 +63203,7 @@ entities: pos: -21.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9354 components: - type: Transform @@ -63044,7 +63211,7 @@ entities: pos: -22.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9355 components: - type: Transform @@ -63052,7 +63219,7 @@ entities: pos: -23.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9356 components: - type: Transform @@ -63060,7 +63227,7 @@ entities: pos: -18.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9357 components: - type: Transform @@ -63068,7 +63235,7 @@ entities: pos: -18.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9358 components: - type: Transform @@ -63076,7 +63243,7 @@ entities: pos: -17.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9359 components: - type: Transform @@ -63084,7 +63251,7 @@ entities: pos: -16.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9360 components: - type: Transform @@ -63092,7 +63259,7 @@ entities: pos: -25.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9361 components: - type: Transform @@ -63188,7 +63355,7 @@ entities: pos: -13.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9373 components: - type: Transform @@ -63196,7 +63363,7 @@ entities: pos: -12.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9374 components: - type: Transform @@ -63204,7 +63371,7 @@ entities: pos: -11.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9375 components: - type: Transform @@ -63212,7 +63379,7 @@ entities: pos: -10.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9376 components: - type: Transform @@ -63220,7 +63387,7 @@ entities: pos: -9.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9377 components: - type: Transform @@ -63269,49 +63436,49 @@ entities: pos: -8.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9384 components: - type: Transform pos: -8.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9385 components: - type: Transform pos: -8.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9386 components: - type: Transform pos: -8.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9387 components: - type: Transform pos: -8.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9388 components: - type: Transform pos: -8.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9389 components: - type: Transform pos: -8.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9390 components: - type: Transform @@ -63367,7 +63534,7 @@ entities: pos: -7.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9397 components: - type: Transform @@ -63375,7 +63542,7 @@ entities: pos: -6.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9398 components: - type: Transform @@ -63383,7 +63550,7 @@ entities: pos: -3.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9399 components: - type: Transform @@ -63399,7 +63566,7 @@ entities: pos: -4.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9401 components: - type: Transform @@ -63407,7 +63574,7 @@ entities: pos: -4.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9402 components: - type: Transform @@ -63438,7 +63605,7 @@ entities: pos: -47.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9406 components: - type: Transform @@ -63446,7 +63613,7 @@ entities: pos: -3.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9407 components: - type: Transform @@ -63454,7 +63621,7 @@ entities: pos: -2.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9408 components: - type: Transform @@ -63462,7 +63629,7 @@ entities: pos: -1.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9409 components: - type: Transform @@ -63470,7 +63637,7 @@ entities: pos: -0.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9410 components: - type: Transform @@ -63478,7 +63645,7 @@ entities: pos: -47.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9411 components: - type: Transform @@ -63486,7 +63653,7 @@ entities: pos: -47.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9412 components: - type: Transform @@ -63494,7 +63661,7 @@ entities: pos: -47.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9413 components: - type: Transform @@ -63502,7 +63669,7 @@ entities: pos: -47.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9414 components: - type: Transform @@ -63510,7 +63677,7 @@ entities: pos: -47.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9415 components: - type: Transform @@ -63605,7 +63772,7 @@ entities: pos: -40.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9427 components: - type: Transform @@ -63613,7 +63780,7 @@ entities: pos: 2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9428 components: - type: Transform @@ -63621,7 +63788,7 @@ entities: pos: 1.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9429 components: - type: Transform @@ -63629,7 +63796,7 @@ entities: pos: 0.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9430 components: - type: Transform @@ -63637,7 +63804,7 @@ entities: pos: -0.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9431 components: - type: Transform @@ -63645,7 +63812,7 @@ entities: pos: -1.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9432 components: - type: Transform @@ -63653,7 +63820,7 @@ entities: pos: -2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9433 components: - type: Transform @@ -63702,42 +63869,42 @@ entities: pos: -5.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9440 components: - type: Transform pos: -5.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9441 components: - type: Transform pos: -5.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9442 components: - type: Transform pos: -5.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9443 components: - type: Transform pos: -5.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9444 components: - type: Transform pos: -5.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9445 components: - type: Transform @@ -63777,7 +63944,7 @@ entities: pos: -5.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9450 components: - type: Transform @@ -63785,7 +63952,7 @@ entities: pos: -5.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9451 components: - type: Transform @@ -63793,14 +63960,14 @@ entities: pos: -5.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9452 components: - type: Transform pos: -3.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9453 components: - type: Transform @@ -63808,7 +63975,7 @@ entities: pos: -12.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9454 components: - type: Transform @@ -63816,7 +63983,7 @@ entities: pos: -11.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9455 components: - type: Transform @@ -63824,7 +63991,7 @@ entities: pos: -9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9456 components: - type: Transform @@ -63832,7 +63999,7 @@ entities: pos: -10.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9457 components: - type: Transform @@ -63840,14 +64007,14 @@ entities: pos: -8.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9458 components: - type: Transform pos: -3.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9459 components: - type: Transform @@ -63855,14 +64022,14 @@ entities: pos: -6.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9460 components: - type: Transform pos: -3.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9461 components: - type: Transform @@ -63925,70 +64092,70 @@ entities: pos: -3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9469 components: - type: Transform pos: -3.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9470 components: - type: Transform pos: -3.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9471 components: - type: Transform pos: -3.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9472 components: - type: Transform pos: -3.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9473 components: - type: Transform pos: -3.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9474 components: - type: Transform pos: -3.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9475 components: - type: Transform pos: -3.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9476 components: - type: Transform pos: -3.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9477 components: - type: Transform pos: -3.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9478 components: - type: Transform @@ -64059,7 +64226,7 @@ entities: pos: -4.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9488 components: - type: Transform @@ -64067,7 +64234,7 @@ entities: pos: -7.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9489 components: - type: Transform @@ -64075,7 +64242,7 @@ entities: pos: -7.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9490 components: - type: Transform @@ -64083,7 +64250,7 @@ entities: pos: -7.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9491 components: - type: Transform @@ -64091,7 +64258,7 @@ entities: pos: -7.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9492 components: - type: Transform @@ -64131,7 +64298,7 @@ entities: pos: -9.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9497 components: - type: Transform @@ -64139,70 +64306,70 @@ entities: pos: -9.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9498 components: - type: Transform pos: -46.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9499 components: - type: Transform pos: -46.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9500 components: - type: Transform pos: -46.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9501 components: - type: Transform pos: -46.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9502 components: - type: Transform pos: -46.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9503 components: - type: Transform pos: -46.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9504 components: - type: Transform pos: -46.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9505 components: - type: Transform pos: -46.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9506 components: - type: Transform pos: -46.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9507 components: - type: Transform @@ -64241,7 +64408,7 @@ entities: pos: -39.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9512 components: - type: Transform @@ -64249,7 +64416,7 @@ entities: pos: -38.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9513 components: - type: Transform @@ -64257,7 +64424,7 @@ entities: pos: -28.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9514 components: - type: Transform @@ -64265,7 +64432,7 @@ entities: pos: -28.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9515 components: - type: Transform @@ -64273,14 +64440,14 @@ entities: pos: -28.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9516 components: - type: Transform pos: -27.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9517 components: - type: Transform @@ -64288,7 +64455,7 @@ entities: pos: -39.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9518 components: - type: Transform @@ -64296,7 +64463,7 @@ entities: pos: -38.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9519 components: - type: Transform @@ -64304,7 +64471,7 @@ entities: pos: -36.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9520 components: - type: Transform @@ -64312,7 +64479,7 @@ entities: pos: -35.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9521 components: - type: Transform @@ -64320,7 +64487,7 @@ entities: pos: -33.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9522 components: - type: Transform @@ -64328,7 +64495,7 @@ entities: pos: -32.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9523 components: - type: Transform @@ -64336,7 +64503,7 @@ entities: pos: -30.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9524 components: - type: Transform @@ -64344,70 +64511,70 @@ entities: pos: -29.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9525 components: - type: Transform pos: -31.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9526 components: - type: Transform pos: -31.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9527 components: - type: Transform pos: -31.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9531 components: - type: Transform pos: -37.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9532 components: - type: Transform pos: -37.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9533 components: - type: Transform pos: -27.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9534 components: - type: Transform pos: -27.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9535 components: - type: Transform pos: -27.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9536 components: - type: Transform pos: -40.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9537 components: - type: Transform @@ -64415,7 +64582,7 @@ entities: pos: -39.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9538 components: - type: Transform @@ -64423,7 +64590,7 @@ entities: pos: -38.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9539 components: - type: Transform @@ -64431,7 +64598,7 @@ entities: pos: -37.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9540 components: - type: Transform @@ -64517,7 +64684,7 @@ entities: pos: -47.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9551 components: - type: Transform @@ -64525,7 +64692,7 @@ entities: pos: -46.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9552 components: - type: Transform @@ -64533,7 +64700,7 @@ entities: pos: -45.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9553 components: - type: Transform @@ -64541,7 +64708,7 @@ entities: pos: -44.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9554 components: - type: Transform @@ -64549,7 +64716,7 @@ entities: pos: -43.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9555 components: - type: Transform @@ -64557,7 +64724,7 @@ entities: pos: -42.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9556 components: - type: Transform @@ -64565,7 +64732,7 @@ entities: pos: -41.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9557 components: - type: Transform @@ -64573,7 +64740,7 @@ entities: pos: -40.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9558 components: - type: Transform @@ -64581,7 +64748,7 @@ entities: pos: -39.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9559 components: - type: Transform @@ -64589,7 +64756,7 @@ entities: pos: -38.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9560 components: - type: Transform @@ -64597,7 +64764,7 @@ entities: pos: -37.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9561 components: - type: Transform @@ -64661,7 +64828,7 @@ entities: pos: -36.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9569 components: - type: Transform @@ -64669,7 +64836,7 @@ entities: pos: -36.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9570 components: - type: Transform @@ -64708,7 +64875,7 @@ entities: pos: -14.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9575 components: - type: Transform @@ -64777,7 +64944,7 @@ entities: pos: -17.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9584 components: - type: Transform @@ -64913,7 +65080,7 @@ entities: pos: -13.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9601 components: - type: Transform @@ -64983,7 +65150,7 @@ entities: pos: -17.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9610 components: - type: Transform @@ -64998,14 +65165,14 @@ entities: pos: -6.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9612 components: - type: Transform pos: -17.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9613 components: - type: Transform @@ -65029,7 +65196,7 @@ entities: pos: -7.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9616 components: - type: Transform @@ -65077,7 +65244,7 @@ entities: pos: 16.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9622 components: - type: Transform @@ -65138,7 +65305,7 @@ entities: pos: 12.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9630 components: - type: Transform @@ -65212,28 +65379,28 @@ entities: pos: -37.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9640 components: - type: Transform pos: -37.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9641 components: - type: Transform pos: -37.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9642 components: - type: Transform pos: -37.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9643 components: - type: Transform @@ -65257,7 +65424,7 @@ entities: pos: -31.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9649 components: - type: Transform @@ -65265,7 +65432,7 @@ entities: pos: -31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9650 components: - type: Transform @@ -65273,7 +65440,7 @@ entities: pos: -31.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9651 components: - type: Transform @@ -65281,7 +65448,7 @@ entities: pos: -31.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9652 components: - type: Transform @@ -65481,14 +65648,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - - uid: 9677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - uid: 9678 components: - type: Transform @@ -65617,7 +65776,7 @@ entities: pos: -15.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9695 components: - type: Transform @@ -65625,7 +65784,7 @@ entities: pos: -14.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9696 components: - type: Transform @@ -65665,7 +65824,7 @@ entities: pos: -11.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9701 components: - type: Transform @@ -65673,7 +65832,7 @@ entities: pos: -10.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9702 components: - type: Transform @@ -65681,7 +65840,7 @@ entities: pos: -9.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9703 components: - type: Transform @@ -65689,7 +65848,7 @@ entities: pos: -8.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9704 components: - type: Transform @@ -65747,7 +65906,7 @@ entities: pos: 23.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9712 components: - type: Transform @@ -66162,14 +66321,14 @@ entities: pos: -13.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9767 components: - type: Transform pos: -13.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9768 components: - type: Transform @@ -66219,7 +66378,7 @@ entities: pos: -51.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9775 components: - type: Transform @@ -66243,7 +66402,7 @@ entities: pos: -2.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9778 components: - type: Transform @@ -66251,7 +66410,7 @@ entities: pos: -1.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9779 components: - type: Transform @@ -66259,7 +66418,7 @@ entities: pos: -21.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9780 components: - type: Transform @@ -66267,7 +66426,7 @@ entities: pos: -19.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9781 components: - type: Transform @@ -66275,7 +66434,7 @@ entities: pos: -18.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9782 components: - type: Transform @@ -66283,7 +66442,7 @@ entities: pos: -17.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9783 components: - type: Transform @@ -66291,7 +66450,7 @@ entities: pos: -16.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9784 components: - type: Transform @@ -66299,7 +66458,7 @@ entities: pos: 13.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9785 components: - type: Transform @@ -66307,7 +66466,7 @@ entities: pos: 13.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9786 components: - type: Transform @@ -66315,7 +66474,7 @@ entities: pos: 13.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9787 components: - type: Transform @@ -66394,28 +66553,28 @@ entities: pos: 11.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9797 components: - type: Transform pos: 11.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9798 components: - type: Transform pos: 11.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9799 components: - type: Transform pos: 11.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9800 components: - type: Transform @@ -66423,7 +66582,7 @@ entities: pos: 10.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9801 components: - type: Transform @@ -66722,40 +66881,54 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 14296 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 16857 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17491 components: - type: Transform pos: -42.5,-41.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17492 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17493 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17498 components: - type: Transform pos: -31.5,-41.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17511 components: - type: Transform @@ -66770,87 +66943,101 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-34.5 parent: 2 - - uid: 17515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - uid: 17521 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17522 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17523 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17524 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17525 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17526 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17527 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17528 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17529 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17530 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17533 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17537 components: - type: Transform pos: -24.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17538 components: - type: Transform @@ -66858,7 +67045,7 @@ entities: pos: -23.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17539 components: - type: Transform @@ -66866,7 +67053,7 @@ entities: pos: -22.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17540 components: - type: Transform @@ -66874,7 +67061,7 @@ entities: pos: -21.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17541 components: - type: Transform @@ -66882,7 +67069,7 @@ entities: pos: -20.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17542 components: - type: Transform @@ -66890,67 +67077,87 @@ entities: pos: -19.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17624 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17625 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17626 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17636 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17637 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17638 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17639 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17640 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17641 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-46.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17643 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17683 components: - type: Transform @@ -67019,16 +67226,150 @@ entities: - type: Transform pos: -38.5,-38.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 17793 components: - type: Transform pos: -38.5,-40.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17794 components: - type: Transform pos: -38.5,-41.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 17829 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17830 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17831 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17832 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17833 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17834 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17835 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17836 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeTJunction entities: - uid: 2633 @@ -67037,17 +67378,23 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-37.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 2641 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-43.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 2659 components: - type: Transform pos: -38.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 3812 components: - type: Transform @@ -67083,13 +67430,15 @@ entities: pos: -18.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 7258 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-45.5 parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 9838 components: - type: Transform @@ -67097,7 +67446,7 @@ entities: pos: -7.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9839 components: - type: Transform @@ -67190,7 +67539,7 @@ entities: pos: -40.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9851 components: - type: Transform @@ -67220,7 +67569,7 @@ entities: pos: -13.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9855 components: - type: Transform @@ -67236,7 +67585,7 @@ entities: pos: 6.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9857 components: - type: Transform @@ -67267,7 +67616,7 @@ entities: pos: -7.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9861 components: - type: Transform @@ -67283,7 +67632,7 @@ entities: pos: -7.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9863 components: - type: Transform @@ -67291,7 +67640,7 @@ entities: pos: 12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9864 components: - type: Transform @@ -67338,7 +67687,7 @@ entities: pos: 16.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9870 components: - type: Transform @@ -67354,7 +67703,7 @@ entities: pos: 16.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9872 components: - type: Transform @@ -67368,7 +67717,7 @@ entities: pos: -22.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9874 components: - type: Transform @@ -67404,7 +67753,7 @@ entities: pos: -50.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9879 components: - type: Transform @@ -67416,7 +67765,7 @@ entities: pos: 13.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9881 components: - type: Transform @@ -67424,7 +67773,7 @@ entities: pos: 13.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9882 components: - type: Transform @@ -67446,7 +67795,7 @@ entities: pos: -25.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9885 components: - type: Transform @@ -67483,7 +67832,7 @@ entities: pos: 31.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9890 components: - type: Transform @@ -67523,7 +67872,7 @@ entities: pos: -5.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9895 components: - type: Transform @@ -67531,7 +67880,7 @@ entities: pos: -5.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9896 components: - type: Transform @@ -67555,7 +67904,7 @@ entities: pos: 29.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9899 components: - type: Transform @@ -67563,7 +67912,7 @@ entities: pos: -1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9900 components: - type: Transform @@ -67594,7 +67943,7 @@ entities: pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9904 components: - type: Transform @@ -67624,7 +67973,7 @@ entities: pos: 10.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9908 components: - type: Transform @@ -67632,7 +67981,7 @@ entities: pos: 10.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9909 components: - type: Transform @@ -67647,7 +67996,7 @@ entities: pos: -48.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9911 components: - type: Transform @@ -67679,7 +68028,7 @@ entities: pos: -16.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9915 components: - type: Transform @@ -67726,7 +68075,7 @@ entities: pos: -10.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9921 components: - type: Transform @@ -67734,7 +68083,7 @@ entities: pos: -7.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9922 components: - type: Transform @@ -67742,7 +68091,7 @@ entities: pos: -11.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9923 components: - type: Transform @@ -67757,14 +68106,14 @@ entities: pos: 30.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9925 components: - type: Transform pos: -12.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9926 components: - type: Transform @@ -67780,7 +68129,7 @@ entities: pos: -3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9928 components: - type: Transform @@ -67794,7 +68143,7 @@ entities: pos: -1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9930 components: - type: Transform @@ -67802,7 +68151,7 @@ entities: pos: 13.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9931 components: - type: Transform @@ -67810,7 +68159,7 @@ entities: pos: -7.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9932 components: - type: Transform @@ -67887,7 +68236,7 @@ entities: pos: 15.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9942 components: - type: Transform @@ -67895,7 +68244,7 @@ entities: pos: 34.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9943 components: - type: Transform @@ -67903,7 +68252,7 @@ entities: pos: 38.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9944 components: - type: Transform @@ -67911,7 +68260,7 @@ entities: pos: 38.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9945 components: - type: Transform @@ -67919,21 +68268,21 @@ entities: pos: 38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9946 components: - type: Transform pos: 12.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9947 components: - type: Transform pos: 24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9948 components: - type: Transform @@ -67941,7 +68290,7 @@ entities: pos: 24.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9949 components: - type: Transform @@ -67949,7 +68298,7 @@ entities: pos: 30.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9950 components: - type: Transform @@ -67964,7 +68313,7 @@ entities: pos: 24.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9952 components: - type: Transform @@ -67996,7 +68345,7 @@ entities: pos: 27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9956 components: - type: Transform @@ -68004,14 +68353,14 @@ entities: pos: 21.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9957 components: - type: Transform pos: 14.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9958 components: - type: Transform @@ -68035,7 +68384,7 @@ entities: pos: 32.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9961 components: - type: Transform @@ -68043,7 +68392,7 @@ entities: pos: 33.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9962 components: - type: Transform @@ -68051,7 +68400,7 @@ entities: pos: -7.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9963 components: - type: Transform @@ -68067,7 +68416,7 @@ entities: pos: 17.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9965 components: - type: Transform @@ -68075,7 +68424,7 @@ entities: pos: 5.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9966 components: - type: Transform @@ -68083,7 +68432,7 @@ entities: pos: 33.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9967 components: - type: Transform @@ -68091,7 +68440,7 @@ entities: pos: 39.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9968 components: - type: Transform @@ -68099,7 +68448,7 @@ entities: pos: 40.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9969 components: - type: Transform @@ -68138,7 +68487,7 @@ entities: pos: 31.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9974 components: - type: Transform @@ -68153,7 +68502,7 @@ entities: pos: 20.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9976 components: - type: Transform @@ -68161,7 +68510,7 @@ entities: pos: 20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9977 components: - type: Transform @@ -68192,7 +68541,7 @@ entities: pos: 14.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9981 components: - type: Transform @@ -68200,7 +68549,7 @@ entities: pos: 7.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9982 components: - type: Transform @@ -68232,7 +68581,7 @@ entities: pos: 13.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9986 components: - type: Transform @@ -68248,7 +68597,7 @@ entities: pos: 23.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9988 components: - type: Transform @@ -68256,7 +68605,7 @@ entities: pos: 26.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9989 components: - type: Transform @@ -68264,7 +68613,7 @@ entities: pos: 13.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9990 components: - type: Transform @@ -68272,7 +68621,7 @@ entities: pos: 26.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9991 components: - type: Transform @@ -68303,7 +68652,7 @@ entities: pos: 21.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9995 components: - type: Transform @@ -68311,14 +68660,14 @@ entities: pos: 19.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9996 components: - type: Transform pos: 18.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9997 components: - type: Transform @@ -68326,7 +68675,7 @@ entities: pos: 16.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 9998 components: - type: Transform @@ -68342,7 +68691,7 @@ entities: pos: 12.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10000 components: - type: Transform @@ -68365,7 +68714,7 @@ entities: pos: 13.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10003 components: - type: Transform @@ -68373,7 +68722,7 @@ entities: pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10004 components: - type: Transform @@ -68388,7 +68737,7 @@ entities: pos: 13.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10006 components: - type: Transform @@ -68396,7 +68745,7 @@ entities: pos: 18.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10007 components: - type: Transform @@ -68404,7 +68753,7 @@ entities: pos: 0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10008 components: - type: Transform @@ -68426,7 +68775,7 @@ entities: pos: 12.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10011 components: - type: Transform @@ -68442,7 +68791,7 @@ entities: pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10013 components: - type: Transform @@ -68457,7 +68806,7 @@ entities: pos: 12.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10015 components: - type: Transform @@ -68473,14 +68822,14 @@ entities: pos: 13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10017 components: - type: Transform pos: 11.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10018 components: - type: Transform @@ -68488,7 +68837,7 @@ entities: pos: 30.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10019 components: - type: Transform @@ -68520,14 +68869,14 @@ entities: pos: -3.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10023 components: - type: Transform pos: -8.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10024 components: - type: Transform @@ -68535,7 +68884,7 @@ entities: pos: -14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10025 components: - type: Transform @@ -68564,7 +68913,7 @@ entities: pos: -16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10029 components: - type: Transform @@ -68572,7 +68921,7 @@ entities: pos: -16.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10030 components: - type: Transform @@ -68586,7 +68935,7 @@ entities: pos: -22.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10032 components: - type: Transform @@ -68610,14 +68959,14 @@ entities: pos: -3.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10035 components: - type: Transform pos: -13.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10036 components: - type: Transform @@ -68625,7 +68974,7 @@ entities: pos: -14.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10037 components: - type: Transform @@ -68633,7 +68982,7 @@ entities: pos: -17.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10038 components: - type: Transform @@ -68663,7 +69012,7 @@ entities: pos: -22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10042 components: - type: Transform @@ -68671,7 +69020,7 @@ entities: pos: -25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10043 components: - type: Transform @@ -68695,7 +69044,7 @@ entities: pos: -25.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10046 components: - type: Transform @@ -68703,7 +69052,7 @@ entities: pos: -25.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10047 components: - type: Transform @@ -68719,7 +69068,7 @@ entities: pos: -24.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10049 components: - type: Transform @@ -68727,7 +69076,7 @@ entities: pos: -8.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10050 components: - type: Transform @@ -68743,7 +69092,7 @@ entities: pos: -8.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10052 components: - type: Transform @@ -68751,7 +69100,7 @@ entities: pos: -8.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10053 components: - type: Transform @@ -68759,7 +69108,7 @@ entities: pos: -42.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10054 components: - type: Transform @@ -68767,7 +69116,7 @@ entities: pos: -42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10055 components: - type: Transform @@ -68783,7 +69132,7 @@ entities: pos: -32.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10057 components: - type: Transform @@ -68806,35 +69155,35 @@ entities: pos: -28.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10060 components: - type: Transform pos: -39.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10061 components: - type: Transform pos: -37.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10062 components: - type: Transform pos: -37.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10063 components: - type: Transform pos: -52.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10064 components: - type: Transform @@ -68850,7 +69199,7 @@ entities: pos: -55.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10066 components: - type: Transform @@ -68858,7 +69207,7 @@ entities: pos: -55.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10067 components: - type: Transform @@ -68866,7 +69215,7 @@ entities: pos: -58.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10068 components: - type: Transform @@ -68874,7 +69223,7 @@ entities: pos: -55.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10069 components: - type: Transform @@ -68959,7 +69308,7 @@ entities: pos: -5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10080 components: - type: Transform @@ -68967,7 +69316,7 @@ entities: pos: -37.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10081 components: - type: Transform @@ -68975,7 +69324,7 @@ entities: pos: -16.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10082 components: - type: Transform @@ -68983,7 +69332,7 @@ entities: pos: -16.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10083 components: - type: Transform @@ -68999,7 +69348,7 @@ entities: pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10085 components: - type: Transform @@ -69007,7 +69356,7 @@ entities: pos: 12.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10086 components: - type: Transform @@ -69015,7 +69364,7 @@ entities: pos: -25.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10087 components: - type: Transform @@ -69038,7 +69387,7 @@ entities: pos: -32.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10090 components: - type: Transform @@ -69046,7 +69395,7 @@ entities: pos: -42.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10091 components: - type: Transform @@ -69082,7 +69431,7 @@ entities: pos: -28.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10096 components: - type: Transform @@ -69090,14 +69439,14 @@ entities: pos: -49.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10097 components: - type: Transform pos: -28.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10098 components: - type: Transform @@ -69144,7 +69493,7 @@ entities: pos: -40.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10104 components: - type: Transform @@ -69152,7 +69501,7 @@ entities: pos: -36.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10105 components: - type: Transform @@ -69168,7 +69517,7 @@ entities: pos: -27.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10107 components: - type: Transform @@ -69176,7 +69525,7 @@ entities: pos: -33.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10108 components: - type: Transform @@ -69199,7 +69548,7 @@ entities: pos: -44.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10111 components: - type: Transform @@ -69207,7 +69556,7 @@ entities: pos: -47.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10112 components: - type: Transform @@ -69215,7 +69564,7 @@ entities: pos: -40.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10113 components: - type: Transform @@ -69247,7 +69596,7 @@ entities: pos: -40.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10117 components: - type: Transform @@ -69255,7 +69604,7 @@ entities: pos: -40.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10118 components: - type: Transform @@ -69278,14 +69627,14 @@ entities: pos: -19.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10121 components: - type: Transform pos: -17.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10122 components: - type: Transform @@ -69293,7 +69642,7 @@ entities: pos: -20.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10123 components: - type: Transform @@ -69317,7 +69666,7 @@ entities: pos: -15.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10126 components: - type: Transform @@ -69333,14 +69682,14 @@ entities: pos: 0.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10128 components: - type: Transform pos: -47.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10129 components: - type: Transform @@ -69362,7 +69711,7 @@ entities: pos: 3.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10132 components: - type: Transform @@ -69370,7 +69719,7 @@ entities: pos: -5.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10133 components: - type: Transform @@ -69394,7 +69743,7 @@ entities: pos: -5.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10136 components: - type: Transform @@ -69402,7 +69751,7 @@ entities: pos: -5.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10137 components: - type: Transform @@ -69424,14 +69773,14 @@ entities: pos: -46.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10140 components: - type: Transform pos: -28.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10141 components: - type: Transform @@ -69484,7 +69833,7 @@ entities: pos: -39.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10148 components: - type: Transform @@ -69549,8 +69898,8 @@ entities: - uid: 10156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 + rot: -1.5707963267948966 rad + pos: -16.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' @@ -69585,7 +69934,7 @@ entities: pos: -3.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10161 components: - type: Transform @@ -69600,7 +69949,7 @@ entities: pos: 11.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10163 components: - type: Transform @@ -69616,7 +69965,7 @@ entities: pos: 11.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10165 components: - type: Transform @@ -69688,11 +70037,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00008BFF' + - uid: 12008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17495 components: - type: Transform pos: -36.5,-43.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17514 components: - type: Transform @@ -69700,13 +70059,15 @@ entities: pos: -26.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17628 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-43.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17681 components: - type: Transform @@ -69721,6 +70082,8 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: GasPort entities: - uid: 10174 @@ -69765,7 +70128,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10180 components: - type: Transform @@ -69785,7 +70148,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10182 components: - type: Transform @@ -69828,7 +70191,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10187 components: - type: Transform @@ -69967,7 +70330,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10198 components: - type: MetaData @@ -69981,7 +70344,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#00008BFF' + color: '#ADD8E6FF' - uid: 10199 components: - type: MetaData @@ -70122,7 +70485,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 17520 components: - type: Transform @@ -70131,6 +70494,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 17629 components: - type: MetaData @@ -70140,6 +70505,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17630 components: - type: MetaData @@ -70150,6 +70517,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17693 components: - type: Transform @@ -70157,6 +70526,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 17790 components: - type: Transform @@ -70165,6 +70536,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 17791 components: - type: Transform @@ -70173,6 +70546,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: GasRecycler entities: - uid: 10210 @@ -70214,6 +70589,8 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-44.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - type: AtmosDevice joinedGrid: 2 - uid: 17634 @@ -70221,6 +70598,8 @@ entities: - type: Transform pos: -37.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - type: AtmosDevice joinedGrid: 2 - proto: GasThermoMachineFreezerEnabled @@ -70257,6 +70636,8 @@ entities: open: False - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 3893 components: - type: MetaData @@ -70390,6 +70771,8 @@ entities: open: False - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17682 components: - type: MetaData @@ -70413,6 +70796,8 @@ entities: open: False - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: GasVentPump entities: - uid: 2584 @@ -70425,6 +70810,8 @@ entities: - 17544 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 2674 components: - type: Transform @@ -70435,6 +70822,8 @@ entities: - 17544 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 3906 components: - type: Transform @@ -70445,6 +70834,8 @@ entities: - 17544 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 10223 components: - type: Transform @@ -72247,6 +72638,20 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#00008BFF' + - uid: 17828 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 17838 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - proto: GasVentScrubber entities: - uid: 2675 @@ -72297,7 +72702,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10410 components: - type: Transform @@ -72307,7 +72712,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10411 components: - type: Transform @@ -72317,7 +72722,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10412 components: - type: Transform @@ -72327,7 +72732,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10413 components: - type: Transform @@ -72337,7 +72742,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10414 components: - type: Transform @@ -72347,7 +72752,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10415 components: - type: Transform @@ -72357,7 +72762,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10416 components: - type: Transform @@ -72367,7 +72772,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10417 components: - type: Transform @@ -72377,7 +72782,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10418 components: - type: Transform @@ -72387,7 +72792,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10419 components: - type: Transform @@ -72397,7 +72802,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10420 components: - type: Transform @@ -72406,7 +72811,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10421 components: - type: Transform @@ -72416,7 +72821,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10422 components: - type: Transform @@ -72426,7 +72831,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10423 components: - type: Transform @@ -72435,7 +72840,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10424 components: - type: Transform @@ -72444,7 +72849,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10425 components: - type: Transform @@ -72454,7 +72859,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10426 components: - type: Transform @@ -72464,7 +72869,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10427 components: - type: Transform @@ -72473,7 +72878,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10428 components: - type: Transform @@ -72483,7 +72888,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10429 components: - type: Transform @@ -72493,7 +72898,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10430 components: - type: Transform @@ -72502,7 +72907,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10431 components: - type: Transform @@ -72512,7 +72917,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10432 components: - type: Transform @@ -72522,7 +72927,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10433 components: - type: Transform @@ -72532,7 +72937,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10434 components: - type: Transform @@ -72541,7 +72946,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10435 components: - type: Transform @@ -72551,7 +72956,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10436 components: - type: Transform @@ -72561,7 +72966,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10437 components: - type: Transform @@ -72571,7 +72976,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10438 components: - type: Transform @@ -72581,7 +72986,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10439 components: - type: Transform @@ -72591,7 +72996,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10440 components: - type: Transform @@ -72601,7 +73006,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10441 components: - type: Transform @@ -72611,7 +73016,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10442 components: - type: Transform @@ -72620,7 +73025,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10443 components: - type: Transform @@ -72630,7 +73035,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10444 components: - type: Transform @@ -72640,7 +73045,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10445 components: - type: Transform @@ -72650,7 +73055,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10446 components: - type: Transform @@ -72659,7 +73064,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10447 components: - type: Transform @@ -72669,7 +73074,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10448 components: - type: Transform @@ -72678,7 +73083,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10449 components: - type: Transform @@ -72687,7 +73092,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10450 components: - type: Transform @@ -72697,7 +73102,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10451 components: - type: Transform @@ -72707,7 +73112,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10452 components: - type: Transform @@ -72717,7 +73122,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10453 components: - type: Transform @@ -72726,7 +73131,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10454 components: - type: Transform @@ -72736,7 +73141,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10455 components: - type: Transform @@ -72745,7 +73150,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10456 components: - type: Transform @@ -72755,7 +73160,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10457 components: - type: Transform @@ -72764,7 +73169,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10458 components: - type: Transform @@ -72773,7 +73178,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10459 components: - type: Transform @@ -72783,7 +73188,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10460 components: - type: Transform @@ -72793,7 +73198,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10461 components: - type: Transform @@ -72803,7 +73208,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10462 components: - type: Transform @@ -72813,7 +73218,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10463 components: - type: Transform @@ -72823,7 +73228,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10464 components: - type: Transform @@ -72833,7 +73238,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10465 components: - type: Transform @@ -72842,7 +73247,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10466 components: - type: Transform @@ -72852,7 +73257,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10467 components: - type: Transform @@ -72862,7 +73267,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10468 components: - type: Transform @@ -72871,7 +73276,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10469 components: - type: Transform @@ -72881,7 +73286,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10470 components: - type: Transform @@ -72890,7 +73295,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10471 components: - type: Transform @@ -72899,7 +73304,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10472 components: - type: Transform @@ -72909,7 +73314,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10473 components: - type: Transform @@ -72919,7 +73324,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10474 components: - type: Transform @@ -72929,7 +73334,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10475 components: - type: Transform @@ -72939,7 +73344,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10476 components: - type: Transform @@ -72948,7 +73353,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10477 components: - type: Transform @@ -72958,7 +73363,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10478 components: - type: Transform @@ -72968,7 +73373,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10479 components: - type: Transform @@ -72977,7 +73382,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10480 components: - type: Transform @@ -72987,7 +73392,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10481 components: - type: Transform @@ -72997,7 +73402,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10482 components: - type: Transform @@ -73006,7 +73411,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10483 components: - type: Transform @@ -73016,7 +73421,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10484 components: - type: Transform @@ -73025,7 +73430,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10485 components: - type: Transform @@ -73034,7 +73439,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10486 components: - type: Transform @@ -73044,7 +73449,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10487 components: - type: Transform @@ -73054,7 +73459,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10488 components: - type: Transform @@ -73064,7 +73469,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10489 components: - type: Transform @@ -73074,7 +73479,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10490 components: - type: Transform @@ -73083,7 +73488,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10491 components: - type: Transform @@ -73093,7 +73498,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10492 components: - type: Transform @@ -73103,7 +73508,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10493 components: - type: Transform @@ -73112,7 +73517,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10494 components: - type: Transform @@ -73122,7 +73527,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10495 components: - type: Transform @@ -73131,7 +73536,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10496 components: - type: Transform @@ -73141,7 +73546,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10497 components: - type: Transform @@ -73151,7 +73556,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10498 components: - type: Transform @@ -73161,7 +73566,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10499 components: - type: Transform @@ -73171,7 +73576,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10500 components: - type: Transform @@ -73181,7 +73586,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10501 components: - type: Transform @@ -73191,7 +73596,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10502 components: - type: Transform @@ -73201,7 +73606,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10503 components: - type: Transform @@ -73211,7 +73616,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10504 components: - type: Transform @@ -73221,7 +73626,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10505 components: - type: Transform @@ -73230,7 +73635,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10506 components: - type: Transform @@ -73239,7 +73644,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10507 components: - type: Transform @@ -73249,7 +73654,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10508 components: - type: Transform @@ -73258,7 +73663,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10509 components: - type: Transform @@ -73268,7 +73673,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10510 components: - type: Transform @@ -73278,7 +73683,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10511 components: - type: Transform @@ -73288,7 +73693,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10512 components: - type: Transform @@ -73298,7 +73703,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10513 components: - type: Transform @@ -73308,7 +73713,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10514 components: - type: Transform @@ -73318,7 +73723,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10515 components: - type: Transform @@ -73327,7 +73732,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10516 components: - type: Transform @@ -73337,7 +73742,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10517 components: - type: Transform @@ -73346,7 +73751,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10518 components: - type: Transform @@ -73355,7 +73760,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10519 components: - type: Transform @@ -73364,7 +73769,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10520 components: - type: Transform @@ -73374,7 +73779,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10521 components: - type: Transform @@ -73384,7 +73789,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10522 components: - type: Transform @@ -73394,7 +73799,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10523 components: - type: Transform @@ -73404,7 +73809,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10524 components: - type: Transform @@ -73414,7 +73819,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10525 components: - type: Transform @@ -73424,7 +73829,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10526 components: - type: Transform @@ -73434,7 +73839,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10527 components: - type: Transform @@ -73443,7 +73848,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10528 components: - type: Transform @@ -73453,7 +73858,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10529 components: - type: Transform @@ -73463,7 +73868,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10530 components: - type: Transform @@ -73473,7 +73878,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10531 components: - type: Transform @@ -73483,7 +73888,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10532 components: - type: Transform @@ -73493,7 +73898,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10533 components: - type: Transform @@ -73503,7 +73908,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10534 components: - type: Transform @@ -73512,7 +73917,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10535 components: - type: Transform @@ -73521,7 +73926,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10536 components: - type: Transform @@ -73531,7 +73936,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10537 components: - type: Transform @@ -73540,7 +73945,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10538 components: - type: Transform @@ -73550,7 +73955,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10539 components: - type: Transform @@ -73560,7 +73965,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10540 components: - type: Transform @@ -73569,7 +73974,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10541 components: - type: Transform @@ -73579,7 +73984,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10542 components: - type: Transform @@ -73588,7 +73993,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10543 components: - type: Transform @@ -73597,7 +74002,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10544 components: - type: Transform @@ -73606,7 +74011,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10545 components: - type: Transform @@ -73615,7 +74020,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10546 components: - type: Transform @@ -73625,7 +74030,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10547 components: - type: Transform @@ -73634,7 +74039,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10548 components: - type: Transform @@ -73643,7 +74048,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10549 components: - type: Transform @@ -73652,7 +74057,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10550 components: - type: Transform @@ -73661,7 +74066,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10551 components: - type: Transform @@ -73670,7 +74075,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10552 components: - type: Transform @@ -73680,7 +74085,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10553 components: - type: Transform @@ -73690,7 +74095,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10554 components: - type: Transform @@ -73699,7 +74104,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10555 components: - type: Transform @@ -73709,7 +74114,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10556 components: - type: Transform @@ -73718,7 +74123,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10557 components: - type: Transform @@ -73728,7 +74133,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10558 components: - type: Transform @@ -73737,7 +74142,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10559 components: - type: Transform @@ -73747,7 +74152,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10561 components: - type: Transform @@ -73756,7 +74161,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10562 components: - type: Transform @@ -73766,7 +74171,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10563 components: - type: Transform @@ -73776,7 +74181,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10564 components: - type: Transform @@ -73786,7 +74191,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10565 components: - type: Transform @@ -73796,7 +74201,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10566 components: - type: Transform @@ -73806,7 +74211,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10567 components: - type: Transform @@ -73816,7 +74221,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10568 components: - type: Transform @@ -73826,7 +74231,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10569 components: - type: Transform @@ -73836,7 +74241,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10570 components: - type: Transform @@ -73846,7 +74251,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10571 components: - type: Transform @@ -73856,7 +74261,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10572 components: - type: Transform @@ -73865,7 +74270,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10573 components: - type: Transform @@ -73884,7 +74289,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10575 components: - type: Transform @@ -73894,7 +74299,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10576 components: - type: Transform @@ -73904,7 +74309,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10577 components: - type: Transform @@ -73914,7 +74319,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10578 components: - type: Transform @@ -73924,7 +74329,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10579 components: - type: Transform @@ -73933,7 +74338,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10580 components: - type: Transform @@ -73943,7 +74348,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10581 components: - type: Transform @@ -73953,7 +74358,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10582 components: - type: Transform @@ -73963,7 +74368,7 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF5349FF' + color: '#FF0000FF' - uid: 10583 components: - type: Transform @@ -73994,6 +74399,33 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#800080FF' + - uid: 17827 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 17838 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-43.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid + deviceLists: + - 17838 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasVolumePump entities: - uid: 10586 @@ -74088,6 +74520,11 @@ entities: - type: Transform pos: -20.301476,-28.461052 parent: 2 + - uid: 13158 + components: + - type: Transform + pos: -18.306057,-45.483337 + parent: 2 - uid: 17776 components: - type: MetaData @@ -74238,6 +74675,11 @@ entities: parent: 2 - proto: Grille entities: + - uid: 2622 + components: + - type: Transform + pos: -46.5,-42.5 + parent: 2 - uid: 2629 components: - type: Transform @@ -74268,6 +74710,16 @@ entities: - type: Transform pos: -36.5,-41.5 parent: 2 + - uid: 3917 + components: + - type: Transform + pos: -46.5,-35.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -46.5,-36.5 + parent: 2 - uid: 5822 components: - type: Transform @@ -79543,6 +79995,40 @@ entities: - type: Transform pos: -28.5,48.5 parent: 2 + - uid: 17842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-39.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-42.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-37.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: -46.5,-38.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: -46.5,-41.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-35.5 + parent: 2 - proto: GunSafe entities: - uid: 11626 @@ -79578,6 +80064,18 @@ entities: - type: Transform pos: -43.5,-0.5 parent: 2 +- proto: HandheldStationMap + entities: + - uid: 6236 + components: + - type: Transform + pos: -10.483878,-30.367462 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: -20.39384,-25.21746 + parent: 2 - proto: HandLabeler entities: - uid: 11631 @@ -79622,6 +80120,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17475 components: - type: Transform @@ -79630,6 +80130,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17485 components: - type: Transform @@ -79638,6 +80140,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17486 components: - type: Transform @@ -79646,6 +80150,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17487 components: - type: Transform @@ -79654,6 +80160,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17488 components: - type: Transform @@ -79662,6 +80170,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17489 components: - type: Transform @@ -79670,6 +80180,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17490 components: - type: Transform @@ -79678,6 +80190,8 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: HighSecArmoryLocked entities: - uid: 11637 @@ -79742,18 +80256,6 @@ entities: - type: Transform pos: -1.5,19.5 parent: 2 -- proto: HighSecDoor - entities: - - uid: 2636 - components: - - type: Transform - pos: -29.5,-37.5 - parent: 2 - - uid: 12742 - components: - - type: Transform - pos: -27.5,-37.5 - parent: 2 - proto: HolofanProjector entities: - uid: 11649 @@ -81547,15 +82049,15 @@ entities: - type: Transform pos: -10.583715,-37.391212 parent: 2 - - uid: 17662 + - uid: 13156 components: - type: Transform - pos: -21.45905,-38.443382 + pos: -22.78128,-36.23169 parent: 2 - - uid: 17663 + - uid: 13157 components: - type: Transform - pos: -21.021551,-38.39823 + pos: -22.489613,-36.45059 parent: 2 - proto: MedkitToxinFilled entities: @@ -81677,10 +82179,17 @@ entities: parent: 2 - proto: NitrogenCanister entities: - - uid: 3164 + - uid: 57 components: - type: Transform - pos: -11.5,-42.5 + pos: -22.5,-23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6090 + components: + - type: Transform + pos: -13.5,-43.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -81700,31 +82209,24 @@ entities: joinedGrid: 2 - proto: NitrousOxideCanister entities: - - uid: 6232 - components: - - type: Transform - pos: -10.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 6233 + - uid: 11950 components: - type: Transform - pos: -10.5,-42.5 + pos: 1.5,-35.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 11950 + - uid: 11951 components: - type: Transform - pos: 1.5,-35.5 + pos: -40.5,-6.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 11951 + - uid: 12742 components: - type: Transform - pos: -40.5,-6.5 + pos: -12.5,-45.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -81803,10 +82305,10 @@ entities: parent: 2 - proto: OxygenCanister entities: - - uid: 6243 + - uid: 54 components: - type: Transform - pos: -11.5,-43.5 + pos: -23.5,-23.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -81838,6 +82340,13 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - uid: 13022 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: PaintingAmogusTriptych entities: - uid: 11966 @@ -81921,6 +82430,64 @@ entities: Thank you for playing on Edge! - Colin_Tel + - uid: 13160 + components: + - type: Transform + pos: -21.463436,-38.470703 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >2- + Supermatter and You + + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + + 1. The supermatter is constantly converting nitrogen into oxygen and plasma. ANYTHING that touches the supermatter will be turned into ash instantaneously. (including you) + + + 2. Once the supermatter is active, it will output radiation and heated gases (specifically O2 and Plasma) by consuming any surrounding nitrogen. Supermatter *will* ignite gases around it, so be cautious of what gases are near it. + + + 3. The supermatter's radiation output is directly related to the temperature and pressure of its surroundings. This means the following... + + + low temperature = low pressure = low radiation output + + high temperature = high pressure = high radiation output + + + You must exercise caution when deciding to increase the temperature around the supermatter, as it can quickly spiral out of control. + + + 4. The integrity of the supermatter will degrade if it is too hot and too pressurized. The supermatter will alert engineers that its integrity is falling, and prompt action is required to return it to a safe state, where it will gradually return to 100% integrity by itself. + + + 5. In the event that the Supermatter has reached 0% integrity, catastrophic failure is certain, and you have seconds to react. It is advised that anyone near the supermatter quickly make their way as far away from it as possible. Do not walk, run instead; alert command as soon as possible so that they may secure a route of evacuation for survivors. + - uid: 17850 + components: + - type: Transform + pos: -26.685799,-38.90153 + parent: 2 + - type: Paper + content: >- + To whom it may concern, + + + For this air alarm: + + + Turn off "auto mode" + + Set scrubbers to "siphon" and all gases + + Set vents to Internal bound at max pressure + + + DON'T TOUCH THE CRYSTAL!! - proto: PaperBin10 entities: - uid: 11974 @@ -82436,13 +83003,6 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 - - uid: 6236 - components: - - type: Transform - pos: -12.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - uid: 12074 components: - type: Transform @@ -82464,6 +83024,11 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,1.5 parent: 2 + - uid: 13138 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 - proto: PlasmaTankFilled entities: - uid: 17769 @@ -82554,83 +83119,6 @@ entities: - type: Transform pos: 15.5,-7.5 parent: 2 -- proto: PlastitaniumWindow - entities: - - uid: 456 - components: - - type: Transform - pos: -31.5,-36.5 - parent: 2 - - uid: 3162 - components: - - type: Transform - pos: -33.5,-37.5 - parent: 2 - - uid: 3212 - components: - - type: Transform - pos: -28.5,-38.5 - parent: 2 - - uid: 3917 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 8135 - components: - - type: Transform - pos: -33.5,-39.5 - parent: 2 - - uid: 9765 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 2 - - uid: 12007 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 12008 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 12009 - components: - - type: Transform - pos: -31.5,-40.5 - parent: 2 - - uid: 12010 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 12012 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 2 - - uid: 12737 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 2 - - uid: 12743 - components: - - type: Transform - pos: -29.5,-39.5 - parent: 2 - - uid: 17494 - components: - - type: Transform - pos: -29.5,-40.5 - parent: 2 - - uid: 17778 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 2 - proto: PlushieBee entities: - uid: 12085 @@ -82708,6 +83196,16 @@ entities: - type: Transform pos: -15.5,18.5 parent: 2 + - uid: 13155 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 - proto: PortableGeneratorPacman entities: - uid: 12098 @@ -83019,6 +83517,13 @@ entities: - type: Transform pos: -5.5,-27.5 parent: 2 +- proto: PosterLegitSafetyInternals + entities: + - uid: 6240 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 - proto: PosterLegitSafetyMothBoH entities: - uid: 12151 @@ -83397,6 +83902,11 @@ entities: - type: Transform pos: 21.5,8.5 parent: 2 + - uid: 17841 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 - proto: Poweredlight entities: - uid: 10626 @@ -85607,6 +86117,11 @@ entities: - type: Transform pos: 8.5,-30.5 parent: 2 + - uid: 17816 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 - proto: PoweredSmallLightMaintenanceRed entities: - uid: 12595 @@ -86388,11 +86903,6 @@ entities: - type: Transform pos: -20.5,-25.5 parent: 2 - - uid: 12724 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - uid: 12725 components: - type: Transform @@ -86523,16 +87033,6 @@ entities: - type: Transform pos: -34.5,-36.5 parent: 2 - - uid: 17697 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 2 - - uid: 17701 - components: - - type: Transform - pos: -29.5,-42.5 - parent: 2 - uid: 17760 components: - type: Transform @@ -86543,26 +87043,6 @@ entities: - type: Transform pos: -28.5,-40.5 parent: 2 - - uid: 17762 - components: - - type: Transform - pos: -35.5,-40.5 - parent: 2 - - uid: 17763 - components: - - type: Transform - pos: -35.5,-36.5 - parent: 2 - - uid: 17764 - components: - - type: Transform - pos: -33.5,-34.5 - parent: 2 - - uid: 17765 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - proto: RadioHandheld entities: - uid: 12744 @@ -87205,6 +87685,16 @@ entities: - type: Transform pos: 16.5,-13.5 parent: 2 + - uid: 17804 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 - proto: RandomPosterContraband entities: - uid: 12855 @@ -88021,6 +88511,21 @@ entities: - 14706 - proto: ReinforcedGirder entities: + - uid: 2623 + components: + - type: Transform + pos: -47.5,-41.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 - uid: 5696 components: - type: Transform @@ -88091,11 +88596,6 @@ entities: - type: Transform pos: -29.5,-48.5 parent: 2 - - uid: 13022 - components: - - type: Transform - pos: -41.5,-41.5 - parent: 2 - uid: 13023 components: - type: Transform @@ -88581,6 +89081,16 @@ entities: - type: Transform pos: 20.5,-49.5 parent: 2 + - uid: 17805 + components: + - type: Transform + pos: -47.5,-36.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + pos: -47.5,-38.5 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 3922 @@ -88669,60 +89179,6 @@ entities: - type: Transform pos: -30.5,-29.5 parent: 2 - - uid: 13135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-33.5 - parent: 2 - - uid: 13136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 2 - - uid: 13137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-43.5 - parent: 2 - - uid: 13138 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-37.5 - parent: 2 - - uid: 13139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-39.5 - parent: 2 - - uid: 13140 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-47.5 - parent: 2 - - uid: 13141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-47.5 - parent: 2 - - uid: 13142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-47.5 - parent: 2 - - uid: 13143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-47.5 - parent: 2 - uid: 13144 components: - type: Transform @@ -88743,83 +89199,11 @@ entities: - type: Transform pos: -23.5,-43.5 parent: 2 - - uid: 13148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-47.5 - parent: 2 - - uid: 13149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-47.5 - parent: 2 - - uid: 13150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-47.5 - parent: 2 - - uid: 13151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-47.5 - parent: 2 - - uid: 13152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-38.5 - parent: 2 - - uid: 13153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-42.5 - parent: 2 - - uid: 13154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-44.5 - parent: 2 - - uid: 13155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 2 - - uid: 13156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-32.5 - parent: 2 - - uid: 13157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-32.5 - parent: 2 - - uid: 13158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-34.5 - parent: 2 - uid: 13159 components: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 13160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 2 - uid: 13161 components: - type: Transform @@ -88945,6 +89329,76 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 2 + - uid: 13136 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 - uid: 13170 components: - type: Transform @@ -90393,6 +90847,101 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-46.5 parent: 2 + - uid: 13739 + components: + - type: Transform + pos: -40.5,-33.5 + parent: 2 + - uid: 14676 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 15213 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 15224 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 15279 + components: + - type: Transform + pos: -36.5,-47.5 + parent: 2 + - uid: 17494 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 17515 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 17600 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + pos: -40.5,-42.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 17606 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 13453 @@ -90943,6 +91492,15 @@ entities: - type: Transform pos: 39.844673,5.9532356 parent: 2 +- proto: SheetRPGlass + entities: + - uid: 17778 + components: + - type: Transform + pos: -54.490105,37.557735 + parent: 2 + - type: Stack + count: 5 - proto: SheetSteel entities: - uid: 13528 @@ -91198,6 +91756,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17814 - uid: 12740 components: - type: Transform @@ -91206,6 +91765,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17814 - uid: 13562 components: - type: Transform @@ -91262,6 +91822,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17814 - uid: 17508 components: - type: Transform @@ -91270,6 +91831,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17814 - uid: 17509 components: - type: Transform @@ -91278,6 +91840,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17814 - uid: 17588 components: - type: Transform @@ -91286,6 +91849,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17812 - uid: 17589 components: - type: Transform @@ -91294,6 +91858,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17812 - uid: 17590 components: - type: Transform @@ -91302,6 +91867,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17812 - uid: 17591 components: - type: Transform @@ -91310,6 +91876,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17812 - uid: 17592 components: - type: Transform @@ -91318,6 +91885,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17812 - uid: 17593 components: - type: Transform @@ -91327,6 +91895,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17813 - uid: 17594 components: - type: Transform @@ -91336,6 +91905,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17813 - uid: 17595 components: - type: Transform @@ -91345,6 +91915,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17813 - uid: 17596 components: - type: Transform @@ -91354,6 +91925,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17813 - uid: 17597 components: - type: Transform @@ -91363,6 +91935,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17813 - uid: 17766 components: - type: Transform @@ -91372,6 +91945,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17815 - uid: 17767 components: - type: Transform @@ -91381,6 +91955,7 @@ entities: - type: DeviceLinkSink links: - 17654 + - 17815 - proto: ShuttersRadiationOpen entities: - uid: 13568 @@ -91947,6 +92522,88 @@ entities: 13561: - On: Close - Off: Open + - uid: 17812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17588: + - On: Open + - Off: Close + 17589: + - On: Open + - Off: Close + 17590: + - On: Open + - Off: Close + 17591: + - On: Open + - Off: Close + 17592: + - On: Open + - Off: Close + - uid: 17813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17597: + - On: Open + - Off: Close + 17596: + - On: Open + - Off: Close + 17595: + - On: Open + - Off: Close + 17594: + - On: Open + - Off: Close + 17593: + - On: Open + - Off: Close + - uid: 17814 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12740: + - On: Open + - Off: Close + 3898: + - On: Open + - Off: Close + 17509: + - On: Open + - Off: Close + 17505: + - On: Open + - Off: Close + 17508: + - On: Open + - Off: Close + - uid: 17815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17766: + - On: Open + - Off: Close + 17767: + - On: Open + - Off: Close - proto: SignAnomaly entities: - uid: 13611 @@ -92608,16 +93265,6 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 13712 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 2 - - uid: 13713 - components: - - type: Transform - pos: -20.5,-45.5 - parent: 2 - uid: 13714 components: - type: MetaData @@ -92771,16 +93418,6 @@ entities: - type: Transform pos: -29.5,-25.5 parent: 2 - - uid: 13738 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 2 - - uid: 13739 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 2 - uid: 13740 components: - type: Transform @@ -92793,6 +93430,16 @@ entities: rot: 3.141592653589793 rad pos: -22.5,-45.5 parent: 2 + - uid: 17663 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 - proto: SignRobo entities: - uid: 13741 @@ -93033,14 +93680,14 @@ entities: - uid: 13779 components: - type: MetaData - name: Singularity SMES 2 + name: supermatter SMES 2 - type: Transform pos: -20.5,-43.5 parent: 2 - uid: 13780 components: - type: MetaData - name: Singularity SMES 1 + name: supermatter SMES 1 - type: Transform pos: -20.5,-33.5 parent: 2 @@ -94724,6 +95371,11 @@ entities: parent: 2 - proto: StationMap entities: + - uid: 6233 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 - uid: 14079 components: - type: Transform @@ -95165,6 +95817,20 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - uid: 12743 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 13135 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - uid: 14153 components: - type: Transform @@ -95193,6 +95859,20 @@ entities: parent: 2 - type: AtmosDevice joinedGrid: 2 + - uid: 17839 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17840 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 - proto: SubstationBasic entities: - uid: 14158 @@ -95296,41 +95976,241 @@ entities: - type: Transform pos: -25.5,-25.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17666 - uid: 14173 components: - type: Transform pos: -24.5,-21.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17668 - uid: 14174 components: - type: Transform pos: -25.5,-21.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17697 - uid: 14175 components: - type: Transform pos: -24.5,-25.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17701 - uid: 14176 components: - type: Transform pos: -22.5,-25.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17762 - uid: 14177 components: - type: Transform pos: -23.5,-25.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17763 - uid: 14178 components: - type: Transform pos: -23.5,-21.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17764 - uid: 14179 components: - type: Transform pos: -22.5,-21.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17765 - uid: 14180 components: - type: Transform @@ -95565,7 +96445,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: singularity - south + id: supermatter - south - uid: 14205 components: - type: Transform @@ -95631,7 +96511,7 @@ entities: setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: singularity - north + id: supermatter - north - uid: 14211 components: - type: Transform @@ -95654,6 +96534,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: canisters + - uid: 17803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: supermatter - radiators - proto: SurveillanceCameraGeneral entities: - uid: 14213 @@ -96380,12 +97271,22 @@ entities: id: EDG TV - proto: Table entities: + - uid: 4430 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 - uid: 7612 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,16.5 parent: 2 + - uid: 12724 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 - uid: 14278 components: - type: Transform @@ -98616,6 +99517,16 @@ entities: parent: 2 - proto: ToolboxEmergencyFilled entities: + - uid: 6093 + components: + - type: Transform + pos: -23.50931,-40.41948 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -20.58134,-25.603144 + parent: 2 - uid: 14661 components: - type: Transform @@ -98697,11 +99608,6 @@ entities: - type: Transform pos: -41.22711,-6.611117 parent: 2 - - uid: 14676 - components: - - type: Transform - pos: -49.65051,32.736427 - parent: 2 - uid: 14677 components: - type: Transform @@ -98717,6 +99623,11 @@ entities: - type: Transform pos: 26.377935,-21.641388 parent: 2 + - uid: 17848 + components: + - type: Transform + pos: -54.135937,37.182476 + parent: 2 - proto: ToyAi entities: - uid: 14680 @@ -98812,6 +99723,13 @@ entities: - type: Transform pos: 7.7041554,-16.06605 parent: 2 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 17852 + components: + - type: Transform + pos: -23.613476,-36.314056 + parent: 2 - proto: ToyFigurineEngineer entities: - uid: 14696 @@ -98819,6 +99737,13 @@ entities: - type: Transform pos: 2.2488086,-9.017249 parent: 2 +- proto: ToyFigurineSlime + entities: + - uid: 17853 + components: + - type: Transform + pos: -23.248894,-36.251144 + parent: 2 - proto: ToyNuke entities: - uid: 14697 @@ -99209,17 +100134,19 @@ entities: - type: Transform pos: 28.5,-11.5 parent: 2 -- proto: VendingMachineDonut +- proto: VendingMachineDiscount entities: - - uid: 14740 + - uid: 17800 components: - type: Transform - pos: -25.5,-2.5 + pos: -51.5,-11.5 parent: 2 - - uid: 14741 +- proto: VendingMachineDonut + entities: + - uid: 14740 components: - type: Transform - pos: -51.5,-11.5 + pos: -25.5,-2.5 parent: 2 - proto: VendingMachineEngiDrobe entities: @@ -99481,6 +100408,36 @@ entities: - type: Transform pos: -27.5,-41.5 parent: 2 + - uid: 4432 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 - uid: 10710 components: - type: Transform @@ -99506,6 +100463,11 @@ entities: - type: Transform pos: 8.5,-25.5 parent: 2 + - uid: 13738 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 - uid: 14778 components: - type: Transform @@ -101727,18 +102689,6 @@ entities: - type: Transform pos: -38.5,-29.5 parent: 2 - - uid: 15203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-29.5 - parent: 2 - - uid: 15204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-29.5 - parent: 2 - uid: 15205 components: - type: Transform @@ -101774,29 +102724,11 @@ entities: - type: Transform pos: -25.5,-47.5 parent: 2 - - uid: 15211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-29.5 - parent: 2 - uid: 15212 components: - type: Transform pos: 13.5,13.5 parent: 2 - - uid: 15213 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-29.5 - parent: 2 - - uid: 15214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-29.5 - parent: 2 - uid: 15215 components: - type: Transform @@ -101848,12 +102780,6 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 - - uid: 15224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-29.5 - parent: 2 - uid: 15225 components: - type: Transform @@ -102139,12 +103065,6 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-29.5 parent: 2 - - uid: 15279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-29.5 - parent: 2 - uid: 15280 components: - type: Transform @@ -106522,6 +107442,11 @@ entities: - type: Transform pos: -29.5,-38.5 parent: 2 + - uid: 17802 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 - proto: WallRiveted entities: - uid: 16104 @@ -111773,6 +112698,16 @@ entities: - type: Transform pos: 13.5,-32.5 parent: 2 + - uid: 17611 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 - proto: WindowDirectional entities: - uid: 17089 From bf337fe45d818f04967b046469af5a309ff37281 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 26 Apr 2024 19:04:49 -0400 Subject: [PATCH 06/38] Update edge.yml --- Resources/Maps/edge.yml | 4777 +++++++++++++++++++-------------------- 1 file changed, 2384 insertions(+), 2393 deletions(-) diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 0d3a0ca5587..60b3c8fee2a 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -373,7 +373,7 @@ entities: id: Arrows decals: 89: 21,-2 - 2719: -27,-39 + 2688: -27,-39 - node: color: '#FFFFFFFF' id: Bot @@ -384,8 +384,8 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 2357: 21,-25 - 2358: 22,-25 + 2344: 21,-25 + 2345: 22,-25 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -402,19 +402,19 @@ entities: id: BotLeft decals: 0: 15,-5 - 1021: 15,-4 - 1374: -50,-11 - 1375: -49,-11 - 1376: -48,-11 - 2604: -1,-36 - 2605: -1,-37 - 2606: 0,-37 - 2607: 0,-36 - 2608: 0,-36 - 2609: 1,-36 - 2610: 1,-37 - 2611: 2,-37 - 2612: 2,-36 + 1008: 15,-4 + 1361: -50,-11 + 1362: -49,-11 + 1363: -48,-11 + 2591: -1,-36 + 2592: -1,-37 + 2593: 0,-37 + 2594: 0,-36 + 2595: 0,-36 + 2596: 1,-36 + 2597: 1,-37 + 2598: 2,-37 + 2599: 2,-36 - node: color: '#FFFFFF93' id: BotLeftGreyscale @@ -425,8 +425,8 @@ entities: color: '#FFFFFFFF' id: BotLeftGreyscale decals: - 2664: -1,-22 - 2665: -2,-22 + 2651: -1,-22 + 2652: -2,-22 - node: color: '#FFFFFFFF' id: BotRight @@ -443,29 +443,29 @@ entities: color: '#FFFFFFFF' id: Box decals: - 1371: -52,-9 - 1379: -52,-10 + 1358: -52,-9 + 1366: -52,-10 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 2246: 5,-26 - 2247: 4,-26 - 2248: 3,-26 - 2249: 2,-26 - 2250: 1,-26 - 2251: 1,-28 - 2252: 2,-28 - 2253: 3,-28 - 2254: 4,-28 - 2255: 5,-28 + 2233: 5,-26 + 2234: 4,-26 + 2235: 3,-26 + 2236: 2,-26 + 2237: 1,-26 + 2238: 1,-28 + 2239: 2,-28 + 2240: 3,-28 + 2241: 4,-28 + 2242: 5,-28 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Box decals: - 1974: -52,-9 + 1961: -52,-9 - node: color: '#EFB34196' id: BoxGreyscale @@ -477,23 +477,23 @@ entities: color: '#FFFFFFFF' id: BoxGreyscale decals: - 533: -39,34 - 534: -39,35 - 535: -39,36 - 536: -39,37 - 537: -37,25 - 538: -36,25 - 539: -35,25 - 540: -50,32 - 541: -49,32 - 542: -50,37 - 583: -51,37 - 584: -55,31 - 585: -56,31 - 586: -53,31 - 1372: -52,-9 - 1373: -52,-10 - 2312: -57,31 + 520: -39,34 + 521: -39,35 + 522: -39,36 + 523: -39,37 + 524: -37,25 + 525: -36,25 + 526: -35,25 + 527: -50,32 + 528: -49,32 + 529: -50,37 + 570: -51,37 + 571: -55,31 + 572: -56,31 + 573: -53,31 + 1359: -52,-9 + 1360: -52,-10 + 2299: -57,31 - node: cleanable: True color: '#FFFFFFFF' @@ -505,7 +505,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 2545: -46,-13 + 2532: -46,-13 - node: color: '#FF0000FF' id: BrickTileSteelCornerNe @@ -514,7 +514,7 @@ entities: 221: -28,-9 229: -32,-5 260: -21,-12 - 990: -28,-5 + 977: -28,-5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe @@ -526,7 +526,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 2546: -48,-13 + 2533: -48,-13 - node: color: '#FF0000FF' id: BrickTileSteelCornerNw @@ -534,7 +534,7 @@ entities: 160: -54,-3 230: -34,-5 267: -24,-12 - 989: -30,-5 + 976: -30,-5 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw @@ -546,7 +546,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 2552: -46,-19 + 2539: -46,-19 - node: color: '#FF0000FF' id: BrickTileSteelCornerSe @@ -554,7 +554,7 @@ entities: 91: -47,-5 211: -28,-16 261: -21,-17 - 991: -28,-7 + 978: -28,-7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe @@ -564,7 +564,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 2551: -48,-19 + 2538: -48,-19 - node: color: '#FF0000FF' id: BrickTileSteelCornerSw @@ -573,14 +573,14 @@ entities: 188: -33,-11 208: -29,-16 262: -24,-17 - 992: -30,-7 + 979: -30,-7 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: 10: -11,7 - 971: -7,-30 - 2598: -24,4 + 958: -7,-30 + 2585: -24,4 - node: color: '#FF0000FF' id: BrickTileSteelInnerNe @@ -614,16 +614,16 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 970: -6,-30 + 957: -6,-30 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 2541: -46,-15 - 2542: -46,-14 - 2549: -46,-16 - 2550: -46,-18 - 2570: -46,-17 + 2528: -46,-15 + 2529: -46,-14 + 2536: -46,-16 + 2537: -46,-18 + 2557: -46,-17 - node: color: '#FF0000FF' id: BrickTileSteelLineE @@ -646,12 +646,12 @@ entities: 269: -21,-14 270: -21,-15 271: -21,-16 - 399: 28,4 - 400: 28,5 - 401: 28,6 - 402: 28,7 - 573: -28,-15 - 987: -28,-6 + 386: 28,4 + 387: 28,5 + 388: 28,6 + 389: 28,7 + 560: -28,-15 + 974: -28,-6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE @@ -663,13 +663,13 @@ entities: color: '#D4D4D428' id: BrickTileSteelLineN decals: - 1369: -48,-13 - 1370: -46,-13 + 1356: -48,-13 + 1357: -46,-13 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 2547: -47,-13 + 2534: -47,-13 - node: color: '#FF0000FF' id: BrickTileSteelLineN @@ -712,7 +712,7 @@ entities: 233: -33,-5 258: -23,-12 259: -22,-12 - 993: -29,-5 + 980: -29,-5 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -725,23 +725,23 @@ entities: 23: -7,23 24: -8,23 25: -9,23 - 2616: -8,-39 - 2617: -7,-39 - 2618: -6,-39 + 2603: -8,-39 + 2604: -7,-39 + 2605: -6,-39 - node: color: '#474A4DFF' id: BrickTileSteelLineS decals: - 997: -25,-9 - 998: -24,-9 - 999: -23,-9 - 1000: -22,-9 - 1001: -21,-9 + 984: -25,-9 + 985: -24,-9 + 986: -23,-9 + 987: -22,-9 + 988: -21,-9 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 2553: -47,-19 + 2540: -47,-19 - node: color: '#FF0000FF' id: BrickTileSteelLineS @@ -777,31 +777,31 @@ entities: 194: -30,-11 272: -22,-17 273: -23,-17 - 994: -29,-7 + 981: -29,-7 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: 14: -10,7 15: -9,7 - 2613: -8,-39 - 2614: -7,-39 - 2615: -6,-39 + 2600: -8,-39 + 2601: -7,-39 + 2602: -6,-39 - node: color: '#474A4DFF' id: BrickTileSteelLineW decals: - 995: -25,-9 - 996: -25,-8 + 982: -25,-9 + 983: -25,-8 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 2543: -48,-15 - 2544: -48,-14 - 2548: -48,-16 - 2554: -48,-18 - 2555: -48,-17 + 2530: -48,-15 + 2531: -48,-14 + 2535: -48,-16 + 2541: -48,-18 + 2542: -48,-17 - node: color: '#FF0000FF' id: BrickTileSteelLineW @@ -825,8 +825,8 @@ entities: 264: -24,-15 265: -24,-14 266: -24,-13 - 574: -29,-15 - 988: -30,-6 + 561: -29,-15 + 975: -30,-6 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW @@ -837,365 +837,365 @@ entities: 20: -10,22 26: -24,6 27: -24,7 - 966: -6,-34 - 967: -6,-33 - 968: -6,-32 - 969: -6,-31 - 972: -7,-28 - 973: -7,-29 - 974: -7,-27 - 975: -7,-26 - 976: -7,-25 - 977: -7,-23 - 978: -7,-22 - 979: -7,-21 - 980: -7,-20 - 981: -7,-19 - 982: -7,-18 - 983: -7,-17 - 984: -7,-16 - 2477: -24,5 + 953: -6,-34 + 954: -6,-33 + 955: -6,-32 + 956: -6,-31 + 959: -7,-28 + 960: -7,-29 + 961: -7,-27 + 962: -7,-26 + 963: -7,-25 + 964: -7,-23 + 965: -7,-22 + 966: -7,-21 + 967: -7,-20 + 968: -7,-19 + 969: -7,-18 + 970: -7,-17 + 971: -7,-16 + 2464: -24,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2067: -8,36 + 2054: -8,36 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 637: 13,6 + 624: 13,6 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 762: 28,12 + 749: 28,12 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 523: -39,33 + 510: -39,33 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 378: -16,-33 + 365: -16,-33 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2068: -13,36 + 2055: -13,36 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 621: 10,15 - 694: 10,6 + 608: 10,15 + 681: 10,6 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 530: -43,34 - 2373: -45,44 + 517: -43,34 + 2360: -45,44 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 413: -17,33 - 437: -15,34 + 400: -17,33 + 424: -15,34 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 619: 19,15 - 636: 13,8 + 606: 19,15 + 623: 13,8 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 2366: -39,39 + 2353: -39,39 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 438: -6,33 + 425: -6,33 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 635: 15,8 - 785: 19,23 + 622: 15,8 + 772: 19,23 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 2365: -45,39 + 2352: -45,39 - node: color: '#52B4E996' id: BrickTileWhiteEndE decals: - 628: 15,7 - 641: 19,7 - 659: 23,7 + 615: 15,7 + 628: 19,7 + 646: 23,7 - node: color: '#52B4E996' id: BrickTileWhiteEndN decals: - 634: 14,8 - 638: 18,8 - 639: 22,8 - 693: 15,6 + 621: 14,8 + 625: 18,8 + 626: 22,8 + 680: 15,6 - node: color: '#52B4E996' id: BrickTileWhiteEndS decals: - 627: 14,6 - 640: 18,6 - 642: 22,6 + 614: 14,6 + 627: 18,6 + 629: 22,6 - node: color: '#52B4E996' id: BrickTileWhiteEndW decals: - 629: 13,7 - 654: 21,7 + 616: 13,7 + 641: 21,7 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteEndW decals: - 1915: 17,7 + 1902: 17,7 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 1979: -12,36 - 2071: -9,36 + 1966: -12,36 + 2058: -9,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 633: 14,7 - 657: 22,7 - 687: 13,5 - 688: 12,6 + 620: 14,7 + 644: 22,7 + 674: 13,5 + 675: 12,6 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 1916: 18,7 + 1903: 18,7 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe decals: - 764: 26,12 + 751: 26,12 - node: color: '#D381C996' id: BrickTileWhiteInnerNe decals: - 518: -47,32 - 522: -40,33 - 2383: -39,41 - 2384: -44,44 + 505: -47,32 + 509: -40,33 + 2370: -39,41 + 2371: -44,44 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 379: -17,-33 + 366: -17,-33 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 405: -16,36 - 1980: -9,36 - 2072: -12,36 + 392: -16,36 + 1967: -9,36 + 2059: -12,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 623: 11,15 - 630: 14,7 - 656: 22,7 - 664: 12,6 - 689: 15,5 + 610: 11,15 + 617: 14,7 + 643: 22,7 + 651: 12,6 + 676: 15,5 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1917: 18,7 + 1904: 18,7 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2385: -44,44 + 2372: -44,44 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 414: -17,34 - 436: -15,38 - 1362: -12,39 - 2036: -9,38 + 401: -17,34 + 423: -15,38 + 1349: -12,39 + 2023: -9,38 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 613: 12,15 - 632: 14,7 - 658: 22,7 - 690: 12,8 + 600: 12,15 + 619: 14,7 + 645: 22,7 + 677: 12,8 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 1918: 18,7 + 1905: 18,7 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 2397: 11,-7 + 2384: 11,-7 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2381: -40,39 - 2382: -39,41 + 2368: -40,39 + 2369: -39,41 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 446: -6,38 - 1361: -9,39 - 2031: -12,38 + 433: -6,38 + 1348: -9,39 + 2018: -12,38 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 631: 14,7 - 655: 22,7 - 783: 21,23 + 618: 14,7 + 642: 22,7 + 770: 21,23 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 1919: 18,7 + 1906: 18,7 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 2396: 14,-7 + 2383: 14,-7 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2380: -40,39 + 2367: -40,39 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 367: -20,-45 + 354: -20,-45 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 417: -8,32 - 418: -8,33 - 419: -8,34 - 420: -8,35 - 439: -15,35 - 440: -15,37 - 441: -15,36 - 2008: -12,38 - 2025: -12,37 - 2040: -9,37 + 404: -8,32 + 405: -8,33 + 406: -8,34 + 407: -8,35 + 426: -15,35 + 427: -15,37 + 428: -15,36 + 1995: -12,38 + 2012: -12,37 + 2027: -9,37 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 603: 12,10 - 604: 12,11 - 605: 12,12 - 606: 12,13 - 607: 12,14 - 620: 19,16 - 665: 23,10 - 666: 23,11 - 667: 23,12 - 668: 23,14 - 669: 23,15 - 670: 23,16 - 671: 23,17 - 672: 23,18 - 673: 23,19 - 685: 12,7 - 691: 15,4 - 692: 15,5 - 704: 8,12 - 705: 8,11 - 706: 8,10 - 707: 8,9 - 708: 8,8 - 709: 8,7 - 710: 8,6 - 711: 13,18 - 712: 13,19 - 713: 13,20 - 714: 13,21 - 715: 13,22 - 716: 13,23 - 717: 13,24 - 718: 13,25 - 719: 13,26 - 733: 19,18 - 734: 19,19 - 735: 19,20 - 736: 19,21 + 590: 12,10 + 591: 12,11 + 592: 12,12 + 593: 12,13 + 594: 12,14 + 607: 19,16 + 652: 23,10 + 653: 23,11 + 654: 23,12 + 655: 23,14 + 656: 23,15 + 657: 23,16 + 658: 23,17 + 659: 23,18 + 660: 23,19 + 672: 12,7 + 678: 15,4 + 679: 15,5 + 691: 8,12 + 692: 8,11 + 693: 8,10 + 694: 8,9 + 695: 8,8 + 696: 8,7 + 697: 8,6 + 698: 13,18 + 699: 13,19 + 700: 13,20 + 701: 13,21 + 702: 13,22 + 703: 13,23 + 704: 13,24 + 705: 13,25 + 706: 13,26 + 720: 19,18 + 721: 19,19 + 722: 19,20 + 723: 19,21 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2223: 23,13 + 2210: 23,13 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 761: 28,11 - 765: 26,13 - 766: 26,14 - 767: 26,15 - 768: 26,16 + 748: 28,11 + 752: 26,13 + 753: 26,14 + 754: 26,15 + 755: 26,16 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 483: -41,25 - 486: -41,29 - 487: -35,29 - 488: -35,28 - 489: -35,27 - 490: -35,26 - 510: -47,37 - 511: -47,36 - 512: -47,35 - 513: -47,34 - 514: -47,33 - 519: -40,35 - 520: -40,37 - 521: -39,32 - 524: -39,31 - 2083: -20,-74 - 2084: -20,-75 - 2085: -20,-76 - 2086: -20,-77 - 2087: -20,-78 - 2088: -20,-79 - 2089: -20,-80 - 2367: -39,40 - 2368: -39,42 + 470: -41,25 + 473: -41,29 + 474: -35,29 + 475: -35,28 + 476: -35,27 + 477: -35,26 + 497: -47,37 + 498: -47,36 + 499: -47,35 + 500: -47,34 + 501: -47,33 + 506: -40,35 + 507: -40,37 + 508: -39,32 + 511: -39,31 + 2070: -20,-74 + 2071: -20,-75 + 2072: -20,-76 + 2073: -20,-77 + 2074: -20,-78 + 2075: -20,-79 + 2076: -20,-80 + 2354: -39,40 + 2355: -39,42 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1212,540 +1212,540 @@ entities: 312: -16,-37 313: -16,-36 314: -16,-35 - 365: -16,-47 - 380: -17,-32 - 381: -17,-31 - 382: -21,-30 - 383: -21,-29 - 384: -21,-28 - 385: -11,-37 - 386: -11,-38 - 387: -11,-39 - 388: -11,-40 - 389: -11,-41 + 352: -16,-47 + 367: -17,-32 + 368: -17,-31 + 369: -21,-30 + 370: -21,-29 + 371: -21,-28 + 372: -11,-37 + 373: -11,-38 + 374: -11,-39 + 375: -11,-40 + 376: -11,-41 - node: color: '#FF801DFF' id: BrickTileWhiteLineE decals: - 2286: 19,10 - 2287: 19,11 - 2288: 19,12 - 2289: 19,13 + 2273: 19,10 + 2274: 19,11 + 2275: 19,12 + 2276: 19,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 403: -18,36 - 404: -17,36 - 408: -14,39 - 409: -13,39 - 410: -7,39 - 411: -6,39 - 1363: -12,39 - 1364: -11,39 - 1365: -10,39 - 1977: -11,36 - 1978: -10,36 + 390: -18,36 + 391: -17,36 + 395: -14,39 + 396: -13,39 + 397: -7,39 + 398: -6,39 + 1350: -12,39 + 1351: -11,39 + 1352: -10,39 + 1964: -11,36 + 1965: -10,36 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1282: -8,39 - 1283: -9,39 + 1269: -8,39 + 1270: -9,39 - node: color: '#49FFC5FF' id: BrickTileWhiteLineN decals: - 2619: -5.9915333,-39.38071 - 2620: -6.991725,-39.38071 - 2621: -7.983293,-39.38071 + 2606: -5.9915333,-39.38071 + 2607: -6.991725,-39.38071 + 2608: -7.983293,-39.38071 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 663: 11,6 - 686: 14,5 - 742: 25,22 - 743: 26,22 - 744: 27,22 - 745: 28,22 - 746: 29,22 + 650: 11,6 + 673: 14,5 + 729: 25,22 + 730: 26,22 + 731: 27,22 + 732: 28,22 + 733: 29,22 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 763: 27,12 + 750: 27,12 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 516: -46,32 - 517: -45,32 - 2374: -43,44 - 2375: -42,44 + 503: -46,32 + 504: -45,32 + 2361: -43,44 + 2362: -42,44 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 412: -18,33 - 415: -16,34 - 416: -4,33 - 425: -13,41 - 426: -14,41 - 427: -12,41 - 428: -11,41 - 429: -10,41 - 430: -9,41 - 431: -7,41 - 432: -7,38 - 433: -8,38 - 434: -13,38 - 435: -14,38 - 1359: -11,39 - 1360: -10,39 - 1976: -8,41 + 399: -18,33 + 402: -16,34 + 403: -4,33 + 412: -13,41 + 413: -14,41 + 414: -12,41 + 415: -11,41 + 416: -10,41 + 417: -9,41 + 418: -7,41 + 419: -7,38 + 420: -8,38 + 421: -13,38 + 422: -14,38 + 1346: -11,39 + 1347: -10,39 + 1963: -8,41 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1273: -5,33 + 1260: -5,33 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 614: 13,15 - 615: 14,15 - 616: 16,15 - 617: 15,15 - 618: 18,15 - 737: 25,18 - 738: 26,18 - 739: 27,18 - 740: 28,18 - 741: 29,18 - 784: 20,23 + 601: 13,15 + 602: 14,15 + 603: 16,15 + 604: 15,15 + 605: 18,15 + 724: 25,18 + 725: 26,18 + 726: 27,18 + 727: 28,18 + 728: 29,18 + 771: 20,23 - node: cleanable: True color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2224: 17,15 + 2211: 17,15 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 2394: 12,-7 - 2395: 13,-7 + 2381: 12,-7 + 2382: 13,-7 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2376: -41,39 - 2377: -42,39 - 2378: -43,39 - 2379: -44,39 + 2363: -41,39 + 2364: -42,39 + 2365: -43,39 + 2366: -44,39 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 406: -16,37 - 407: -16,38 - 421: -13,32 - 422: -13,33 - 423: -13,34 - 424: -13,35 - 442: -6,34 - 443: -6,35 - 444: -6,36 - 445: -6,37 - 2012: -9,38 - 2015: -9,37 - 2039: -12,37 + 393: -16,37 + 394: -16,38 + 408: -13,32 + 409: -13,33 + 410: -13,34 + 411: -13,35 + 429: -6,34 + 430: -6,35 + 431: -6,36 + 432: -6,37 + 1999: -9,38 + 2002: -9,37 + 2026: -12,37 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 608: 10,10 - 609: 10,11 - 610: 10,12 - 611: 10,13 - 612: 10,14 - 622: 11,16 - 661: 12,8 - 662: 12,7 - 674: 21,19 - 675: 21,18 - 676: 21,17 - 677: 21,16 - 678: 21,15 - 679: 21,14 - 680: 21,13 - 681: 21,12 - 682: 21,11 - 683: 21,10 - 684: 20,20 - 695: 10,4 - 696: 10,5 - 697: 6,6 - 698: 6,7 - 699: 6,8 - 700: 6,9 - 701: 6,10 - 702: 6,11 - 703: 6,12 - 720: 12,26 - 721: 12,24 - 722: 12,25 - 723: 12,23 - 724: 12,22 - 725: 12,21 - 726: 12,20 - 727: 12,19 - 728: 12,18 - 729: 15,18 - 730: 15,19 - 731: 15,20 - 732: 15,21 - 781: 21,21 - 782: 21,22 - 786: 19,24 - 787: 19,25 - 788: 19,26 + 595: 10,10 + 596: 10,11 + 597: 10,12 + 598: 10,13 + 599: 10,14 + 609: 11,16 + 648: 12,8 + 649: 12,7 + 661: 21,19 + 662: 21,18 + 663: 21,17 + 664: 21,16 + 665: 21,15 + 666: 21,14 + 667: 21,13 + 668: 21,12 + 669: 21,11 + 670: 21,10 + 671: 20,20 + 682: 10,4 + 683: 10,5 + 684: 6,6 + 685: 6,7 + 686: 6,8 + 687: 6,9 + 688: 6,10 + 689: 6,11 + 690: 6,12 + 707: 12,26 + 708: 12,24 + 709: 12,25 + 710: 12,23 + 711: 12,22 + 712: 12,21 + 713: 12,20 + 714: 12,19 + 715: 12,18 + 716: 15,18 + 717: 15,19 + 718: 15,20 + 719: 15,21 + 768: 21,21 + 769: 21,22 + 773: 19,24 + 774: 19,25 + 775: 19,26 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 755: 25,11 - 756: 25,12 - 757: 25,13 - 758: 25,14 - 759: 25,15 - 760: 25,16 + 742: 25,11 + 743: 25,12 + 744: 25,13 + 745: 25,14 + 746: 25,15 + 747: 25,16 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 473: -25,34 - 474: -25,33 - 484: -43,25 - 485: -43,29 - 491: -39,25 - 492: -39,26 - 493: -39,27 - 494: -39,28 - 495: -39,29 - 505: -51,32 - 506: -51,33 - 507: -51,34 - 508: -51,35 - 509: -51,36 - 525: -43,31 - 526: -43,32 - 527: -43,33 - 528: -41,35 - 529: -41,37 - 2090: -23,-80 - 2091: -23,-79 - 2092: -23,-78 - 2093: -23,-77 - 2094: -23,-76 - 2095: -23,-75 - 2096: -23,-74 - 2369: -45,40 - 2370: -45,41 - 2371: -45,42 - 2372: -45,43 + 460: -25,34 + 461: -25,33 + 471: -43,25 + 472: -43,29 + 478: -39,25 + 479: -39,26 + 480: -39,27 + 481: -39,28 + 482: -39,29 + 492: -51,32 + 493: -51,33 + 494: -51,34 + 495: -51,35 + 496: -51,36 + 512: -43,31 + 513: -43,32 + 514: -43,33 + 515: -41,35 + 516: -41,37 + 2077: -23,-80 + 2078: -23,-79 + 2079: -23,-78 + 2080: -23,-77 + 2081: -23,-76 + 2082: -23,-75 + 2083: -23,-74 + 2356: -45,40 + 2357: -45,41 + 2358: -45,42 + 2359: -45,43 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 366: -20,-46 - 368: -23,-44 - 369: -23,-43 - 370: -24,-41 - 371: -24,-37 - 372: -23,-35 - 373: -23,-34 - 374: -23,-31 - 375: -23,-32 - 376: -23,-30 - 377: -23,-29 - 390: -14,-41 - 391: -14,-40 - 392: -14,-39 - 393: -14,-38 - 394: -14,-37 + 353: -20,-46 + 355: -23,-44 + 356: -23,-43 + 357: -24,-41 + 358: -24,-37 + 359: -23,-35 + 360: -23,-34 + 361: -23,-31 + 362: -23,-32 + 363: -23,-30 + 364: -23,-29 + 377: -14,-41 + 378: -14,-40 + 379: -14,-39 + 380: -14,-38 + 381: -14,-37 - node: color: '#FF801DFF' id: BrickTileWhiteLineW decals: - 2282: 14,13 - 2283: 14,12 - 2284: 14,11 - 2285: 14,10 + 2269: 14,13 + 2270: 14,12 + 2271: 14,11 + 2272: 14,10 - node: color: '#FFFFFFFF' id: BushAOne decals: - 914: 37,-13 + 901: 37,-13 - node: color: '#FFFFFFFF' id: BushATwo decals: - 918: 37,-10 - 933: -27,24 - 939: 35,-13 + 905: 37,-10 + 920: -27,24 + 926: 35,-13 - node: color: '#FFFFFFFF' id: BushCOne decals: - 913: 37,-12 + 900: 37,-12 - node: color: '#FFFFFFFF' id: BushCTwo decals: - 912: 37,-9 - 937: -45,23 - 938: 35,-12 - 952: -13,-2 + 899: 37,-9 + 924: -45,23 + 925: 35,-12 + 939: -13,-2 - node: color: '#FFFFFFFF' id: BushDOne decals: - 1334: -59.663837,-5.750451 + 1321: -59.663837,-5.750451 - node: color: '#FFFFFFFF' id: Busha1 decals: - 920: 33,-23 - 924: 33,-19 - 925: -17,27 + 907: 33,-23 + 911: 33,-19 + 912: -17,27 - node: color: '#FFFFFFFF' id: Busha2 decals: - 919: 34,-23 + 906: 34,-23 - node: color: '#FFFFFFFF' id: Busha3 decals: - 923: 34,-19 + 910: 34,-19 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 1331: -58.898212,-5.953576 - 1332: -61.554462,-6.266076 - 1333: -58.741962,-6.875451 + 1318: -58.898212,-5.953576 + 1319: -61.554462,-6.266076 + 1320: -58.741962,-6.875451 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 941: -50,6 + 928: -50,6 - node: color: '#FFFFFFFF' id: Bushc1 decals: - 908: 13,-2 - 909: 10,2 - 917: 37,-11 - 932: -32,24 - 936: -45,22 - 942: -15,-12 + 895: 13,-2 + 896: 10,2 + 904: 37,-11 + 919: -32,24 + 923: -45,22 + 929: -15,-12 - node: color: '#FFFFFFFF' id: Bushc2 decals: - 940: -50,7 + 927: -50,7 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 922: 35,-19 - 934: -28,24 - 935: -33,24 - 943: -14,-12 + 909: 35,-19 + 921: -28,24 + 922: -33,24 + 930: -14,-12 - node: color: '#FFFFFFFF' id: Bushd1 decals: - 953: -14,-2 + 940: -14,-2 - node: color: '#FFFFFFFF' id: Bushd3 decals: - 910: 15,2 - 911: 12,-2 + 897: 15,2 + 898: 12,-2 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 928: -17,32 - 931: -33,24 + 915: -17,32 + 918: -33,24 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 889: -2,2 + 876: -2,2 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 888: -2,3 - 951: -15,-2 + 875: -2,3 + 938: -15,-2 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 927: -18,32 - 950: -13,-2 + 914: -18,32 + 937: -13,-2 - node: color: '#FFFFFFFF' id: Bushg3 decals: - 921: 32,-19 + 908: 32,-19 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 926: -18,27 + 913: -18,27 - node: cleanable: True color: '#FFFFFFFF' id: Bushj1 decals: - 2270: -22,4 + 2257: -22,4 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 2079: -4.742067,39.22148 - 2080: -15.210269,39.22148 + 2066: -4.742067,39.22148 + 2067: -15.210269,39.22148 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 930: -45,9 + 917: -45,9 - node: color: '#FFFFFFFF' id: Bushn1 decals: - 905: 2,-2 - 929: -45,10 - 944: -13,-12 - 945: -32,24 - 954: -15,-2 + 892: 2,-2 + 916: -45,10 + 931: -13,-12 + 932: -32,24 + 941: -15,-2 - node: cleanable: True color: '#FFFFFFFF' id: Bushn1 decals: - 2271: -20,3 + 2258: -20,3 - node: color: '#FFFFFFFF' id: Caution decals: - 2566: -47,-16 + 2553: -47,-16 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 2717: -29,-38 - 2718: -29,-39 + 2686: -29,-38 + 2687: -29,-39 - node: color: '#52B4E996' id: CheckerNESW decals: - 789: 15,23 - 790: 15,24 - 791: 15,25 - 792: 15,26 - 793: 16,26 - 794: 16,25 - 795: 16,24 - 796: 16,23 - 797: 17,23 - 798: 17,24 - 799: 17,25 - 800: 17,26 - 1926: 17,5 - 1927: 17,4 - 1928: 17,3 - 1929: 18,3 - 1930: 19,5 - 1931: 19,4 - 1932: 19,3 - 1933: 20,3 - 1934: 20,4 - 1935: 20,5 - 1936: 21,5 - 1937: 21,3 - 1938: 22,3 - 1939: 22,5 - 1940: 23,5 - 1941: 23,4 - 1942: 23,3 + 776: 15,23 + 777: 15,24 + 778: 15,25 + 779: 15,26 + 780: 16,26 + 781: 16,25 + 782: 16,24 + 783: 16,23 + 784: 17,23 + 785: 17,24 + 786: 17,25 + 787: 17,26 + 1913: 17,5 + 1914: 17,4 + 1915: 17,3 + 1916: 18,3 + 1917: 19,5 + 1918: 19,4 + 1919: 19,3 + 1920: 20,3 + 1921: 20,4 + 1922: 20,5 + 1923: 21,5 + 1924: 21,3 + 1925: 22,3 + 1926: 22,5 + 1927: 23,5 + 1928: 23,4 + 1929: 23,3 - node: cleanable: True color: '#52B4E996' id: CheckerNESW decals: - 1970: 18,5 - 1971: 18,4 - 1972: 21,4 - 1973: 22,4 + 1957: 18,5 + 1958: 18,4 + 1959: 21,4 + 1960: 22,4 - node: color: '#9FED5896' id: CheckerNESW decals: - 2225: 19,-14 - 2226: 19,-13 - 2227: 19,-12 - 2228: 20,-12 - 2229: 21,-12 - 2230: 22,-12 + 2212: 19,-14 + 2213: 19,-13 + 2214: 19,-12 + 2215: 20,-12 + 2216: 21,-12 + 2217: 22,-12 - node: color: '#A4610696' id: CheckerNESW decals: - 2390: 10,-4 - 2391: 10,-5 - 2392: 10,-6 - 2393: 10,-7 - 2398: 9,-20 - 2399: 9,-21 - 2400: 9,-22 - 2401: 9,-23 - 2402: 9,-24 - 2403: 9,-25 - 2404: 9,-26 - 2405: 9,-27 - 2406: 9,-28 - 2415: 9,-18 - 2416: 9,-17 - 2417: 9,-16 - 2418: 9,-15 - 2419: 9,-14 - 2420: 9,-13 - 2434: 10,-11 - 2435: 10,-10 - 2436: 10,-9 - 2437: 14,-32 - 2438: 14,-30 - 2439: 14,-29 - 2440: 14,-28 - 2441: 14,-27 - 2442: 14,-26 - 2443: 14,-25 - 2453: 14,-33 - 2468: 4,-3 - 2469: 4,-4 - 2470: 4,-5 - 2580: 14,-34 - 2581: 14,-35 + 2377: 10,-4 + 2378: 10,-5 + 2379: 10,-6 + 2380: 10,-7 + 2385: 9,-20 + 2386: 9,-21 + 2387: 9,-22 + 2388: 9,-23 + 2389: 9,-24 + 2390: 9,-25 + 2391: 9,-26 + 2392: 9,-27 + 2393: 9,-28 + 2402: 9,-18 + 2403: 9,-17 + 2404: 9,-16 + 2405: 9,-15 + 2406: 9,-14 + 2407: 9,-13 + 2421: 10,-11 + 2422: 10,-10 + 2423: 10,-9 + 2424: 14,-32 + 2425: 14,-30 + 2426: 14,-29 + 2427: 14,-28 + 2428: 14,-27 + 2429: 14,-26 + 2430: 14,-25 + 2440: 14,-33 + 2455: 4,-3 + 2456: 4,-4 + 2457: 4,-5 + 2567: 14,-34 + 2568: 14,-35 - node: color: '#DE3A3A96' id: CheckerNESW @@ -1763,8 +1763,8 @@ entities: color: '#EFB34196' id: CheckerNESW decals: - 2503: -12,-25 - 2504: -11,-25 + 2490: -12,-25 + 2491: -11,-25 - node: color: '#DE3A3A96' id: CheckerNWSE @@ -1788,41 +1788,41 @@ entities: color: '#EFB34196' id: Delivery decals: - 321: -28,-39 - 325: -28,-43 - 330: -36,-43 - 2677: -37,-43 - 2678: -28,-44 - 2685: -32,-42 - 2686: -32,-36 - 2687: -35,-39 - 2711: -38,-31 - 2712: -39,-31 + 315: -28,-39 + 316: -28,-43 + 317: -36,-43 + 2655: -37,-43 + 2656: -28,-44 + 2657: -32,-42 + 2658: -32,-36 + 2659: -35,-39 + 2680: -38,-31 + 2681: -39,-31 - node: color: '#FFFFFFFF' id: Delivery decals: - 587: -56,40 - 588: -56,41 - 589: -55,41 - 590: -54,41 - 591: -54,40 - 592: -54,39 - 593: -56,39 - 594: -55,39 - 2317: 22,-30 - 2318: 21,-30 - 2319: 21,-31 - 2320: 22,-31 + 574: -56,40 + 575: -56,41 + 576: -55,41 + 577: -54,41 + 578: -54,40 + 579: -54,39 + 580: -56,39 + 581: -55,39 + 2304: 22,-30 + 2305: 21,-30 + 2306: 21,-31 + 2307: 22,-31 - node: cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 2324: 13,-18 - 2325: 13,-17 - 2355: 22,-29 - 2356: 21,-29 + 2311: 13,-18 + 2312: 13,-17 + 2342: 22,-29 + 2343: 21,-29 - node: color: '#DE3A3A96' id: DeliveryGreyscale @@ -1854,857 +1854,857 @@ entities: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 331: -35,-45 - 332: -34,-45 - 333: -33,-45 - 334: -31,-45 - 335: -30,-45 - 336: -29,-45 - 337: -30,-33 - 338: -29,-33 - 339: -31,-33 - 340: -33,-33 - 341: -34,-33 - 342: -35,-33 - 531: -46,34 - 532: -45,34 - 2321: 17,-30 - 2322: 18,-30 + 318: -35,-45 + 319: -34,-45 + 320: -33,-45 + 321: -31,-45 + 322: -30,-45 + 323: -29,-45 + 324: -30,-33 + 325: -29,-33 + 326: -31,-33 + 327: -33,-33 + 328: -34,-33 + 329: -35,-33 + 518: -46,34 + 519: -45,34 + 2308: 17,-30 + 2309: 18,-30 - node: cleanable: True color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2326: 14,-18 - 2327: 14,-17 - 2328: 15,-17 - 2329: 15,-18 - 2350: 18,-29 - 2351: 17,-29 - 2359: 16,-30 - 2360: 16,-29 + 2313: 14,-18 + 2314: 14,-17 + 2315: 15,-17 + 2316: 15,-18 + 2337: 18,-29 + 2338: 17,-29 + 2346: 16,-30 + 2347: 16,-29 - node: cleanable: True color: '#5D2C0098' id: Dirt decals: - 1819: 22,1 + 1806: 22,1 - node: cleanable: True color: '#5D2C00D3' id: Dirt decals: - 1820: 40,1 - 1821: -25,-3 - 1822: -26,2 - 1823: -32,3 - 1827: -31,5 - 1854: 26,-3 + 1807: 40,1 + 1808: -25,-3 + 1809: -26,2 + 1810: -32,3 + 1814: -31,5 + 1841: 26,-3 - node: cleanable: True color: '#5D5200FF' id: Dirt decals: - 1809: -2,-28 - 1810: -2,-25 - 1811: 4,-24 - 1812: 1,-23 - 1813: -4,-23 - 1814: -4,-22 - 1815: 0,-25 - 1817: 10,-30 - 1818: 24,-9 + 1796: -2,-28 + 1797: -2,-25 + 1798: 4,-24 + 1799: 1,-23 + 1800: -4,-23 + 1801: -4,-22 + 1802: 0,-25 + 1804: 10,-30 + 1805: 24,-9 - node: cleanable: True color: '#792C0079' id: Dirt decals: - 1896: 22,16 + 1883: 22,16 - node: cleanable: True color: '#792C0082' id: Dirt decals: - 1901: 11,11 - 1902: 11,14 - 1903: 19,16 - 1904: 12,18 - 1905: 13,25 - 1906: 13,24 - 1907: 14,5 - 1908: 23,6 - 1909: 19,8 - 1910: 11,5 - 1911: 8,7 - 1912: 6,11 - 1913: 19,6 + 1888: 11,11 + 1889: 11,14 + 1890: 19,16 + 1891: 12,18 + 1892: 13,25 + 1893: 13,24 + 1894: 14,5 + 1895: 23,6 + 1896: 19,8 + 1897: 11,5 + 1898: 8,7 + 1899: 6,11 + 1900: 19,6 - node: cleanable: True color: '#792C00B7' id: Dirt decals: - 1897: 21,17 - 1898: 16,15 - 1899: 12,15 - 1900: 10,13 + 1884: 21,17 + 1885: 16,15 + 1886: 12,15 + 1887: 10,13 - node: cleanable: True color: '#792C00D1' id: Dirt decals: - 1855: 25,-4 - 1856: 25,-10 - 1857: 39,-1 - 1858: 30,0 - 1859: 31,0 - 1860: 13,4 - 1861: 14,4 - 1862: 0,-2 - 1863: 20,-29 - 1864: 37,-24 - 1865: -7,-36 - 1866: -8,-37 - 1867: -7,-35 - 1868: -7,-31 - 1876: -14,-19 - 1877: -14,-19 - 1878: -15,-18 - 1879: -17,-21 - 1880: -18,-26 - 1881: -17,-13 - 1882: -17,-4 - 1883: -21,11 - 1884: -32,15 - 1885: -41,15 - 1886: -48,12 - 1887: -46,6 - 1893: 28,13 - 1894: 25,15 - 1895: 26,15 + 1842: 25,-4 + 1843: 25,-10 + 1844: 39,-1 + 1845: 30,0 + 1846: 31,0 + 1847: 13,4 + 1848: 14,4 + 1849: 0,-2 + 1850: 20,-29 + 1851: 37,-24 + 1852: -7,-36 + 1853: -8,-37 + 1854: -7,-35 + 1855: -7,-31 + 1863: -14,-19 + 1864: -14,-19 + 1865: -15,-18 + 1866: -17,-21 + 1867: -18,-26 + 1868: -17,-13 + 1869: -17,-4 + 1870: -21,11 + 1871: -32,15 + 1872: -41,15 + 1873: -48,12 + 1874: -46,6 + 1880: 28,13 + 1881: 25,15 + 1882: 26,15 - node: cleanable: True color: '#835432FF' id: Dirt decals: - 2236: 26,-17 - 2237: 25,-16 - 2238: 29,-17 + 2223: 26,-17 + 2224: 25,-16 + 2225: 29,-17 - node: cleanable: True color: '#A0521263' id: Dirt decals: - 1920: 18,7 - 1921: 18,7 - 1922: 18,6 - 1923: 17,6 - 1924: 17,7 - 1943: -28,10 - 1944: -28,10 - 1945: -28,9 - 1946: -28,9 - 1947: -29,10 - 1948: -28,11 - 1949: -29,11 - 1950: -28,10 - 1951: -28,10 - 1958: -29,13 - 1959: -29,13 - 1960: -29,13 - 1961: -28,14 - 1962: -28,15 - 1963: -30,14 - 1964: -29,12 - 1965: -28,12 - 1966: -29,12 - 1967: -29,12 - 1968: -29,13 - 1969: -29,13 - 1981: 39,-4 - 1982: 38,-4 - 1983: 38,-4 - 1984: 39,-8 - 1985: 39,-8 - 1986: 38,-7 - 1987: 38,-7 - 1988: 39,0 - 1989: 40,-1 - 1990: 40,-1 - 1991: 34,-1 - 1992: 33,-1 - 1993: 35,-1 - 1994: 35,-1 - 1995: 25,1 - 1996: 25,-3 - 1997: 24,-2 - 1998: 24,-3 - 1999: 26,-6 - 2000: 26,-6 - 2001: 29,-16 - 2002: 38,-19 - 2003: 36,-22 - 2004: 31,-23 - 2005: 40,-21 - 2006: 38,-20 - 2007: 40,-13 - 2009: 39,-14 - 2010: 34,-6 - 2011: 35,-6 - 2013: 32,-4 - 2014: 31,-3 - 2016: 31,-3 - 2017: 31,-6 - 2018: 30,-7 - 2019: 29,-7 - 2020: 33,-9 - 2021: 30,-10 - 2022: 28,-10 - 2023: 29,-9 - 2024: 28,-13 - 2026: 30,-13 - 2027: 30,-13 - 2028: 30,-12 - 2029: 30,-12 - 2030: 32,0 - 2032: 28,6 - 2033: 28,6 - 2034: 27,6 - 2035: 27,6 - 2037: 27,3 - 2038: 27,3 - 2041: 12,-7 - 2042: 13,-7 - 2043: 13,-7 - 2044: 12,-7 - 2045: 10,-6 - 2046: 10,-6 - 2047: 14,-6 - 2048: 14,-6 - 2049: 14,-5 - 2050: 12,-6 - 2051: 15,-5 - 2052: 13,-9 - 2053: 12,-9 - 2054: 14,-9 - 2055: 14,-11 - 2056: 14,-11 - 2057: 13,-9 - 2058: 10,-10 - 2059: 10,-10 - 2060: 11,-10 - 2061: 7,-10 - 2062: 7,-10 - 2063: 13,-10 - 2064: 13,-10 - 2065: 7,-18 - 2066: 7,-18 - 2069: 29,-19 - 2070: 29,-19 - 2073: 26,-12 - 2074: 24,-13 - 2075: 24,-13 - 2076: 24,-13 + 1907: 18,7 + 1908: 18,7 + 1909: 18,6 + 1910: 17,6 + 1911: 17,7 + 1930: -28,10 + 1931: -28,10 + 1932: -28,9 + 1933: -28,9 + 1934: -29,10 + 1935: -28,11 + 1936: -29,11 + 1937: -28,10 + 1938: -28,10 + 1945: -29,13 + 1946: -29,13 + 1947: -29,13 + 1948: -28,14 + 1949: -28,15 + 1950: -30,14 + 1951: -29,12 + 1952: -28,12 + 1953: -29,12 + 1954: -29,12 + 1955: -29,13 + 1956: -29,13 + 1968: 39,-4 + 1969: 38,-4 + 1970: 38,-4 + 1971: 39,-8 + 1972: 39,-8 + 1973: 38,-7 + 1974: 38,-7 + 1975: 39,0 + 1976: 40,-1 + 1977: 40,-1 + 1978: 34,-1 + 1979: 33,-1 + 1980: 35,-1 + 1981: 35,-1 + 1982: 25,1 + 1983: 25,-3 + 1984: 24,-2 + 1985: 24,-3 + 1986: 26,-6 + 1987: 26,-6 + 1988: 29,-16 + 1989: 38,-19 + 1990: 36,-22 + 1991: 31,-23 + 1992: 40,-21 + 1993: 38,-20 + 1994: 40,-13 + 1996: 39,-14 + 1997: 34,-6 + 1998: 35,-6 + 2000: 32,-4 + 2001: 31,-3 + 2003: 31,-3 + 2004: 31,-6 + 2005: 30,-7 + 2006: 29,-7 + 2007: 33,-9 + 2008: 30,-10 + 2009: 28,-10 + 2010: 29,-9 + 2011: 28,-13 + 2013: 30,-13 + 2014: 30,-13 + 2015: 30,-12 + 2016: 30,-12 + 2017: 32,0 + 2019: 28,6 + 2020: 28,6 + 2021: 27,6 + 2022: 27,6 + 2024: 27,3 + 2025: 27,3 + 2028: 12,-7 + 2029: 13,-7 + 2030: 13,-7 + 2031: 12,-7 + 2032: 10,-6 + 2033: 10,-6 + 2034: 14,-6 + 2035: 14,-6 + 2036: 14,-5 + 2037: 12,-6 + 2038: 15,-5 + 2039: 13,-9 + 2040: 12,-9 + 2041: 14,-9 + 2042: 14,-11 + 2043: 14,-11 + 2044: 13,-9 + 2045: 10,-10 + 2046: 10,-10 + 2047: 11,-10 + 2048: 7,-10 + 2049: 7,-10 + 2050: 13,-10 + 2051: 13,-10 + 2052: 7,-18 + 2053: 7,-18 + 2056: 29,-19 + 2057: 29,-19 + 2060: 26,-12 + 2061: 24,-13 + 2062: 24,-13 + 2063: 24,-13 - node: cleanable: True color: '#FF0000B7' id: Dirt decals: - 1952: 19,4 + 1939: 19,4 - node: cleanable: True color: '#FF0000FF' id: Dirt decals: - 2256: -40,-25 - 2257: -40,-24 - 2258: -40,-25 - 2259: -39,-25 + 2243: -40,-25 + 2244: -40,-24 + 2245: -40,-25 + 2246: -39,-25 - node: cleanable: True color: '#FFFCFFFF' id: Dirt decals: - 2173: -15,-75 - 2174: -17,-77 - 2175: -10,-71 - 2176: -9,-78 - 2177: -18,-76 - 2178: -23,-77 - 2179: -12,-74 - 2180: -12,-79 - 2181: -23,-78 - 2182: -12,-81 - 2183: -25,-78 - 2184: -11,-76 - 2185: -16,-67 - 2186: -15,-76 - 2187: -27,-77 - 2188: -23,-75 - 2189: -12,-81 - 2206: -18,-47 - 2207: -11,-37 - 2208: -21,-35 - 2209: -15,-38 - 2210: -17,-35 - 2211: -8,-33 - 2212: -19,-29 - 2213: -23,-28 - 2214: -7,-32 - 2215: -4,-28 + 2160: -15,-75 + 2161: -17,-77 + 2162: -10,-71 + 2163: -9,-78 + 2164: -18,-76 + 2165: -23,-77 + 2166: -12,-74 + 2167: -12,-79 + 2168: -23,-78 + 2169: -12,-81 + 2170: -25,-78 + 2171: -11,-76 + 2172: -16,-67 + 2173: -15,-76 + 2174: -27,-77 + 2175: -23,-75 + 2176: -12,-81 + 2193: -18,-47 + 2194: -11,-37 + 2195: -21,-35 + 2196: -15,-38 + 2197: -17,-35 + 2198: -8,-33 + 2199: -19,-29 + 2200: -23,-28 + 2201: -7,-32 + 2202: -4,-28 - node: cleanable: True color: '#FFFFFFF7' id: Dirt decals: - 1325: -33,2 + 1312: -33,2 - node: color: '#FFFFFFFF' id: Dirt decals: - 2622: -8,-40 - 2623: -7,-39 - 2624: -6,-38 - 2625: -2,-40 - 2626: -2,-42 - 2627: 1,-40 - 2628: -1,-45 - 2629: -4,-46 - 2630: -2,-48 + 2609: -8,-40 + 2610: -7,-39 + 2611: -6,-38 + 2612: -2,-40 + 2613: -2,-42 + 2614: 1,-40 + 2615: -1,-45 + 2616: -4,-46 + 2617: -2,-48 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 515: 34,-14 - 1025: 29,-24 - 1026: 39,-18 - 1027: 39,-11 - 1028: 39,-3 - 1029: 40,7 - 1030: 39,12 - 1031: 35,16 - 1032: 33,20 - 1033: 33,23 - 1034: 26,29 - 1035: 22,29 - 1036: 13,28 - 1037: 13,30 - 1038: 19,26 - 1039: 23,24 - 1040: 13,19 - 1041: 23,16 - 1042: 13,11 - 1043: 13,6 - 1044: 11,12 - 1045: 18,11 - 1046: 20,6 - 1047: 7,7 - 1048: 6,3 - 1049: 2,7 - 1050: 4,8 - 1051: 1,6 - 1052: -3,6 - 1053: -4,2 - 1054: -25,-1 - 1055: -43,1 - 1056: -20,0 - 1057: -26,1 - 1058: -37,6 - 1059: -49,5 - 1060: -46,11 - 1061: -41,23 - 1062: -43,29 - 1063: -40,33 - 1064: -31,41 - 1065: -40,46 - 1066: -46,46 - 1067: -50,45 - 1068: -52,45 - 1069: -52,50 - 1271: -60,-1 - 1272: -59,-1 - 1298: -43,0 - 1299: -41,-2 - 1300: -44,-6 - 1301: -42,-10 - 1302: -37,-9 - 1303: -39,-13 - 1304: -41,-16 - 1305: -43,-16 - 1306: -44,-15 - 1307: -43,-15 - 1442: 31,-9 - 1443: 31,-1 - 1445: 17,-2 - 1446: 8,-7 - 1453: -7,-4 - 1460: -8,-10 - 1467: -25,-6 - 1473: -10,3 - 1474: -9,17 - 1475: -10,21 - 1476: -6,27 - 1494: -9,10 - 1675: -28,25 - 1676: -28,31 - 1677: -30,31 - 1678: -32,31 - 1718: -18,-1 - 1719: -8,-8 - 1720: -10,-14 - 1721: 23,-13 - 1722: 33,-20 - 1723: 40,-12 - 1750: -13,43 - 1773: 0,32 - 1774: 3,32 - 1782: -29,13 - 1783: -31,10 - 1784: -37,10 - 1785: -17,10 - 1786: -12,10 - 1787: -20,-25 - 1788: -23,-23 - 1795: -22,-22 - 1798: -10,-23 - 1799: 2,-23 - 1838: -15,13 - 1839: -13,15 - 1840: -13,13 - 1841: -15,10 - 1842: -15,15 - 1843: 35,-17 - 1844: 35,-15 - 1845: 35,-16 - 1846: 35,-16 - 1847: 34,-17 - 1848: 33,-15 - 1849: 34,-15 - 1914: 13,1 - 2513: 12,-20 - 2514: 12,-21 - 2518: 22,-26 - 2519: 21,-25 - 2520: 22,-25 - 2521: 20,-25 - 2522: 18,-25 - 2523: 18,-26 - 2524: 18,-27 - 2534: 17,-23 - 2535: 16,-23 - 2536: 18,-20 - 2558: -48,-17 - 2559: -46,-19 - 2560: -48,-19 - 2591: 9,-44 - 2592: 9,-37 - 2594: 12,-35 + 502: 34,-14 + 1012: 29,-24 + 1013: 39,-18 + 1014: 39,-11 + 1015: 39,-3 + 1016: 40,7 + 1017: 39,12 + 1018: 35,16 + 1019: 33,20 + 1020: 33,23 + 1021: 26,29 + 1022: 22,29 + 1023: 13,28 + 1024: 13,30 + 1025: 19,26 + 1026: 23,24 + 1027: 13,19 + 1028: 23,16 + 1029: 13,11 + 1030: 13,6 + 1031: 11,12 + 1032: 18,11 + 1033: 20,6 + 1034: 7,7 + 1035: 6,3 + 1036: 2,7 + 1037: 4,8 + 1038: 1,6 + 1039: -3,6 + 1040: -4,2 + 1041: -25,-1 + 1042: -43,1 + 1043: -20,0 + 1044: -26,1 + 1045: -37,6 + 1046: -49,5 + 1047: -46,11 + 1048: -41,23 + 1049: -43,29 + 1050: -40,33 + 1051: -31,41 + 1052: -40,46 + 1053: -46,46 + 1054: -50,45 + 1055: -52,45 + 1056: -52,50 + 1258: -60,-1 + 1259: -59,-1 + 1285: -43,0 + 1286: -41,-2 + 1287: -44,-6 + 1288: -42,-10 + 1289: -37,-9 + 1290: -39,-13 + 1291: -41,-16 + 1292: -43,-16 + 1293: -44,-15 + 1294: -43,-15 + 1429: 31,-9 + 1430: 31,-1 + 1432: 17,-2 + 1433: 8,-7 + 1440: -7,-4 + 1447: -8,-10 + 1454: -25,-6 + 1460: -10,3 + 1461: -9,17 + 1462: -10,21 + 1463: -6,27 + 1481: -9,10 + 1662: -28,25 + 1663: -28,31 + 1664: -30,31 + 1665: -32,31 + 1705: -18,-1 + 1706: -8,-8 + 1707: -10,-14 + 1708: 23,-13 + 1709: 33,-20 + 1710: 40,-12 + 1737: -13,43 + 1760: 0,32 + 1761: 3,32 + 1769: -29,13 + 1770: -31,10 + 1771: -37,10 + 1772: -17,10 + 1773: -12,10 + 1774: -20,-25 + 1775: -23,-23 + 1782: -22,-22 + 1785: -10,-23 + 1786: 2,-23 + 1825: -15,13 + 1826: -13,15 + 1827: -13,13 + 1828: -15,10 + 1829: -15,15 + 1830: 35,-17 + 1831: 35,-15 + 1832: 35,-16 + 1833: 35,-16 + 1834: 34,-17 + 1835: 33,-15 + 1836: 34,-15 + 1901: 13,1 + 2500: 12,-20 + 2501: 12,-21 + 2505: 22,-26 + 2506: 21,-25 + 2507: 22,-25 + 2508: 20,-25 + 2509: 18,-25 + 2510: 18,-26 + 2511: 18,-27 + 2521: 17,-23 + 2522: 16,-23 + 2523: 18,-20 + 2545: -48,-17 + 2546: -46,-19 + 2547: -48,-19 + 2578: 9,-44 + 2579: 9,-37 + 2581: 12,-35 - node: cleanable: True color: '#00FF00FF' id: DirtHeavy decals: - 1005: -55,-8 - 1006: -52,-4 + 992: -55,-8 + 993: -52,-4 - node: cleanable: True color: '#5D2C00D3' id: DirtHeavy decals: - 1828: -29,7 - 1829: -36,7 - 1830: -35,5 + 1815: -29,7 + 1816: -36,7 + 1817: -35,5 - node: cleanable: True color: '#792C00D1' id: DirtHeavy decals: - 1869: -8,-35 - 1870: -6,-32 - 1888: 26,14 - 1889: 28,14 - 1890: 27,13 - 1891: 27,15 - 1892: 27,16 + 1856: -8,-35 + 1857: -6,-32 + 1875: 26,14 + 1876: 28,14 + 1877: 27,13 + 1878: 27,15 + 1879: 27,16 - node: cleanable: True color: '#8354329E' id: DirtHeavy decals: - 2244: 24,-15 + 2231: 24,-15 - node: cleanable: True color: '#835432FF' id: DirtHeavy decals: - 2243: 25,-12 + 2230: 25,-12 - node: cleanable: True color: '#A0521263' id: DirtHeavy decals: - 1953: -28,9 - 1955: -28,9 - 1956: -28,9 - 1957: -29,11 - 2077: 25,-15 + 1940: -28,9 + 1942: -28,9 + 1943: -28,9 + 1944: -29,11 + 2064: 25,-15 - node: cleanable: True color: '#FF0000FF' id: DirtHeavy decals: - 2260: -39,-24 - 2261: -38,-25 - 2262: -39,-23 - 2263: -39,-23 - 2264: -38,-25 - 2265: -39,-24 + 2247: -39,-24 + 2248: -38,-25 + 2249: -39,-23 + 2250: -39,-23 + 2251: -38,-25 + 2252: -39,-24 - node: cleanable: True color: '#FFFCFFFF' id: DirtHeavy decals: - 2190: -15,-79 - 2191: -17,-80 - 2192: -8,-75 - 2193: -19,-79 - 2194: -20,-78 - 2195: -22,-79 - 2196: -24,-75 - 2197: -27,-78 - 2198: -16,-74 - 2199: -10,-79 - 2200: -21,-77 - 2201: -28,-75 - 2202: -29,-77 - 2203: -29,-78 - 2204: -18,-44 - 2205: -13,-40 + 2177: -15,-79 + 2178: -17,-80 + 2179: -8,-75 + 2180: -19,-79 + 2181: -20,-78 + 2182: -22,-79 + 2183: -24,-75 + 2184: -27,-78 + 2185: -16,-74 + 2186: -10,-79 + 2187: -21,-77 + 2188: -28,-75 + 2189: -29,-77 + 2190: -29,-78 + 2191: -18,-44 + 2192: -13,-40 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: 67: -29,10 - 496: 28,-10 - 497: 35,-16 - 498: 33,-17 - 826: 34,-13 - 827: 32,-12 - 851: 28,-13 - 852: 31,-13 - 853: 31,-10 - 854: 29,-11 - 855: 29,-12 - 856: 34,-10 - 857: 35,-9 - 858: 33,-9 - 859: 32,-9 - 860: 32,-10 - 861: 33,-10 - 890: 29,-3 - 891: 28,-4 - 892: 30,-5 - 893: 31,-6 - 894: 32,-6 - 896: 32,-4 - 897: 32,-3 - 898: 32,-2 - 900: 34,-3 - 903: 33,-16 - 904: 32,-16 - 1022: 20,1 - 1023: 23,-9 - 1070: -47,43 - 1071: -48,43 - 1072: -41,35 - 1073: -38,23 - 1074: -42,19 - 1075: -38,15 - 1076: -42,8 - 1077: -37,6 - 1078: -36,0 - 1079: -38,-6 - 1080: -40,-10 - 1081: -38,-16 - 1082: -29,-22 - 1083: -25,-20 - 1084: -23,-15 - 1085: -27,-18 - 1086: -28,-16 - 1087: -13,-18 - 1088: -3,-19 - 1089: -7,-34 - 1090: -16,-44 - 1091: -19,-48 - 1092: -22,-44 - 1093: -33,-46 - 1094: -36,-40 - 1095: -32,-28 - 1234: -49,50 - 1235: -53,45 - 1236: -43,31 - 1237: -41,33 - 1238: -43,24 - 1239: -40,25 - 1240: -50,20 - 1241: -42,19 - 1242: -49,14 - 1243: -51,5 - 1244: -51,6 - 1245: -47,5 - 1246: -44,6 - 1250: -54,-18 - 1251: -53,-18 - 1252: -53,-17 - 1253: -50,-18 - 1254: -50,-18 - 1255: -59,-13 - 1256: -59,-13 - 1257: -60,-13 - 1258: -60,-12 - 1259: -59,-12 - 1274: -18,34 - 1275: -20,34 - 1383: -50,-5 - 1384: -48,-3 - 1385: -47,-5 - 1386: -48,-5 - 1387: -55,-1 - 1388: -57,1 - 1389: -57,0 - 1390: -55,1 - 1391: -57,-2 - 1392: -57,-1 - 1393: -56,-3 - 1394: -56,-5 - 1395: -57,-5 - 1396: -55,-7 - 1397: -57,-7 - 1403: 38,-18 - 1404: 37,-23 - 1405: 30,-23 - 1414: 33,3 - 1415: 26,1 - 1416: 15,-1 - 1419: 11,-4 - 1420: 21,10 - 1421: 11,16 - 1425: 21,19 - 1426: 27,19 - 1429: 21,21 - 1430: 23,22 - 1436: 16,23 - 1437: 12,22 - 1438: 12,21 - 1444: 18,-2 - 1447: 5,-8 - 1448: 5,-11 - 1454: -9,-4 - 1457: -4,-7 - 1458: -9,-9 - 1463: -17,-12 - 1464: -19,-12 - 1465: -19,-3 - 1468: -24,-6 - 1469: -24,-4 - 1472: -11,7 - 1477: -4,27 - 1478: -10,21 - 1479: -11,18 - 1480: -10,15 - 1481: -7,18 - 1483: -8,21 - 1484: -1,19 - 1485: -3,20 - 1493: -9,9 - 1495: -9,10 - 1496: -18,4 - 1501: -22,6 - 1502: -19,6 - 1503: -22,-8 - 1504: 12,-16 - 1540: 21,14 - 1591: -58,1 - 1592: -58,1 - 1593: -60,1 - 1594: -60,1 - 1595: -60,1 - 1596: -60,1 - 1597: -58,-2 - 1598: -58,-2 - 1599: -58,-2 - 1600: -58,-2 - 1601: -58,-2 - 1602: -58,-2 - 1603: -58,-2 - 1604: -58,-3 - 1605: -58,-3 - 1606: -58,-3 - 1607: -57,-4 - 1608: -56,-2 - 1609: -57,-1 - 1610: -57,-8 - 1611: -56,-9 - 1612: -51,10 - 1613: -50,12 - 1614: -50,15 - 1615: -50,16 - 1616: -51,19 - 1617: -51,18 - 1618: -49,20 - 1619: -48,19 - 1620: -47,17 - 1621: -45,17 - 1679: -28,31 - 1680: -38,25 - 1681: -25,24 - 1682: -25,29 - 1683: -23,31 - 1684: -23,35 - 1685: -23,34 - 1686: -15,25 - 1687: -18,25 - 1688: -21,26 - 1689: -15,26 - 1710: -13,5 - 1711: -11,6 - 1725: 40,-20 - 1726: 39,-20 - 1727: 40,-18 - 1751: -8,38 - 1752: -5,36 - 1753: -5,35 - 1754: -9,36 - 1755: -8,35 - 1756: -8,33 - 1757: -12,33 - 1758: -17,34 - 1759: -15,36 - 1760: -15,38 - 1761: -14,38 - 1762: -12,39 - 1763: -13,35 - 1764: -12,36 - 1765: -8,39 - 1766: -6,29 - 1767: -4,31 - 1768: -4,33 - 1769: -4,34 - 1770: -5,33 - 1771: -6,33 - 1772: -1,34 - 1775: 2,32 - 1776: -2,29 - 1777: 0,32 - 1778: -33,35 - 1779: -33,34 - 1780: -33,36 - 1781: -33,38 - 1789: -20,-24 - 1790: -19,-24 - 1791: -19,-21 - 1792: -18,-24 - 1793: -17,-20 - 1794: -22,-26 - 1796: -7,-22 - 1797: -8,-21 - 1824: -32,0 - 2505: -14,-25 - 2508: 10,-27 - 2512: 9,-21 - 2515: 20,-32 - 2516: 19,-33 - 2525: 19,-26 - 2588: 11,-41 + 483: 28,-10 + 484: 35,-16 + 485: 33,-17 + 813: 34,-13 + 814: 32,-12 + 838: 28,-13 + 839: 31,-13 + 840: 31,-10 + 841: 29,-11 + 842: 29,-12 + 843: 34,-10 + 844: 35,-9 + 845: 33,-9 + 846: 32,-9 + 847: 32,-10 + 848: 33,-10 + 877: 29,-3 + 878: 28,-4 + 879: 30,-5 + 880: 31,-6 + 881: 32,-6 + 883: 32,-4 + 884: 32,-3 + 885: 32,-2 + 887: 34,-3 + 890: 33,-16 + 891: 32,-16 + 1009: 20,1 + 1010: 23,-9 + 1057: -47,43 + 1058: -48,43 + 1059: -41,35 + 1060: -38,23 + 1061: -42,19 + 1062: -38,15 + 1063: -42,8 + 1064: -37,6 + 1065: -36,0 + 1066: -38,-6 + 1067: -40,-10 + 1068: -38,-16 + 1069: -29,-22 + 1070: -25,-20 + 1071: -23,-15 + 1072: -27,-18 + 1073: -28,-16 + 1074: -13,-18 + 1075: -3,-19 + 1076: -7,-34 + 1077: -16,-44 + 1078: -19,-48 + 1079: -22,-44 + 1080: -33,-46 + 1081: -36,-40 + 1082: -32,-28 + 1221: -49,50 + 1222: -53,45 + 1223: -43,31 + 1224: -41,33 + 1225: -43,24 + 1226: -40,25 + 1227: -50,20 + 1228: -42,19 + 1229: -49,14 + 1230: -51,5 + 1231: -51,6 + 1232: -47,5 + 1233: -44,6 + 1237: -54,-18 + 1238: -53,-18 + 1239: -53,-17 + 1240: -50,-18 + 1241: -50,-18 + 1242: -59,-13 + 1243: -59,-13 + 1244: -60,-13 + 1245: -60,-12 + 1246: -59,-12 + 1261: -18,34 + 1262: -20,34 + 1370: -50,-5 + 1371: -48,-3 + 1372: -47,-5 + 1373: -48,-5 + 1374: -55,-1 + 1375: -57,1 + 1376: -57,0 + 1377: -55,1 + 1378: -57,-2 + 1379: -57,-1 + 1380: -56,-3 + 1381: -56,-5 + 1382: -57,-5 + 1383: -55,-7 + 1384: -57,-7 + 1390: 38,-18 + 1391: 37,-23 + 1392: 30,-23 + 1401: 33,3 + 1402: 26,1 + 1403: 15,-1 + 1406: 11,-4 + 1407: 21,10 + 1408: 11,16 + 1412: 21,19 + 1413: 27,19 + 1416: 21,21 + 1417: 23,22 + 1423: 16,23 + 1424: 12,22 + 1425: 12,21 + 1431: 18,-2 + 1434: 5,-8 + 1435: 5,-11 + 1441: -9,-4 + 1444: -4,-7 + 1445: -9,-9 + 1450: -17,-12 + 1451: -19,-12 + 1452: -19,-3 + 1455: -24,-6 + 1456: -24,-4 + 1459: -11,7 + 1464: -4,27 + 1465: -10,21 + 1466: -11,18 + 1467: -10,15 + 1468: -7,18 + 1470: -8,21 + 1471: -1,19 + 1472: -3,20 + 1480: -9,9 + 1482: -9,10 + 1483: -18,4 + 1488: -22,6 + 1489: -19,6 + 1490: -22,-8 + 1491: 12,-16 + 1527: 21,14 + 1578: -58,1 + 1579: -58,1 + 1580: -60,1 + 1581: -60,1 + 1582: -60,1 + 1583: -60,1 + 1584: -58,-2 + 1585: -58,-2 + 1586: -58,-2 + 1587: -58,-2 + 1588: -58,-2 + 1589: -58,-2 + 1590: -58,-2 + 1591: -58,-3 + 1592: -58,-3 + 1593: -58,-3 + 1594: -57,-4 + 1595: -56,-2 + 1596: -57,-1 + 1597: -57,-8 + 1598: -56,-9 + 1599: -51,10 + 1600: -50,12 + 1601: -50,15 + 1602: -50,16 + 1603: -51,19 + 1604: -51,18 + 1605: -49,20 + 1606: -48,19 + 1607: -47,17 + 1608: -45,17 + 1666: -28,31 + 1667: -38,25 + 1668: -25,24 + 1669: -25,29 + 1670: -23,31 + 1671: -23,35 + 1672: -23,34 + 1673: -15,25 + 1674: -18,25 + 1675: -21,26 + 1676: -15,26 + 1697: -13,5 + 1698: -11,6 + 1712: 40,-20 + 1713: 39,-20 + 1714: 40,-18 + 1738: -8,38 + 1739: -5,36 + 1740: -5,35 + 1741: -9,36 + 1742: -8,35 + 1743: -8,33 + 1744: -12,33 + 1745: -17,34 + 1746: -15,36 + 1747: -15,38 + 1748: -14,38 + 1749: -12,39 + 1750: -13,35 + 1751: -12,36 + 1752: -8,39 + 1753: -6,29 + 1754: -4,31 + 1755: -4,33 + 1756: -4,34 + 1757: -5,33 + 1758: -6,33 + 1759: -1,34 + 1762: 2,32 + 1763: -2,29 + 1764: 0,32 + 1765: -33,35 + 1766: -33,34 + 1767: -33,36 + 1768: -33,38 + 1776: -20,-24 + 1777: -19,-24 + 1778: -19,-21 + 1779: -18,-24 + 1780: -17,-20 + 1781: -22,-26 + 1783: -7,-22 + 1784: -8,-21 + 1811: -32,0 + 2492: -14,-25 + 2495: 10,-27 + 2499: 9,-21 + 2502: 20,-32 + 2503: 19,-33 + 2512: 19,-26 + 2575: 11,-41 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2506: -14,-22 - 2517: 19,-27 - 2526: 20,-26 - 2556: -47,-15 - 2589: 11,-44 - 2593: 11,-37 + 2493: -14,-22 + 2504: 19,-27 + 2513: 20,-26 + 2543: -47,-15 + 2576: 11,-44 + 2580: 11,-37 - node: cleanable: True color: '#5D2C00D3' id: DirtLight decals: - 1825: -32,-1 - 1826: -33,5 + 1812: -32,-1 + 1813: -33,5 - node: cleanable: True color: '#792C00D1' id: DirtLight decals: - 1871: -8,-36 - 1872: -8,-23 - 1873: -8,-19 - 1874: -12,-18 - 1875: -13,-17 + 1858: -8,-36 + 1859: -8,-23 + 1860: -8,-19 + 1861: -12,-18 + 1862: -13,-17 - node: cleanable: True color: '#835432FF' id: DirtLight decals: - 2239: 28,-17 - 2241: 27,-17 + 2226: 28,-17 + 2228: 27,-17 - node: cleanable: True color: '#A0521263' id: DirtLight decals: - 1925: 19,7 - 2078: 25,-15 + 1912: 19,7 + 2065: 25,-15 - node: cleanable: True color: '#FF0000B7' id: DirtLight decals: - 1954: 20,6 + 1941: 20,6 - node: cleanable: True color: '#FF0000FF' id: DirtLight decals: - 1309: -50,-15 + 1296: -50,-15 - node: cleanable: True color: '#FFFCFFFF' id: DirtLight decals: - 2151: -12,-79 - 2152: -11,-78 - 2153: -8,-74 - 2154: -7,-78 - 2155: -8,-79 - 2156: -13,-76 - 2157: -18,-77 - 2158: -14,-73 - 2159: -17,-72 - 2160: -20,-78 - 2161: -22,-78 - 2162: -26,-75 - 2163: -22,-82 - 2164: -16,-82 - 2165: -11,-86 - 2166: -15,-88 - 2167: -20,-79 - 2168: -28,-80 - 2169: -17,-68 - 2170: -17,-65 - 2171: -17,-69 - 2172: -16,-73 - 2216: -17,-46 - 2217: -16,-42 - 2218: -12,-46 - 2219: -20,-46 - 2220: -17,-37 - 2221: -13,-40 - 2222: -21,-36 + 2138: -12,-79 + 2139: -11,-78 + 2140: -8,-74 + 2141: -7,-78 + 2142: -8,-79 + 2143: -13,-76 + 2144: -18,-77 + 2145: -14,-73 + 2146: -17,-72 + 2147: -20,-78 + 2148: -22,-78 + 2149: -26,-75 + 2150: -22,-82 + 2151: -16,-82 + 2152: -11,-86 + 2153: -15,-88 + 2154: -20,-79 + 2155: -28,-80 + 2156: -17,-68 + 2157: -17,-65 + 2158: -17,-69 + 2159: -16,-73 + 2203: -17,-46 + 2204: -16,-42 + 2205: -12,-46 + 2206: -20,-46 + 2207: -17,-37 + 2208: -13,-40 + 2209: -21,-36 - node: cleanable: True color: '#FFFFFFFF' @@ -2713,354 +2713,354 @@ entities: 68: -28,11 69: -28,12 71: -29,11 - 499: 32,-16 - 500: 34,-17 - 503: 33,-16 - 504: 26,-13 - 829: 33,-12 - 830: 32,-13 - 831: 29,-9 - 832: 29,-11 - 833: 29,-12 - 834: 31,-12 - 835: 29,-12 - 836: 30,-11 - 837: 31,-10 - 838: 30,-9 - 839: 30,-9 - 840: 30,-10 - 841: 31,-10 - 842: 31,-9 - 843: 30,-9 - 844: 30,-10 - 845: 29,-9 - 862: 35,-9 - 863: 34,-9 - 864: 31,-9 - 865: 30,-9 - 866: 35,-7 - 867: 32,-7 - 868: 31,-5 - 869: 32,-4 - 870: 29,-4 - 871: 29,-6 - 872: 29,-7 - 873: 33,-4 - 874: 34,-4 - 875: 30,-4 - 876: 29,-5 - 1144: 41,8 - 1145: 39,9 - 1146: 39,13 - 1147: 39,13 - 1148: 36,17 - 1149: 34,19 - 1150: 32,21 - 1151: 34,24 - 1152: 30,22 - 1153: 32,23 - 1154: 44,13 - 1155: 44,12 - 1156: 44,11 - 1157: 54,11 - 1158: 50,6 - 1159: 52,6 - 1160: 55,6 - 1161: 56,8 - 1162: 59,11 - 1163: 55,16 - 1164: 54,14 - 1165: 54,16 - 1166: 45,13 - 1167: 41,13 - 1168: 42,13 - 1169: 36,9 - 1170: 42,16 - 1171: 29,10 - 1172: 36,8 - 1173: 21,6 - 1174: 29,6 - 1175: 14,0 - 1176: 17,-4 - 1177: 22,-2 - 1178: 9,-6 - 1179: 12,-10 - 1180: 16,-8 - 1181: 7,-12 - 1182: 1,-10 - 1183: 6,-20 - 1184: -1,-15 - 1185: -3,-21 - 1186: 11,-19 - 1187: 7,-23 - 1188: 1,-23 - 1189: -1,-30 - 1190: 7,-31 - 1191: -2,-32 - 1192: 0,-42 - 1193: -1,-36 - 1194: -15,-41 - 1195: -18,-36 - 1196: -8,-43 - 1197: -25,-39 - 1198: -18,-44 - 1199: -18,-35 - 1200: -15,-38 - 1201: -25,-31 - 1202: -12,-29 - 1203: -24,-28 - 1204: -35,-22 - 1205: -20,-20 - 1206: -26,-27 - 1207: -28,-20 - 1208: -36,-18 - 1209: -33,-8 - 1210: -29,-16 - 1211: -45,-10 - 1212: -43,-1 - 1213: -36,-8 - 1214: -42,-1 - 1215: -45,2 - 1216: -54,2 - 1217: -42,7 - 1218: -45,21 - 1219: -46,27 - 1220: -38,33 - 1221: -50,36 - 1222: -38,46 - 1223: -36,45 - 1224: -36,44 - 1225: -42,50 - 1226: -44,51 - 1227: -40,57 - 1228: -39,57 - 1229: -46,57 - 1230: -41,60 - 1231: -47,61 - 1232: -44,65 - 1233: -39,65 - 1260: -59,-7 - 1261: -61,-8 - 1262: -58,-3 - 1263: -59,-3 - 1264: -59,-1 - 1265: -59,0 - 1266: -58,-1 - 1267: -59,0 - 1268: -60,0 - 1269: -60,1 - 1270: -59,1 - 1276: -15,35 - 1277: -15,38 - 1278: -4,38 - 1279: -5,38 - 1410: 40,-4 - 1411: 39,1 - 1412: 33,1 - 1413: 34,3 - 1417: 14,-4 - 1418: 11,-5 - 1422: 10,15 - 1423: 23,10 - 1428: 22,22 - 1434: 23,25 - 1435: 17,25 - 1456: -6,-6 - 1459: -7,-10 - 1466: -24,1 - 1470: -25,-5 - 1482: -12,17 - 1490: -7,10 - 1491: -9,9 - 1492: -8,9 - 1497: -22,5 - 1498: -18,6 - 1499: -18,5 - 1500: -21,6 - 1505: 9,-16 - 1506: 9,-14 - 1507: 21,-13 - 1508: 20,-14 - 1509: 28,-19 - 1510: 38,-24 - 1511: 40,-19 - 1512: 37,-16 - 1513: 40,-11 - 1514: 37,-4 - 1515: 37,0 - 1516: 33,1 - 1517: 32,12 - 1518: 31,13 - 1519: 30,13 - 1539: 27,11 - 1541: 7,-11 - 1542: 8,-12 - 1543: 8,-13 - 1544: 8,-11 - 1545: 2,-6 - 1546: 4,-6 - 1547: 1,-7 - 1548: 3,-6 - 1549: 1,-2 - 1550: 1,-1 - 1551: -1,3 - 1552: -4,1 - 1553: -9,0 - 1554: -12,0 - 1555: -16,0 - 1556: -17,-2 - 1557: -18,-3 - 1558: -18,-6 - 1559: -18,-10 - 1560: -18,-12 - 1561: -17,-14 - 1562: -22,-13 - 1563: -22,-13 - 1564: -22,-15 - 1565: -30,-11 - 1566: -32,-9 - 1567: -34,-9 - 1568: -36,-10 - 1569: -37,-10 - 1570: -41,-10 - 1571: -43,-10 - 1572: -45,-10 - 1573: -38,-12 - 1574: -38,-12 - 1575: -38,-14 - 1576: -38,-14 - 1577: -41,-15 - 1578: -45,-11 - 1579: -49,-9 - 1580: -50,-10 - 1581: -51,-15 - 1582: -53,-14 - 1583: -50,-15 - 1584: -53,-13 - 1585: -56,-12 - 1586: -57,-10 - 1587: -55,-9 - 1588: -55,-8 - 1589: -56,-8 - 1590: -55,-9 - 1622: -51,15 - 1623: -51,14 - 1624: -49,13 - 1625: -48,13 - 1626: -47,13 - 1627: -47,16 - 1628: -47,19 - 1629: -48,21 - 1630: -47,23 - 1631: -50,23 - 1632: -50,22 - 1633: -42,13 - 1634: -43,12 - 1635: -43,10 - 1636: -42,11 - 1637: -42,14 - 1638: -42,18 - 1639: -43,19 - 1640: -43,21 - 1641: -43,22 - 1642: -42,22 - 1643: -41,19 - 1644: -41,17 - 1645: -41,16 - 1646: -41,14 - 1647: -41,13 - 1648: -40,27 - 1649: -39,26 - 1650: -39,29 - 1651: -35,27 - 1652: -39,26 - 1653: -40,26 - 1654: -41,33 - 1655: -45,33 - 1656: -48,33 - 1657: -49,34 - 1658: -51,34 - 1659: -51,33 - 1660: -50,39 - 1661: -49,40 - 1662: -48,40 - 1663: -48,40 - 1664: -36,37 - 1665: -37,37 - 1666: -37,37 - 1667: -37,36 - 1668: -37,36 - 1669: -36,36 - 1670: -37,34 - 1671: -37,32 - 1672: -32,25 - 1673: -33,25 - 1674: -33,25 - 1690: -14,27 - 1691: -20,25 - 1692: -14,26 - 1693: -23,25 - 1694: -24,22 - 1695: -23,31 - 1696: -25,31 - 1697: -25,29 - 1699: -23,36 - 1700: -24,33 - 1701: -24,22 - 1702: -24,16 - 1703: -24,15 - 1704: -24,14 - 1705: -26,11 - 1706: -26,11 - 1707: -26,8 - 1712: -10,5 - 1713: -16,4 - 1714: -14,3 - 1715: -14,6 - 1716: -14,6 - 1717: -15,-1 - 1728: 30,-20 - 1729: 28,-20 - 1730: 28,-19 - 1731: 25,-8 - 1732: 25,-8 - 1733: 25,-6 - 1734: 24,-8 - 1735: 24,-6 - 1736: 24,-3 - 1737: 24,-3 - 1738: 26,-6 - 1739: 22,7 - 1740: 14,7 - 1741: 13,8 - 1742: 11,8 - 1743: 12,10 - 1744: 12,10 - 1745: 10,10 - 1746: 10,12 - 1747: 8,11 - 1748: 7,9 - 1749: 6,7 - 1800: -3,-28 - 1801: -5,-28 - 1802: -5,-23 - 1803: -5,-27 - 1804: -3,-29 - 1805: -2,-28 - 1806: 0,-24 - 1807: -1,-23 - 1808: 1,-24 - 2509: 12,-23 - 2510: 9,-20 - 2527: 20,-28 - 2528: 17,-26 - 2529: 16,-31 - 2530: 12,-14 - 2531: 9,-14 - 2532: 4,-14 - 2533: 14,-22 - 2557: -46,-16 - 2590: 11,-43 + 486: 32,-16 + 487: 34,-17 + 490: 33,-16 + 491: 26,-13 + 816: 33,-12 + 817: 32,-13 + 818: 29,-9 + 819: 29,-11 + 820: 29,-12 + 821: 31,-12 + 822: 29,-12 + 823: 30,-11 + 824: 31,-10 + 825: 30,-9 + 826: 30,-9 + 827: 30,-10 + 828: 31,-10 + 829: 31,-9 + 830: 30,-9 + 831: 30,-10 + 832: 29,-9 + 849: 35,-9 + 850: 34,-9 + 851: 31,-9 + 852: 30,-9 + 853: 35,-7 + 854: 32,-7 + 855: 31,-5 + 856: 32,-4 + 857: 29,-4 + 858: 29,-6 + 859: 29,-7 + 860: 33,-4 + 861: 34,-4 + 862: 30,-4 + 863: 29,-5 + 1131: 41,8 + 1132: 39,9 + 1133: 39,13 + 1134: 39,13 + 1135: 36,17 + 1136: 34,19 + 1137: 32,21 + 1138: 34,24 + 1139: 30,22 + 1140: 32,23 + 1141: 44,13 + 1142: 44,12 + 1143: 44,11 + 1144: 54,11 + 1145: 50,6 + 1146: 52,6 + 1147: 55,6 + 1148: 56,8 + 1149: 59,11 + 1150: 55,16 + 1151: 54,14 + 1152: 54,16 + 1153: 45,13 + 1154: 41,13 + 1155: 42,13 + 1156: 36,9 + 1157: 42,16 + 1158: 29,10 + 1159: 36,8 + 1160: 21,6 + 1161: 29,6 + 1162: 14,0 + 1163: 17,-4 + 1164: 22,-2 + 1165: 9,-6 + 1166: 12,-10 + 1167: 16,-8 + 1168: 7,-12 + 1169: 1,-10 + 1170: 6,-20 + 1171: -1,-15 + 1172: -3,-21 + 1173: 11,-19 + 1174: 7,-23 + 1175: 1,-23 + 1176: -1,-30 + 1177: 7,-31 + 1178: -2,-32 + 1179: 0,-42 + 1180: -1,-36 + 1181: -15,-41 + 1182: -18,-36 + 1183: -8,-43 + 1184: -25,-39 + 1185: -18,-44 + 1186: -18,-35 + 1187: -15,-38 + 1188: -25,-31 + 1189: -12,-29 + 1190: -24,-28 + 1191: -35,-22 + 1192: -20,-20 + 1193: -26,-27 + 1194: -28,-20 + 1195: -36,-18 + 1196: -33,-8 + 1197: -29,-16 + 1198: -45,-10 + 1199: -43,-1 + 1200: -36,-8 + 1201: -42,-1 + 1202: -45,2 + 1203: -54,2 + 1204: -42,7 + 1205: -45,21 + 1206: -46,27 + 1207: -38,33 + 1208: -50,36 + 1209: -38,46 + 1210: -36,45 + 1211: -36,44 + 1212: -42,50 + 1213: -44,51 + 1214: -40,57 + 1215: -39,57 + 1216: -46,57 + 1217: -41,60 + 1218: -47,61 + 1219: -44,65 + 1220: -39,65 + 1247: -59,-7 + 1248: -61,-8 + 1249: -58,-3 + 1250: -59,-3 + 1251: -59,-1 + 1252: -59,0 + 1253: -58,-1 + 1254: -59,0 + 1255: -60,0 + 1256: -60,1 + 1257: -59,1 + 1263: -15,35 + 1264: -15,38 + 1265: -4,38 + 1266: -5,38 + 1397: 40,-4 + 1398: 39,1 + 1399: 33,1 + 1400: 34,3 + 1404: 14,-4 + 1405: 11,-5 + 1409: 10,15 + 1410: 23,10 + 1415: 22,22 + 1421: 23,25 + 1422: 17,25 + 1443: -6,-6 + 1446: -7,-10 + 1453: -24,1 + 1457: -25,-5 + 1469: -12,17 + 1477: -7,10 + 1478: -9,9 + 1479: -8,9 + 1484: -22,5 + 1485: -18,6 + 1486: -18,5 + 1487: -21,6 + 1492: 9,-16 + 1493: 9,-14 + 1494: 21,-13 + 1495: 20,-14 + 1496: 28,-19 + 1497: 38,-24 + 1498: 40,-19 + 1499: 37,-16 + 1500: 40,-11 + 1501: 37,-4 + 1502: 37,0 + 1503: 33,1 + 1504: 32,12 + 1505: 31,13 + 1506: 30,13 + 1526: 27,11 + 1528: 7,-11 + 1529: 8,-12 + 1530: 8,-13 + 1531: 8,-11 + 1532: 2,-6 + 1533: 4,-6 + 1534: 1,-7 + 1535: 3,-6 + 1536: 1,-2 + 1537: 1,-1 + 1538: -1,3 + 1539: -4,1 + 1540: -9,0 + 1541: -12,0 + 1542: -16,0 + 1543: -17,-2 + 1544: -18,-3 + 1545: -18,-6 + 1546: -18,-10 + 1547: -18,-12 + 1548: -17,-14 + 1549: -22,-13 + 1550: -22,-13 + 1551: -22,-15 + 1552: -30,-11 + 1553: -32,-9 + 1554: -34,-9 + 1555: -36,-10 + 1556: -37,-10 + 1557: -41,-10 + 1558: -43,-10 + 1559: -45,-10 + 1560: -38,-12 + 1561: -38,-12 + 1562: -38,-14 + 1563: -38,-14 + 1564: -41,-15 + 1565: -45,-11 + 1566: -49,-9 + 1567: -50,-10 + 1568: -51,-15 + 1569: -53,-14 + 1570: -50,-15 + 1571: -53,-13 + 1572: -56,-12 + 1573: -57,-10 + 1574: -55,-9 + 1575: -55,-8 + 1576: -56,-8 + 1577: -55,-9 + 1609: -51,15 + 1610: -51,14 + 1611: -49,13 + 1612: -48,13 + 1613: -47,13 + 1614: -47,16 + 1615: -47,19 + 1616: -48,21 + 1617: -47,23 + 1618: -50,23 + 1619: -50,22 + 1620: -42,13 + 1621: -43,12 + 1622: -43,10 + 1623: -42,11 + 1624: -42,14 + 1625: -42,18 + 1626: -43,19 + 1627: -43,21 + 1628: -43,22 + 1629: -42,22 + 1630: -41,19 + 1631: -41,17 + 1632: -41,16 + 1633: -41,14 + 1634: -41,13 + 1635: -40,27 + 1636: -39,26 + 1637: -39,29 + 1638: -35,27 + 1639: -39,26 + 1640: -40,26 + 1641: -41,33 + 1642: -45,33 + 1643: -48,33 + 1644: -49,34 + 1645: -51,34 + 1646: -51,33 + 1647: -50,39 + 1648: -49,40 + 1649: -48,40 + 1650: -48,40 + 1651: -36,37 + 1652: -37,37 + 1653: -37,37 + 1654: -37,36 + 1655: -37,36 + 1656: -36,36 + 1657: -37,34 + 1658: -37,32 + 1659: -32,25 + 1660: -33,25 + 1661: -33,25 + 1677: -14,27 + 1678: -20,25 + 1679: -14,26 + 1680: -23,25 + 1681: -24,22 + 1682: -23,31 + 1683: -25,31 + 1684: -25,29 + 1686: -23,36 + 1687: -24,33 + 1688: -24,22 + 1689: -24,16 + 1690: -24,15 + 1691: -24,14 + 1692: -26,11 + 1693: -26,11 + 1694: -26,8 + 1699: -10,5 + 1700: -16,4 + 1701: -14,3 + 1702: -14,6 + 1703: -14,6 + 1704: -15,-1 + 1715: 30,-20 + 1716: 28,-20 + 1717: 28,-19 + 1718: 25,-8 + 1719: 25,-8 + 1720: 25,-6 + 1721: 24,-8 + 1722: 24,-6 + 1723: 24,-3 + 1724: 24,-3 + 1725: 26,-6 + 1726: 22,7 + 1727: 14,7 + 1728: 13,8 + 1729: 11,8 + 1730: 12,10 + 1731: 12,10 + 1732: 10,10 + 1733: 10,12 + 1734: 8,11 + 1735: 7,9 + 1736: 6,7 + 1787: -3,-28 + 1788: -5,-28 + 1789: -5,-23 + 1790: -5,-27 + 1791: -3,-29 + 1792: -2,-28 + 1793: 0,-24 + 1794: -1,-23 + 1795: 1,-24 + 2496: 12,-23 + 2497: 9,-20 + 2514: 20,-28 + 2515: 17,-26 + 2516: 16,-31 + 2517: 12,-14 + 2518: 9,-14 + 2519: 4,-14 + 2520: 14,-22 + 2544: -46,-16 + 2577: 11,-43 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3074,532 +3074,532 @@ entities: color: '#FFFFFFFF' id: DirtLight decals: - 1975: -17,26 + 1962: -17,26 - node: cleanable: True color: '#5D2C00D3' id: DirtMedium decals: - 1831: -35,7 - 1832: -38,5 - 1833: -42,5 - 1834: -41,10 - 1835: -44,13 - 1836: -41,17 - 1837: -51,11 + 1818: -35,7 + 1819: -38,5 + 1820: -42,5 + 1821: -41,10 + 1822: -44,13 + 1823: -41,17 + 1824: -51,11 - node: cleanable: True color: '#8354329E' id: DirtMedium decals: - 2245: 25,-15 + 2232: 25,-15 - node: cleanable: True color: '#835432FF' id: DirtMedium decals: - 2240: 27,-16 - 2242: 28,-17 + 2227: 27,-16 + 2229: 28,-17 - node: cleanable: True color: '#FF0000FF' id: DirtMedium decals: - 1308: -57,-10 + 1295: -57,-10 - node: cleanable: True color: '#FFFFFFF7' id: DirtMedium decals: - 1326: -33,0 - 1327: -34,0 + 1313: -33,0 + 1314: -34,0 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: 70: -29,9 - 501: 33,-15 - 502: 34,-16 - 543: 34,-16 - 828: 34,-12 - 846: 31,-11 - 847: 31,-10 - 848: 29,-11 - 849: 28,-10 - 850: 28,-12 - 877: 33,-4 - 878: 33,-4 - 879: 34,-5 - 880: 31,-7 - 881: 30,-7 - 882: 28,-7 - 883: 29,-5 - 884: 30,-3 - 885: 29,-5 - 886: 35,-6 - 887: 36,-6 - 1024: 21,-16 - 1096: -18,-19 - 1097: -15,-13 - 1098: -18,-9 - 1099: -17,-3 - 1100: -19,0 - 1101: -5,5 - 1102: -1,25 - 1103: 1,26 - 1104: 2,26 - 1105: 5,29 - 1106: 6,29 - 1107: 9,30 - 1108: 14,30 - 1109: 18,28 - 1110: 20,28 - 1111: 23,28 - 1112: 26,28 - 1113: 29,28 - 1114: 30,27 - 1115: 31,25 - 1116: 31,24 - 1117: 32,22 - 1118: 34,20 - 1119: 33,18 - 1120: 34,18 - 1121: 36,17 - 1122: 37,16 - 1123: 38,15 - 1124: 40,15 - 1125: 40,14 - 1126: 40,13 - 1127: 41,10 - 1128: 40,9 - 1129: 42,7 - 1130: 41,7 - 1131: 41,7 - 1132: 41,6 - 1133: 40,6 - 1134: 40,6 - 1135: 41,6 - 1136: 41,4 - 1137: 41,4 - 1138: 39,5 - 1139: 39,6 - 1140: 39,7 - 1141: 39,7 - 1142: 39,9 - 1143: 39,8 - 1247: -56,-17 - 1248: -57,-17 - 1249: -57,-18 - 1280: -13,38 - 1281: -13,39 - 1284: -25,10 - 1285: -26,6 - 1286: -25,1 - 1287: -16,2 - 1288: -8,6 - 1289: -11,10 - 1290: -14,10 - 1291: -19,11 - 1292: -19,10 - 1293: -13,15 - 1294: -15,14 - 1295: -14,15 - 1296: -14,14 - 1297: -13,14 - 1380: -54,-5 - 1381: -54,-3 - 1382: -50,-3 - 1398: -55,-10 - 1399: -57,-5 - 1406: 38,-22 - 1407: 39,-17 - 1408: 38,-11 - 1409: 40,-9 - 1424: 23,19 - 1427: 25,19 - 1431: 22,21 - 1432: 20,24 - 1433: 20,26 - 1439: 13,21 - 1440: 10,21 - 1441: 12,14 - 1449: 6,-8 - 1450: 6,-6 - 1451: 6,-7 - 1452: -2,-1 - 1455: -6,-4 - 1471: -22,-5 - 1486: -10,10 - 1487: -8,12 - 1488: -7,10 - 1489: -7,10 - 1520: 37,12 - 1521: 30,12 - 1522: 31,12 - 1523: 30,12 - 1524: 26,11 - 1525: 26,14 - 1526: 26,16 - 1527: 22,15 - 1528: 22,18 - 1529: 22,12 - 1530: 17,16 - 1531: 13,16 - 1532: 10,12 - 1533: 8,9 - 1534: 13,19 - 1535: 12,22 - 1536: 13,25 - 1537: 9,25 - 1538: 10,25 - 1724: 40,-10 - 1850: 34,-15 - 1851: 33,-17 - 1852: 25,-5 - 1853: 26,-4 - 2507: -12,-23 - 2511: 12,-28 - 2631: -5,-48 - 2632: -4,-47 - 2633: 1,-46 - 2634: -1,-46 - 2635: -3,-48 - 2636: -3,-40 - 2637: 1,-43 - 2638: -3,-39 - 2639: -6,-40 - 2640: -7,-40 - 2641: -8,-40 - 2642: -6,-38 - 2643: -3,-39 - 2644: 1,-43 - 2645: 1,-39 - 2646: 0,-38 - 2647: -3,-42 - 2648: 2,-44 - 2649: -1,-47 - 2650: -3,-48 - 2651: 0,-50 - 2652: -3,-51 - 2653: -3,-51 - 2654: -4,-50 - 2655: -6,-50 - 2656: -8,-49 - 2657: -9,-48 - 2658: -8,-49 - 2659: -8,-51 - 2660: -8,-52 - 2661: -8,-52 - 2662: 0,-52 - 2663: 1,-51 + 488: 33,-15 + 489: 34,-16 + 530: 34,-16 + 815: 34,-12 + 833: 31,-11 + 834: 31,-10 + 835: 29,-11 + 836: 28,-10 + 837: 28,-12 + 864: 33,-4 + 865: 33,-4 + 866: 34,-5 + 867: 31,-7 + 868: 30,-7 + 869: 28,-7 + 870: 29,-5 + 871: 30,-3 + 872: 29,-5 + 873: 35,-6 + 874: 36,-6 + 1011: 21,-16 + 1083: -18,-19 + 1084: -15,-13 + 1085: -18,-9 + 1086: -17,-3 + 1087: -19,0 + 1088: -5,5 + 1089: -1,25 + 1090: 1,26 + 1091: 2,26 + 1092: 5,29 + 1093: 6,29 + 1094: 9,30 + 1095: 14,30 + 1096: 18,28 + 1097: 20,28 + 1098: 23,28 + 1099: 26,28 + 1100: 29,28 + 1101: 30,27 + 1102: 31,25 + 1103: 31,24 + 1104: 32,22 + 1105: 34,20 + 1106: 33,18 + 1107: 34,18 + 1108: 36,17 + 1109: 37,16 + 1110: 38,15 + 1111: 40,15 + 1112: 40,14 + 1113: 40,13 + 1114: 41,10 + 1115: 40,9 + 1116: 42,7 + 1117: 41,7 + 1118: 41,7 + 1119: 41,6 + 1120: 40,6 + 1121: 40,6 + 1122: 41,6 + 1123: 41,4 + 1124: 41,4 + 1125: 39,5 + 1126: 39,6 + 1127: 39,7 + 1128: 39,7 + 1129: 39,9 + 1130: 39,8 + 1234: -56,-17 + 1235: -57,-17 + 1236: -57,-18 + 1267: -13,38 + 1268: -13,39 + 1271: -25,10 + 1272: -26,6 + 1273: -25,1 + 1274: -16,2 + 1275: -8,6 + 1276: -11,10 + 1277: -14,10 + 1278: -19,11 + 1279: -19,10 + 1280: -13,15 + 1281: -15,14 + 1282: -14,15 + 1283: -14,14 + 1284: -13,14 + 1367: -54,-5 + 1368: -54,-3 + 1369: -50,-3 + 1385: -55,-10 + 1386: -57,-5 + 1393: 38,-22 + 1394: 39,-17 + 1395: 38,-11 + 1396: 40,-9 + 1411: 23,19 + 1414: 25,19 + 1418: 22,21 + 1419: 20,24 + 1420: 20,26 + 1426: 13,21 + 1427: 10,21 + 1428: 12,14 + 1436: 6,-8 + 1437: 6,-6 + 1438: 6,-7 + 1439: -2,-1 + 1442: -6,-4 + 1458: -22,-5 + 1473: -10,10 + 1474: -8,12 + 1475: -7,10 + 1476: -7,10 + 1507: 37,12 + 1508: 30,12 + 1509: 31,12 + 1510: 30,12 + 1511: 26,11 + 1512: 26,14 + 1513: 26,16 + 1514: 22,15 + 1515: 22,18 + 1516: 22,12 + 1517: 17,16 + 1518: 13,16 + 1519: 10,12 + 1520: 8,9 + 1521: 13,19 + 1522: 12,22 + 1523: 13,25 + 1524: 9,25 + 1525: 10,25 + 1711: 40,-10 + 1837: 34,-15 + 1838: 33,-17 + 1839: 25,-5 + 1840: 26,-4 + 2494: -12,-23 + 2498: 12,-28 + 2618: -5,-48 + 2619: -4,-47 + 2620: 1,-46 + 2621: -1,-46 + 2622: -3,-48 + 2623: -3,-40 + 2624: 1,-43 + 2625: -3,-39 + 2626: -6,-40 + 2627: -7,-40 + 2628: -8,-40 + 2629: -6,-38 + 2630: -3,-39 + 2631: 1,-43 + 2632: 1,-39 + 2633: 0,-38 + 2634: -3,-42 + 2635: 2,-44 + 2636: -1,-47 + 2637: -3,-48 + 2638: 0,-50 + 2639: -3,-51 + 2640: -3,-51 + 2641: -4,-50 + 2642: -6,-50 + 2643: -8,-49 + 2644: -9,-48 + 2645: -8,-49 + 2646: -8,-51 + 2647: -8,-52 + 2648: -8,-52 + 2649: 0,-52 + 2650: 1,-51 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 946: -28,24 - 947: -17,32 - 1329: -4,39 + 933: -28,24 + 934: -17,32 + 1316: -4,39 - node: cleanable: True color: '#FFFFFFFF' id: FlowersBROne decals: - 2272: -20,4 + 2259: -20,4 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 899: -2,-3 - 1328: -16,39 + 886: -2,-3 + 1315: -16,39 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 955: 15,2 - 956: 37,-11 - 957: 33,-19 + 942: 15,2 + 943: 37,-11 + 944: 33,-19 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 962: 34,-19 + 949: 34,-19 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 901: 2,2 - 949: -18,27 - 961: 34,-19 - 2082: -15.033748,27.036722 + 888: 2,2 + 936: -18,27 + 948: 34,-19 + 2069: -15.033748,27.036722 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 902: 2,3 - 963: 34,-19 - 964: 37,-13 + 889: 2,3 + 950: 34,-19 + 951: 37,-13 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 958: 34,-23 + 945: 34,-23 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 895: -2,-2 - 2081: -16.064997,26.932484 + 882: -2,-2 + 2068: -16.064997,26.932484 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 948: -17,27 - 959: 34,-23 - 960: 33,-23 + 935: -17,27 + 946: 34,-23 + 947: 33,-23 - node: cleanable: True color: '#FFFFFFFF' id: Flowersy3 decals: - 2273: -19,4 + 2260: -19,4 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 624: 11,8 - 625: 10,8 - 626: 10,7 - 643: 23,6 - 644: 19,8 - 645: 20,8 - 646: 21,8 - 647: 23,8 - 648: 17,6 - 649: 17,8 - 650: 20,6 - 651: 19,6 - 652: 21,6 - 653: 20,7 - 660: 11,7 - 769: 24,24 - 770: 25,24 - 771: 25,25 - 772: 24,25 - 773: 24,26 - 774: 25,26 - 2274: 26,24 - 2275: 26,26 - 2276: 26,25 + 611: 11,8 + 612: 10,8 + 613: 10,7 + 630: 23,6 + 631: 19,8 + 632: 20,8 + 633: 21,8 + 634: 23,8 + 635: 17,6 + 636: 17,8 + 637: 20,6 + 638: 19,6 + 639: 21,6 + 640: 20,7 + 647: 11,7 + 756: 24,24 + 757: 25,24 + 758: 25,25 + 759: 24,25 + 760: 24,26 + 761: 25,26 + 2261: 26,24 + 2262: 26,26 + 2263: 26,25 - node: cleanable: True color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 1310: -31,-1 - 1311: -34,-1 - 1312: -33,-1 - 1313: -31,0 - 1314: -34,0 - 1315: -33,0 - 1316: -34,1 - 1317: -33,1 - 1318: -31,1 - 1319: -31,2 - 1320: -33,2 - 1321: -34,2 - 1322: -34,3 - 1323: -33,3 - 1324: -31,3 + 1297: -31,-1 + 1298: -34,-1 + 1299: -33,-1 + 1300: -31,0 + 1301: -34,0 + 1302: -33,0 + 1303: -34,1 + 1304: -33,1 + 1305: -31,1 + 1306: -31,2 + 1307: -33,2 + 1308: -34,2 + 1309: -34,3 + 1310: -33,3 + 1311: -31,3 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 747: 27,16 - 748: 27,15 - 749: 28,15 - 750: 28,16 - 751: 27,13 - 752: 28,13 - 753: 28,14 - 754: 27,14 + 734: 27,16 + 735: 27,15 + 736: 28,15 + 737: 28,16 + 738: 27,13 + 739: 28,13 + 740: 28,14 + 741: 27,14 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 1002: -40,28 - 1003: -40,27 - 1004: -40,26 + 989: -40,28 + 990: -40,27 + 991: -40,26 - node: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 2111: -26,-80 - 2112: -25,-80 - 2113: -25,-74 - 2114: -26,-74 - 2115: -31,-77 + 2098: -26,-80 + 2099: -25,-80 + 2100: -25,-74 + 2101: -26,-74 + 2102: -31,-77 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 1349: -62.547764,-5.606035 - 1402: -50,5 + 1336: -62.547764,-5.606035 + 1389: -50,5 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 2266: -19,3 - 2267: -21,4 - 2268: -22,3 + 2253: -19,3 + 2254: -21,4 + 2255: -22,3 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1341: -61.648212,-5.625451 - 1342: -60.616962,-5.625451 + 1328: -61.648212,-5.625451 + 1329: -60.616962,-5.625451 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1335: -61.632587,-7.500451 - 1336: -59.273212,-9.375451 - 1340: -60.866962,-6.812951 + 1322: -61.632587,-7.500451 + 1323: -59.273212,-9.375451 + 1327: -60.866962,-6.812951 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1358: -62.77488,-9.999852 + 1345: -62.77488,-9.999852 - node: cleanable: True color: '#FFFFFFFF' id: Grassd2 decals: - 2269: -21,3 + 2256: -21,3 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1343: -60.788837,-9.828576 - 1344: -61.304462,-10.078576 + 1330: -60.788837,-9.828576 + 1331: -61.304462,-10.078576 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1337: -61.663837,-9.953576 - 1338: -59.320087,-7.359826 - 1339: -59.523212,-6.828576 - 1350: -63.25089,-6.387285 - 1351: -63.266514,-5.68416 - 1352: -62.735264,-6.262285 - 1353: -63.28214,-7.387285 + 1324: -61.663837,-9.953576 + 1325: -59.320087,-7.359826 + 1326: -59.523212,-6.828576 + 1337: -63.25089,-6.387285 + 1338: -63.266514,-5.68416 + 1339: -62.735264,-6.262285 + 1340: -63.28214,-7.387285 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1345: -58.820087,-10.078576 - 1346: -58.773212,-9.578576 - 1347: -58.429462,-9.406701 - 1348: -58.570087,-8.687951 + 1332: -58.820087,-10.078576 + 1333: -58.773212,-9.578576 + 1334: -58.429462,-9.406701 + 1335: -58.570087,-8.687951 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 2361: -47,-17 - 2362: -48,-17 + 2348: -47,-17 + 2349: -48,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 450: -7,27 - 451: -5,27 - 452: -6,27 - 453: -4,27 - 454: -3,27 - 455: -6,31 - 456: -5,31 - 1698: -4,31 + 437: -7,27 + 438: -5,27 + 439: -6,27 + 440: -4,27 + 441: -3,27 + 442: -6,31 + 443: -5,31 + 1685: -4,31 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 2315: 12,2 - 2316: 13,2 - 2474: 17,1 - 2475: 19,1 - 2476: 21,1 + 2302: 12,2 + 2303: 13,2 + 2461: 17,1 + 2462: 19,1 + 2463: 21,1 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 2290: -23,1 - 2291: -13,1 - 2297: -11,1 - 2298: -9,1 - 2299: -7,1 - 2309: -19,1 - 2310: -17,1 - 2311: -15,1 + 2277: -23,1 + 2278: -13,1 + 2284: -11,1 + 2285: -9,1 + 2286: -7,1 + 2296: -19,1 + 2297: -17,1 + 2298: -15,1 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 2428: 13,-13 - 2450: 15,-25 - 2451: 16,-25 - 2452: 17,-25 - 2464: 5,-3 - 2465: 6,-3 - 2466: 7,-3 - 2467: 8,-3 + 2415: 13,-13 + 2437: 15,-25 + 2438: 16,-25 + 2439: 17,-25 + 2451: 5,-3 + 2452: 6,-3 + 2453: 7,-3 + 2454: 8,-3 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 2471: 27,2 + 2458: 27,2 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 2489: -14,-24 - 2490: -13,-24 - 2491: -12,-24 - 2492: -11,-24 + 2476: -14,-24 + 2477: -13,-24 + 2478: -12,-24 + 2479: -11,-24 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 447: -6,29 - 448: -5,29 - 449: -4,29 + 434: -6,29 + 435: -5,29 + 436: -4,29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 2388: 14,-2 - 2389: 11,-2 - 2421: 6,-14 - 2422: 4,-14 - 2423: 3,-14 - 2425: 7,-14 - 2433: 13,-11 - 2444: 15,-33 - 2445: 16,-33 - 2446: 17,-33 - 2447: 19,-33 - 2448: 20,-33 - 2449: 21,-33 - 2454: 7,-8 - 2455: 6,-8 - 2456: 5,-8 - 2457: 4,-8 - 2458: 3,-8 - 2459: 2,-8 - 2463: 8,-8 - 2599: 5,-1 - 2600: 7,-1 - 2601: 9,-1 + 2375: 14,-2 + 2376: 11,-2 + 2408: 6,-14 + 2409: 4,-14 + 2410: 3,-14 + 2412: 7,-14 + 2420: 13,-11 + 2431: 15,-33 + 2432: 16,-33 + 2433: 17,-33 + 2434: 19,-33 + 2435: 20,-33 + 2436: 21,-33 + 2441: 7,-8 + 2442: 6,-8 + 2443: 5,-8 + 2444: 4,-8 + 2445: 3,-8 + 2446: 2,-8 + 2450: 8,-8 + 2586: 5,-1 + 2587: 7,-1 + 2588: 9,-1 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3621,59 +3621,59 @@ entities: 289: 3,-29 290: 4,-29 291: 5,-29 - 1816: 2,-29 - 2478: -15,-20 - 2479: -14,-20 - 2480: -13,-20 - 2481: -12,-20 - 2493: -14,-23 - 2494: -13,-23 - 2495: -12,-23 - 2496: -11,-23 + 1803: 2,-29 + 2465: -15,-20 + 2466: -14,-20 + 2467: -13,-20 + 2468: -12,-20 + 2480: -14,-23 + 2481: -13,-23 + 2482: -12,-23 + 2483: -11,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 460: -21,35 - 1708: -21,33 - 1709: -21,34 - 2595: 23,-5 - 2596: 23,-4 + 447: -21,35 + 1695: -21,33 + 1696: -21,34 + 2582: 23,-5 + 2583: 23,-4 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 2231: 24,-16 - 2232: 24,-15 - 2233: 24,-14 - 2234: 24,-13 - 2235: 24,-12 - 2300: -6,2 - 2301: -6,4 - 2302: -5,8 - 2303: -5,10 - 2304: -5,12 - 2305: -5,14 + 2218: 24,-16 + 2219: 24,-15 + 2220: 24,-14 + 2221: 24,-13 + 2222: 24,-12 + 2287: -6,2 + 2288: -6,4 + 2289: -5,8 + 2290: -5,10 + 2291: -5,12 + 2292: -5,14 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 2461: 1,-7 - 2462: 1,-6 + 2448: 1,-7 + 2449: 1,-6 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 468: -25,27 - 469: -25,28 - 475: -25,31 - 476: -25,30 - 477: -25,25 - 478: -25,24 - 2116: -18,-79 - 2117: -18,-78 - 2118: -18,-76 - 2119: -18,-75 + 455: -25,27 + 456: -25,28 + 462: -25,31 + 463: -25,30 + 464: -25,25 + 465: -25,24 + 2103: -18,-79 + 2104: -18,-78 + 2105: -18,-76 + 2106: -18,-75 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3692,105 +3692,105 @@ entities: 280: -5,-26 281: -5,-27 282: -5,-28 - 347: -5,-20 - 348: -5,-19 - 349: -5,-17 - 350: -5,-18 - 2105: -30,-76 - 2106: -30,-75 - 2107: -30,-74 - 2108: -30,-78 - 2109: -30,-79 - 2110: -30,-80 - 2497: -15,-22 - 2498: -15,-25 + 334: -5,-20 + 335: -5,-19 + 336: -5,-17 + 337: -5,-18 + 2092: -30,-76 + 2093: -30,-75 + 2094: -30,-74 + 2095: -30,-78 + 2096: -30,-79 + 2097: -30,-80 + 2484: -15,-22 + 2485: -15,-25 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 457: -20,34 - 458: -20,35 - 459: -20,33 - 461: -23,33 - 462: -23,34 - 463: -23,32 - 470: -23,35 - 471: -23,36 + 444: -20,34 + 445: -20,35 + 446: -20,33 + 448: -23,33 + 449: -23,34 + 450: -23,32 + 457: -23,35 + 458: -23,36 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 775: 23,21 - 776: 23,22 - 777: 23,23 - 778: 23,24 - 779: 23,25 - 780: 23,26 + 762: 23,21 + 763: 23,22 + 764: 23,23 + 765: 23,24 + 766: 23,25 + 767: 23,26 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 2292: -24,2 + 2279: -24,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 2407: 12,-25 - 2408: 12,-24 - 2409: 12,-23 + 2394: 12,-25 + 2395: 12,-24 + 2396: 12,-23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 2120: -15,-75 - 2121: -15,-76 - 2122: -15,-78 - 2123: -15,-79 + 2107: -15,-75 + 2108: -15,-76 + 2109: -15,-78 + 2110: -15,-79 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 343: -6,-31 - 344: -6,-32 - 345: -6,-33 - 346: -6,-34 - 351: -1,-19 - 352: -7,-17 - 353: -7,-18 - 354: -7,-19 - 355: -7,-20 - 356: -7,-21 - 357: -7,-22 - 358: -7,-23 - 359: -7,-25 - 360: -7,-27 - 361: -7,-28 - 362: -7,-29 - 965: -7,-16 - 2097: -27,-78 - 2098: -27,-79 - 2099: -27,-80 - 2100: -27,-81 - 2101: -27,-76 - 2102: -27,-75 - 2103: -27,-74 - 2104: -27,-73 - 2482: -11,-19 - 2483: -11,-18 - 2484: -11,-17 - 2485: -11,-16 + 330: -6,-31 + 331: -6,-32 + 332: -6,-33 + 333: -6,-34 + 338: -1,-19 + 339: -7,-17 + 340: -7,-18 + 341: -7,-19 + 342: -7,-20 + 343: -7,-21 + 344: -7,-22 + 345: -7,-23 + 346: -7,-25 + 347: -7,-27 + 348: -7,-28 + 349: -7,-29 + 952: -7,-16 + 2084: -27,-78 + 2085: -27,-79 + 2086: -27,-80 + 2087: -27,-81 + 2088: -27,-76 + 2089: -27,-75 + 2090: -27,-74 + 2091: -27,-73 + 2469: -11,-19 + 2470: -11,-18 + 2471: -11,-17 + 2472: -11,-16 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 2323: 22,-32 + 2310: 22,-32 - node: cleanable: True angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingAreaGreyscale decals: - 2352: 18,-31 + 2339: 18,-31 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3806,7 +3806,7 @@ entities: color: '#D381C996' id: MiniTileWhiteInnerNe decals: - 482: -45,26 + 469: -45,26 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw @@ -3817,13 +3817,13 @@ entities: color: '#D381C996' id: MiniTileWhiteInnerSe decals: - 481: -45,29 + 468: -45,29 - node: color: '#D381C996' id: MiniTileWhiteLineE decals: - 479: -45,27 - 480: -45,28 + 466: -45,27 + 467: -45,28 - node: color: '#EFB34196' id: MiniTileWhiteLineN @@ -3833,8 +3833,8 @@ entities: color: '#D381C996' id: MiniTileWhiteLineW decals: - 466: -25,21 - 467: -25,22 + 453: -25,21 + 454: -25,22 - node: color: '#EFB34196' id: MiniTileWhiteLineW @@ -3844,220 +3844,220 @@ entities: color: '#FFFFFFFF' id: OldConcreteTrimLineN decals: - 2569: -46,-17 + 2556: -46,-17 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 553: -50,39 - 554: -50,40 - 555: -50,41 - 556: -33,-13 - 557: -33,-14 - 558: -33,-15 - 559: -33,-15 - 560: -33,-16 - 579: -4,-32 - 580: -4,-34 + 540: -50,39 + 541: -50,40 + 542: -50,41 + 543: -33,-13 + 544: -33,-14 + 545: -33,-15 + 546: -33,-15 + 547: -33,-16 + 566: -4,-32 + 567: -4,-34 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 809: 8,17 - 810: 8,18 - 811: 8,22 - 812: 8,21 - 813: 8,20 - 814: 8,19 + 796: 8,17 + 797: 8,18 + 798: 8,22 + 799: 8,21 + 800: 8,20 + 801: 8,19 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 1013: 17,-5 - 1014: 17,-4 - 2296: -6,1 - 2307: -6,6 + 1000: 17,-5 + 1001: 17,-4 + 2283: -6,1 + 2294: -6,6 - node: color: '#9FED58FF' id: QuarterTileOverlayGreyscale decals: - 1015: 17,-5 - 1016: 17,-4 - 1017: 17,-6 - 1018: 17,-7 + 1002: 17,-5 + 1003: 17,-4 + 1004: 17,-6 + 1005: 17,-7 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 2429: 14,-13 + 2416: 14,-13 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 2294: -19,-4 + 2281: -19,-4 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 464: -3,27 - 550: -47,40 - 551: -47,41 - 552: -47,39 - 561: -31,-16 - 562: -31,-13 - 571: -31,-15 - 572: -31,-14 - 581: -2,-34 - 582: -2,-32 + 451: -3,27 + 537: -47,40 + 538: -47,41 + 539: -47,39 + 548: -31,-16 + 549: -31,-13 + 558: -31,-15 + 559: -31,-14 + 568: -2,-34 + 569: -2,-32 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 804: 10,18 - 805: 10,19 - 806: 10,20 - 807: 10,21 - 808: 10,22 + 791: 10,18 + 792: 10,19 + 793: 10,20 + 794: 10,21 + 795: 10,22 - node: color: '#9FED58FF' id: QuarterTileOverlayGreyscale180 decals: - 1019: 21,-5 - 1020: 21,-4 + 1006: 21,-5 + 1007: 21,-4 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 2411: 12,-27 - 2412: 12,-22 - 2424: 7,-12 - 2427: 8,-11 - 2431: 12,-11 - 2603: 15,-1 + 2398: 12,-27 + 2399: 12,-22 + 2411: 7,-12 + 2414: 8,-11 + 2418: 12,-11 + 2590: 15,-1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 decals: - 465: -7,27 - 815: 8,19 - 816: 8,20 - 817: 8,21 - 818: 8,22 - 819: 8,18 - 820: 8,17 - 2597: 23,-3 + 452: -7,27 + 802: 8,19 + 803: 8,20 + 804: 8,21 + 805: 8,22 + 806: 8,18 + 807: 8,17 + 2584: 23,-3 - node: color: '#334E6DFF' id: QuarterTileOverlayGreyscale270 decals: - 1007: 17,-7 - 1008: 17,-6 - 1009: 17,-5 - 1010: 17,-4 + 994: 17,-7 + 995: 17,-6 + 996: 17,-5 + 997: 17,-4 - node: color: '#9C0000FF' id: QuarterTileOverlayGreyscale270 decals: - 563: -33,-15 - 564: -33,-16 - 565: -33,-14 - 566: -33,-13 + 550: -33,-15 + 551: -33,-16 + 552: -33,-14 + 553: -33,-13 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 2308: -6,5 + 2295: -6,5 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 2432: 14,-11 - 2602: 10,-1 + 2419: 14,-11 + 2589: 10,-1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 544: -50,40 - 545: -50,41 - 546: -50,39 + 531: -50,40 + 532: -50,41 + 533: -50,39 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: 187: -19,-1 - 2295: -19,-5 + 2282: -19,-5 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 577: -4,-32 - 578: -4,-34 + 564: -4,-32 + 565: -4,-34 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 472: -23,31 - 821: 10,18 - 822: 10,19 - 823: 10,20 - 824: 10,21 - 825: 10,22 + 459: -23,31 + 808: 10,18 + 809: 10,19 + 810: 10,20 + 811: 10,21 + 812: 10,22 - node: color: '#334E6DFF' id: QuarterTileOverlayGreyscale90 decals: - 1011: 21,-5 - 1012: 21,-4 + 998: 21,-5 + 999: 21,-4 - node: color: '#9C0000FF' id: QuarterTileOverlayGreyscale90 decals: - 567: -31,-14 - 568: -31,-13 - 569: -31,-15 - 570: -31,-16 + 554: -31,-14 + 555: -31,-13 + 556: -31,-15 + 557: -31,-16 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 2293: -24,1 + 2280: -24,1 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 2410: 12,-26 - 2426: 7,-13 - 2430: 12,-13 + 2397: 12,-26 + 2413: 7,-13 + 2417: 12,-13 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 decals: - 547: -47,41 - 548: -47,40 - 549: -47,39 + 534: -47,41 + 535: -47,40 + 536: -47,39 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 decals: - 364: -7,-30 - 575: -2,-32 - 576: -2,-34 + 351: -7,-30 + 562: -2,-32 + 563: -2,-34 - node: color: '#FFFFFFFF' id: Rock02 decals: - 1354: -61.96964,-10.30916 + 1341: -61.96964,-10.30916 - node: color: '#FFFFFFFF' id: Rock05 decals: - 1355: -62.90714,-5.93416 + 1342: -62.90714,-5.93416 - node: color: '#FFFFFFFF' id: Rust decals: - 1400: -59,-5 - 1401: -58,-5 + 1387: -59,-5 + 1388: -58,-5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -4099,324 +4099,324 @@ entities: decals: 236: -38,-11 237: -39,-11 - 1377: -52,-10 - 1378: -52,-9 - 2278: 25,24 + 1364: -52,-10 + 1365: -52,-9 + 2265: 25,24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 2279: 26,25 + 2266: 26,25 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 2280: 25,26 + 2267: 25,26 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 2281: 24,25 + 2268: 24,25 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2313: 11,2 + 2300: 11,2 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 2306: -6,7 + 2293: -6,7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 2472: 25,2 + 2459: 25,2 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2488: -15,-24 + 2475: -15,-24 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2387: 15,-2 - 2414: 12,-28 + 2374: 15,-2 + 2401: 12,-28 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2486: -11,-20 + 2473: -11,-20 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2386: 10,-2 - 2460: 1,-8 + 2373: 10,-2 + 2447: 1,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2487: -15,-23 + 2474: -15,-23 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2314: 14,2 + 2301: 14,2 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2413: 12,-20 + 2400: 12,-20 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2473: 28,2 + 2460: 28,2 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 363: -6,-30 + 350: -6,-30 - node: color: '#FFFFFFFF' id: WarnBox decals: 51: -4,-25 52: -3,-25 - 2277: 25,25 - 2537: -13,-25 + 2264: 25,25 + 2524: -13,-25 - node: color: '#FF2E26FF' id: WarnCornerGreyscaleNE decals: - 2734: -39,-47 + 2691: -39,-47 - node: color: '#D381C9FF' id: WarnCornerGreyscaleNW decals: - 2134: -11,-75 - 2141: -12,-76 + 2121: -11,-75 + 2128: -12,-76 - node: color: '#D381C9FF' id: WarnCornerGreyscaleSW decals: - 2133: -11,-79 - 2142: -12,-78 + 2120: -11,-79 + 2129: -12,-78 - node: color: '#FF2E26FF' id: WarnCornerNE decals: - 2733: -39,-47 + 2690: -39,-47 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 2690: -31,-38 - 2701: -33,-36 + 2662: -31,-38 + 2671: -33,-36 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 2689: -33,-38 - 2700: -31,-36 - 2710: -35,-40 + 2661: -33,-38 + 2670: -31,-36 + 2679: -35,-40 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 2688: -31,-40 - 2709: -33,-42 + 2660: -31,-40 + 2678: -33,-42 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 2691: -33,-40 - 2707: -35,-38 - 2708: -31,-42 + 2663: -33,-40 + 2676: -35,-38 + 2677: -31,-42 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE decals: - 2147: -10,-75 + 2134: -10,-75 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNW decals: - 2148: -10,-75 - 2149: -6,-75 + 2135: -10,-75 + 2136: -6,-75 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSE decals: - 2146: -10,-79 + 2133: -10,-79 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSW decals: - 2143: -11,-78 - 2144: -10,-79 - 2145: -6,-79 + 2130: -11,-78 + 2131: -10,-79 + 2132: -6,-79 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 986: -3,-18 - 2500: -11,-22 - 2720: -27,-39 + 973: -3,-18 + 2487: -11,-22 + 2689: -27,-39 - node: color: '#D381C9FF' id: WarnEndGreyscaleN decals: - 2128: -6,-74 - 2129: -10,-74 + 2115: -6,-74 + 2116: -10,-74 - node: color: '#D381C9FF' id: WarnEndGreyscaleS decals: - 2130: -10,-80 - 2131: -6,-80 + 2117: -10,-80 + 2118: -6,-80 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 2714: -19,-45 + 2683: -19,-45 - node: cleanable: True color: '#FFFFFFFF' id: WarnEndN decals: - 2331: 15,-11 - 2347: 22,-33 - 2353: 18,-32 - 2573: 15,-6 + 2318: 15,-11 + 2334: 22,-33 + 2340: 18,-32 + 2560: 15,-6 - node: color: '#FFFFFFFF' id: WarnEndS decals: - 2713: -19,-46 + 2682: -19,-46 - node: cleanable: True color: '#FFFFFFFF' id: WarnEndS decals: - 2332: 15,-9 - 2572: 15,-7 + 2319: 15,-9 + 2559: 15,-7 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 985: -4,-18 - 2499: -13,-22 + 972: -4,-18 + 2486: -13,-22 - node: cleanable: True color: '#FFFFFFFF' id: WarnFull decals: - 2330: 15,-10 - 2333: 15,-13 - 2334: 15,-14 - 2335: 15,-15 - 2336: 14,-15 - 2337: 13,-15 - 2338: 12,-15 - 2339: 11,-18 - 2340: 11,-20 - 2341: 11,-21 - 2342: 11,-22 - 2343: 11,-23 - 2344: 11,-24 - 2345: 11,-25 - 2346: 11,-26 - 2348: 18,-35 - 2349: 22,-35 - 2354: 18,-33 + 2317: 15,-10 + 2320: 15,-13 + 2321: 15,-14 + 2322: 15,-15 + 2323: 14,-15 + 2324: 13,-15 + 2325: 12,-15 + 2326: 11,-18 + 2327: 11,-20 + 2328: 11,-21 + 2329: 11,-22 + 2330: 11,-23 + 2331: 11,-24 + 2332: 11,-25 + 2333: 11,-26 + 2335: 18,-35 + 2336: 22,-35 + 2341: 18,-33 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnFull decals: - 2667: -32,-39 + 2654: -32,-39 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 2363: -42,41 - 2694: -31,-39 - 2715: -29,-41 - 2716: -29,-40 + 2350: -42,41 + 2666: -31,-39 + 2684: -29,-41 + 2685: -29,-40 - node: color: '#D381C9FF' id: WarnLineGreyscaleE decals: - 2125: -6,-78 - 2126: -6,-77 - 2127: -6,-76 - 2132: -6,-79 - 2150: -6,-75 + 2112: -6,-78 + 2113: -6,-77 + 2114: -6,-76 + 2119: -6,-79 + 2137: -6,-75 - node: color: '#D381C9FF' id: WarnLineGreyscaleN decals: - 2135: -9,-75 - 2136: -8,-75 - 2137: -7,-75 + 2122: -9,-75 + 2123: -8,-75 + 2124: -7,-75 - node: color: '#D381C9FF' id: WarnLineGreyscaleS decals: - 2138: -9,-79 - 2139: -8,-79 - 2140: -7,-79 + 2125: -9,-79 + 2126: -8,-79 + 2127: -7,-79 - node: color: '#D381C9FF' id: WarnLineGreyscaleW decals: - 2124: -12,-77 + 2111: -12,-77 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2502: -12,-22 - 2538: -48,-16 - 2539: -47,-16 - 2540: -46,-16 - 2692: -32,-40 - 2703: -30,-42 - 2704: -34,-42 + 2489: -12,-22 + 2525: -48,-16 + 2526: -47,-16 + 2527: -46,-16 + 2664: -32,-40 + 2672: -30,-42 + 2673: -34,-42 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 2364: -43,41 - 2693: -33,-39 - 2705: -35,-41 - 2706: -35,-37 + 2351: -43,41 + 2665: -33,-39 + 2674: -35,-41 + 2675: -35,-37 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1366: 7,-40 - 1367: 6,-40 - 1368: 5,-40 - 2501: -12,-22 - 2695: -32,-38 - 2696: -30,-36 - 2699: -34,-36 + 1353: 7,-40 + 1354: 6,-40 + 1355: 5,-40 + 2488: -12,-22 + 2667: -32,-38 + 2668: -30,-36 + 2669: -34,-36 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2576: 27,5 + 2563: 27,5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 801: 19,-6 + 788: 19,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -4442,12 +4442,12 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 2587: 9,-35 + 2574: 9,-35 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 2586: 9,-30 + 2573: 9,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -4457,32 +4457,32 @@ entities: 56: 11,-31 57: 11,-32 58: 11,-33 - 395: -1,37 - 396: -1,38 - 397: -1,39 - 398: -1,40 - 595: -58,-4 - 596: -58,-3 - 597: -58,-2 - 598: -58,-2 - 599: -58,-1 - 600: -58,0 - 601: -58,1 - 602: -58,2 - 1356: -61.84464,-9.074785 - 1357: -62.988163,-9.100406 - 2577: 27,4 - 2578: 11,-35 - 2579: 11,-34 + 382: -1,37 + 383: -1,38 + 384: -1,39 + 385: -1,40 + 582: -58,-4 + 583: -58,-3 + 584: -58,-2 + 585: -58,-2 + 586: -58,-1 + 587: -58,0 + 588: -58,1 + 589: -58,2 + 1343: -61.84464,-9.074785 + 1344: -62.988163,-9.100406 + 2564: 27,4 + 2565: 11,-35 + 2566: 11,-34 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: 43: -5,-8 44: -6,-8 - 802: 20,-6 - 2574: 26,5 - 2575: 25,5 + 789: 20,-6 + 2561: 26,5 + 2562: 25,5 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -4490,14 +4490,14 @@ entities: 35: -8,-10 36: -7,-10 37: -4,-10 - 1330: 21.001646,-5.1484656 + 1317: 21.001646,-5.1484656 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1461: -6,-10 - 1462: -5,-10 + 1448: -6,-10 + 1449: -5,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -4514,38 +4514,38 @@ entities: 48: -14,21 49: -14,22 50: -14,23 - 803: 19,-7 - 2582: 9,-34 - 2583: 9,-33 - 2584: 9,-32 - 2585: 9,-31 + 790: 19,-7 + 2569: 9,-34 + 2570: 9,-33 + 2571: 9,-32 + 2572: 9,-31 - node: color: '#FFFFFFFF' id: bushsnowa3 decals: - 906: 2,-3 - 907: -2,2 - 915: 37,-12 - 916: 37,-9 + 893: 2,-3 + 894: -2,2 + 902: 37,-12 + 903: 37,-9 - node: angle: 1.5707963267948966 rad color: '#FF0000FF' id: danger decals: - 2666: -20,-47 + 2653: -20,-47 - node: angle: 0.8726646259971648 rad color: '#FFFF0089' id: end decals: - 2567: -48,-19 + 2554: -48,-19 - node: cleanable: True angle: -0.8726646259971648 rad color: '#00C83AFF' id: peace decals: - 2571: -46.181316,-17.267536 + 2558: -46.181316,-17.267536 - node: color: '#EFB34196' id: radiation @@ -4560,17 +4560,17 @@ entities: color: '#FFFFFFFF' id: skull decals: - 2568: -46.264652,-18.779003 + 2555: -46.264652,-18.779003 - node: cleanable: True color: '#0000008B' id: splatter decals: - 2561: -47.00404,-18.038906 - 2562: -47.00404,-18.038906 - 2563: -47.00404,-18.038906 - 2564: -46.733208,-18.247383 - 2565: -47.25404,-17.694916 + 2548: -47.00404,-18.038906 + 2549: -47.00404,-18.038906 + 2550: -47.00404,-18.038906 + 2551: -46.733208,-18.247383 + 2552: -47.25404,-17.694916 - type: GridAtmosphere version: 2 data: @@ -5668,12 +5668,13 @@ entities: 0: 53196 -11,-11: 0: 61183 - 4: 4096 + 4: 4352 -11,-10: 0: 61422 4: 4113 -11,-9: 0: 65518 + 4: 1 -11,-12: 0: 61132 -10,-12: @@ -5917,7 +5918,7 @@ entities: 0: 11810 -12,-9: 0: 32768 - 4: 2 + 4: 78 12,2: 0: 63884 12,3: @@ -6168,9 +6169,9 @@ entities: 6,-12: 4: 305 -12,-10: - 4: 64718 + 4: 65278 -12,-11: - 4: 49152 + 4: 61410 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -72643,11 +72644,6 @@ entities: - type: Transform pos: -26.5,-36.5 parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 17838 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -74407,8 +74403,6 @@ entities: - type: DeviceNetwork configurators: - invalid - deviceLists: - - 17838 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor @@ -74419,11 +74413,8 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-43.5 parent: 2 - - type: DeviceNetwork - configurators: - - invalid - deviceLists: - - 17838 + - type: AtmosDevice + joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasVolumePump From 07d94cb8b1eb1603932dc96852d789864bfd0f49 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 26 Apr 2024 19:14:49 -0400 Subject: [PATCH 07/38] Update edge.yml --- Resources/Maps/edge.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 60b3c8fee2a..2a7e5d737f9 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -74400,9 +74400,6 @@ entities: - type: Transform pos: -25.5,-33.5 parent: 2 - - type: DeviceNetwork - configurators: - - invalid - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor From 0b428dc5888f83be87a09485b04fc2118b3b9a5f Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Tue, 30 Apr 2024 16:32:05 -0400 Subject: [PATCH 08/38] better sound looping --- Resources/Audio/Supermatter/calm.ogg | Bin 84096 -> 172011 bytes Resources/Audio/Supermatter/delamming.ogg | Bin 86548 -> 160153 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Audio/Supermatter/calm.ogg b/Resources/Audio/Supermatter/calm.ogg index cee14fcd13d6657bd8c634ade617550d68c39f4a..dc3102e57866eb386ca4f7977b5e9f3696db1a98 100644 GIT binary patch literal 172011 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 EdSVilTuz2 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

)P%>x$;)u7(ofnE>YR_`jm~glc-b8) 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 literal 86548 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

7=-wEOP*Fp!2GHt00j7 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 From 185a63bcd40283620989a4829dc22a353df853c1 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Sat, 4 May 2024 17:02:28 -0400 Subject: [PATCH 09/38] Update edge.yml --- Resources/Maps/edge.yml | 655 +++++++++++++++++++++++++++++----------- 1 file changed, 471 insertions(+), 184 deletions(-) diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 2a7e5d737f9..2b80028c354 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -195,7 +195,7 @@ entities: version: 6 -2,-3: ind: -2,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAARgAAAAAARgAAAAAAfwAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAARgAAAAAARgAAAAAAUAAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -243,11 +243,11 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAUAAAAAAARgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAUAAAAAAARgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA version: 6 -5,-1: ind: -5,-1 @@ -7948,6 +7948,34 @@ entities: - DoorStatus: DoorBolt 170: - DoorStatus: DoorBolt + - uid: 17490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-46.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 17492 + - type: DeviceLinkSource + linkedPorts: + 17492: + - DoorStatus: DoorBolt + - uid: 17492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-46.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 17490 + - type: DeviceLinkSource + linkedPorts: + 17490: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassAtmosphericsLocked entities: - uid: 172 @@ -27088,11 +27116,6 @@ entities: - type: Transform pos: -41.5,-44.5 parent: 2 - - uid: 3769 - components: - - type: Transform - pos: -41.5,-45.5 - parent: 2 - uid: 3770 components: - type: Transform @@ -33502,6 +33525,101 @@ entities: - type: Transform pos: -31.5,-35.5 parent: 2 + - uid: 17856 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: -27.5,-45.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + pos: -26.5,-45.5 + parent: 2 + - uid: 17864 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 17869 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - uid: 17870 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 17871 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 17872 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 17873 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 - proto: CableMVStack entities: - uid: 4996 @@ -40682,6 +40800,16 @@ entities: - type: Transform pos: -27.5,-43.5 parent: 2 + - uid: 17893 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 - proto: CrateEngineeringSingularityEmitter entities: - uid: 6184 @@ -47327,6 +47455,15 @@ entities: - type: DeviceLinkSink links: - 17680 + - uid: 17875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 17680 - proto: EncryptionKeyCargo entities: - uid: 7261 @@ -51966,34 +52103,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#66FF00FF' - - uid: 17476 + - uid: 13696 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17477 - components: - - type: Transform - rot: 3.141592653589793 rad pos: -45.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' - - uid: 17478 - components: - - type: Transform - pos: -42.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17479 + - uid: 15251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-39.5 + rot: 1.5707963267948966 rad + pos: -41.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' @@ -52001,7 +52123,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-39.5 + pos: -44.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' @@ -52013,26 +52135,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - uid: 17483 components: - type: Transform - pos: -42.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-42.5 + pos: -42.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' @@ -52147,6 +52253,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' + - uid: 17879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: GasPipeFourway entities: - uid: 3169 @@ -66900,21 +67046,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' - - uid: 17491 - components: - - type: Transform - pos: -42.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - uid: 17493 components: - type: Transform @@ -67371,6 +67502,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 17880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: GasPipeTJunction entities: - uid: 2633 @@ -70046,6 +70193,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' + - uid: 15217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 15226 + components: + - type: Transform + pos: -43.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17495 components: - type: Transform @@ -70085,6 +70255,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' + - uid: 17887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: GasPort entities: - uid: 10174 @@ -70529,21 +70723,37 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17790 + - uid: 17881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-37.5 + pos: -45.5,-41.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17791 + color: '#07FFFFFF' + - uid: 17882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-42.5 + pos: -44.5,-41.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17883 + components: + - type: Transform + pos: -43.5,-41.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17884 + components: + - type: Transform + pos: -42.5,-41.5 parent: 2 - type: AtmosDevice joinedGrid: 2 @@ -74416,6 +74626,15 @@ entities: color: '#FF0000FF' - proto: GasVolumePump entities: + - uid: 3769 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 10586 components: - type: Transform @@ -74472,6 +74691,53 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#66FF00FF' + - uid: 10747 + components: + - type: Transform + pos: -44.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17482 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' + - uid: 17485 + components: + - type: Transform + pos: -42.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - proto: Gauze entities: - uid: 10591 @@ -75311,11 +75577,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,6.5 parent: 2 - - uid: 10747 - components: - - type: Transform - pos: -41.5,-45.5 - parent: 2 - uid: 10748 components: - type: Transform @@ -79370,6 +79631,18 @@ entities: - type: Transform pos: 8.5,-27.5 parent: 2 + - uid: 17478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 17489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-46.5 + parent: 2 - uid: 17497 components: - type: Transform @@ -79425,6 +79698,12 @@ entities: - type: Transform pos: -35.5,-35.5 parent: 2 + - uid: 17694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-47.5 + parent: 2 - uid: 17777 components: - type: Transform @@ -79450,6 +79729,12 @@ entities: - type: Transform pos: -33.5,-39.5 parent: 2 + - uid: 17790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-48.5 + parent: 2 - proto: GrilleBroken entities: - uid: 11522 @@ -79983,6 +80268,35 @@ entities: - type: Transform pos: -28.5,48.5 parent: 2 + - uid: 15228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-48.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-48.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-48.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-48.5 + parent: 2 - uid: 17842 components: - type: Transform @@ -80100,86 +80414,34 @@ entities: parent: 2 - proto: HeatExchanger entities: - - uid: 17474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17486 + - uid: 17484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-39.5 + pos: -45.5,-40.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17487 + - uid: 17876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-38.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-38.5 + pos: -44.5,-40.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17489 + - uid: 17877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-37.5 + pos: -43.5,-40.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17490 + - uid: 17878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-37.5 + pos: -42.5,-40.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - proto: HighSecArmoryLocked entities: - uid: 11637 @@ -80620,12 +80882,6 @@ entities: parent: 2 - proto: IntercomEngineering entities: - - uid: 2637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-38.5 - parent: 2 - uid: 11714 components: - type: Transform @@ -80654,6 +80910,12 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-28.5 parent: 2 + - uid: 17486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-39.5 + parent: 2 - proto: IntercomMedical entities: - uid: 11719 @@ -81155,6 +81417,8 @@ entities: - Pressed: Toggle 3902: - Pressed: Toggle + 17875: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 11778 @@ -83068,6 +83332,16 @@ entities: rot: 3.141592653589793 rad pos: -33.31521,-43.567078 parent: 2 + - uid: 17896 + components: + - type: Transform + pos: -27.632969,-35.47815 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: -27.382969,-35.5719 + parent: 2 - proto: PlasticFlapsAirtightClear entities: - uid: 12078 @@ -86959,6 +87233,17 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-43.5 parent: 2 + - uid: 17895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 2 - proto: RadiationCollectorNoTank entities: - uid: 2626 @@ -86986,6 +87271,8 @@ entities: - type: Transform pos: -34.5,-40.5 parent: 2 + - type: RadiationCollector + enabled: True - uid: 3213 components: - type: Transform @@ -90930,6 +91217,12 @@ entities: - type: Transform pos: -40.5,-34.5 parent: 2 + - uid: 17791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 13453 @@ -91411,6 +91704,11 @@ entities: - type: Transform pos: -42.71093,39.51951 parent: 2 + - uid: 17899 + components: + - type: Transform + pos: -39.76288,-31.370575 + parent: 2 - proto: SheetPlasma entities: - uid: 13517 @@ -91576,6 +91874,11 @@ entities: - type: Transform pos: -43.440098,39.540356 parent: 2 + - uid: 17900 + components: + - type: Transform + pos: -39.403503,-31.47995 + parent: 2 - proto: SheetUranium entities: - uid: 13542 @@ -93160,11 +93463,6 @@ entities: - type: Transform pos: -46.5,-23.5 parent: 2 - - uid: 13696 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - uid: 13697 components: - type: Transform @@ -100391,6 +100689,12 @@ entities: - type: Transform pos: -28.5,-36.5 parent: 2 + - uid: 2637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-47.5 + parent: 2 - uid: 3890 components: - type: Transform @@ -102729,11 +103033,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-47.5 parent: 2 - - uid: 15217 - components: - - type: Transform - pos: -40.5,-46.5 - parent: 2 - uid: 15218 components: - type: Transform @@ -102774,27 +103073,11 @@ entities: rot: 3.141592653589793 rad pos: -38.5,-47.5 parent: 2 - - uid: 15226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-47.5 - parent: 2 - uid: 15227 components: - type: Transform pos: -41.5,-29.5 parent: 2 - - uid: 15228 - components: - - type: Transform - pos: -40.5,-47.5 - parent: 2 - - uid: 15229 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - uid: 15230 components: - type: Transform @@ -102865,16 +103148,6 @@ entities: - type: Transform pos: -9.5,-45.5 parent: 2 - - uid: 15244 - components: - - type: Transform - pos: -41.5,-47.5 - parent: 2 - - uid: 15245 - components: - - type: Transform - pos: -39.5,-46.5 - parent: 2 - uid: 15246 components: - type: Transform @@ -102900,11 +103173,6 @@ entities: - type: Transform pos: -40.5,-48.5 parent: 2 - - uid: 15251 - components: - - type: Transform - pos: -41.5,-48.5 - parent: 2 - uid: 15252 components: - type: Transform @@ -107356,6 +107624,30 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-34.5 parent: 2 + - uid: 17476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-47.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-47.5 + parent: 2 + - uid: 17488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-45.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-45.5 + parent: 2 - uid: 17545 components: - type: Transform @@ -107425,11 +107717,6 @@ entities: - type: Transform pos: -34.5,-44.5 parent: 2 - - uid: 17694 - components: - - type: Transform - pos: -29.5,-38.5 - parent: 2 - uid: 17802 components: - type: Transform From 79e9664d05ab7f06fb1db1bcf1d45a9cebed116a Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 10 May 2024 16:22:39 -0400 Subject: [PATCH 10/38] Update supermatter --- .../Components/SupermatterComponent.cs | 10 +- Resources/Maps/edge.yml | 292 ++++++++++++------ 2 files changed, 203 insertions(+), 99 deletions(-) diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 2aab1eaa84e..64ba90ce012 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -347,10 +347,13 @@ public sealed partial class SupermatterComponent : Component { {Gas.Oxygen, 0f}, {Gas.Nitrogen, 0f}, + {Gas.NitrousOxide, 0f}, {Gas.CarbonDioxide, 0f}, {Gas.Plasma, 0f}, {Gas.Tritium, 0f}, - {Gas.WaterVapor, 0f} + {Gas.WaterVapor, 0f}, + {Gas.Frezon, 0f}, + {Gas.Ammonia, 0f} }; ///

@@ -360,10 +363,13 @@ public sealed partial class SupermatterComponent : Component { [Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f), [Gas.Nitrogen] = (TransmitModifier: 0f, HeatPenalty: -1.5f, PowerMixRatio: -1f), + [Gas.NitrousOxide] = (TransmitModifier: 1f, HeatPenalty: -5f, PowerMixRatio: 1f), [Gas.CarbonDioxide] = (TransmitModifier: 0f, HeatPenalty: 0.1f, PowerMixRatio: 1f), [Gas.Plasma] = (TransmitModifier: 4f, HeatPenalty: 15f, PowerMixRatio: 1f), [Gas.Tritium] = (TransmitModifier: 30f, HeatPenalty: 10f, PowerMixRatio: 1f), - [Gas.WaterVapor] = (TransmitModifier: 2f, HeatPenalty: 12f, PowerMixRatio: 1f) + [Gas.WaterVapor] = (TransmitModifier: 2f, HeatPenalty: 12f, PowerMixRatio: 1f), + [Gas.Frezon] = (TransmitModifier: 3f, HeatPenalty: -9f, PowerMixRatio: -1f), + [Gas.Ammonia] = (TransmitModifier: 1.5f, HeatPenalty: 1.5f, PowerMixRatio: 1.5f) }; #endregion SM Gas diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 2b80028c354..678427c565b 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -5677,6 +5677,7 @@ entities: 4: 1 -11,-12: 0: 61132 + 4: 4403 -10,-12: 0: 16383 4: 49152 @@ -5702,6 +5703,7 @@ entities: 4: 3598 -11,-13: 0: 49152 + 4: 12288 -10,-13: 0: 65216 -9,-13: @@ -6171,7 +6173,11 @@ entities: -12,-10: 4: 65278 -12,-11: - 4: 61410 + 4: 61422 + -12,-12: + 4: 61166 + -12,-13: + 4: 57344 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -22810,21 +22816,6 @@ entities: - type: Transform pos: 1.5,-44.5 parent: 2 - - uid: 3161 - components: - - type: Transform - pos: -26.5,-44.5 - parent: 2 - - uid: 3162 - components: - - type: Transform - pos: -26.5,-43.5 - parent: 2 - - uid: 3164 - components: - - type: Transform - pos: -26.5,-42.5 - parent: 2 - uid: 3831 components: - type: Transform @@ -23305,6 +23296,51 @@ entities: - type: Transform pos: -25.5,-38.5 parent: 2 + - uid: 17836 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 17866 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 17901 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 - proto: CableApcStack entities: - uid: 3016 @@ -33565,21 +33601,6 @@ entities: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 17864 - components: - - type: Transform - pos: -26.5,-44.5 - parent: 2 - - uid: 17865 - components: - - type: Transform - pos: -26.5,-43.5 - parent: 2 - - uid: 17866 - components: - - type: Transform - pos: -26.5,-42.5 - parent: 2 - uid: 17867 components: - type: Transform @@ -33620,6 +33641,31 @@ entities: - type: Transform pos: -28.5,-38.5 parent: 2 + - uid: 17910 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 - proto: CableMVStack entities: - uid: 4996 @@ -50591,6 +50637,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' + - uid: 3162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-44.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-46.5 + parent: 2 - uid: 3217 components: - type: Transform @@ -52150,34 +52208,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' - - uid: 17531 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17532 + - uid: 17521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-45.5 + rot: 1.5707963267948966 rad + pos: -25.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - - uid: 17534 + - uid: 17531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-46.5 + pos: -18.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' - - uid: 17535 + - uid: 17532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-44.5 + rot: 3.141592653589793 rad + pos: -18.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' @@ -52204,6 +52254,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' + - uid: 17636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-44.5 + parent: 2 - uid: 17644 components: - type: Transform @@ -52293,6 +52349,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' + - uid: 17908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeFourway entities: - uid: 3169 @@ -67075,38 +67139,30 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-34.5 parent: 2 - - uid: 17521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - uid: 17522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-45.5 + rot: 1.5707963267948966 rad + pos: -30.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#ADD8E6FF' + color: '#07FFFFFF' - uid: 17523 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-44.5 + pos: -28.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#ADD8E6FF' + color: '#07FFFFFF' - uid: 17524 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-44.5 + pos: -31.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#ADD8E6FF' + color: '#07FFFFFF' - uid: 17525 components: - type: Transform @@ -67163,6 +67219,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#ADD8E6FF' + - uid: 17534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17537 components: - type: Transform @@ -67234,14 +67298,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' - - uid: 17636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - uid: 17637 components: - type: Transform @@ -67495,13 +67551,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17836 - components: - - type: Transform - pos: -25.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 17880 components: - type: Transform @@ -70231,6 +70280,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' + - uid: 17535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17628 components: - type: Transform @@ -70255,6 +70312,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#07FFFFFF' + - uid: 17864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 17887 components: - type: Transform @@ -70681,16 +70746,25 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17520 + - uid: 17517 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-46.5 + pos: -26.5,-46.5 parent: 2 - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#ADD8E6FF' + color: '#07FFFFFF' + - uid: 17520 + components: + - type: Transform + pos: -27.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#07FFFFFF' - uid: 17629 components: - type: MetaData @@ -70848,7 +70922,21 @@ entities: - type: AtmosDevice joinedGrid: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#07FFFFFF' + - uid: 3161 + components: + - type: MetaData + name: distro to coolant + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-45.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' - uid: 3893 components: - type: MetaData @@ -70970,20 +71058,6 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#FF5349FF' - - uid: 17517 - components: - - type: MetaData - name: distro to coolant - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-46.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - uid: 17682 components: - type: MetaData @@ -71009,6 +71083,18 @@ entities: joinedGrid: 2 - type: AtmosPipeColor color: '#07FFFFFF' + - uid: 17909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-43.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasVentPump entities: - uid: 2584 @@ -74620,8 +74706,6 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-43.5 parent: 2 - - type: AtmosDevice - joinedGrid: 2 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasVolumePump @@ -86203,6 +86287,18 @@ entities: - type: Transform pos: 20.5,-50.5 parent: 2 + - uid: 17903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-41.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-47.5 + parent: 2 - proto: PoweredLightColoredBlack entities: - uid: 12535 @@ -87313,6 +87409,8 @@ entities: - type: Transform pos: -28.5,-39.5 parent: 2 + - type: RadiationCollector + enabled: True - uid: 17761 components: - type: Transform From c241559e3c0b21a5331d12773f88a89d1ba0403b Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Mon, 3 Jun 2024 22:19:44 -0400 Subject: [PATCH 11/38] Updating server Supermatter System --- .../Supermatter/Systems/SupermatterSystem.cs | 87 ++++++------------- .../Components/SupermatterComponent.cs | 69 +++++++-------- .../Components/SupermatterImmuneComponent.cs | 9 ++ .../Clothing/OuterClothing/hardsuits.yml | 3 + .../Entities/Mobs/Player/admin_ghost.yml | 1 + .../Objects/Specific/Medical/morgue.yml | 2 +- Resources/Prototypes/tags.yml | 3 - 7 files changed, 71 insertions(+), 103 deletions(-) create mode 100644 Content.Shared/Supermatter/Components/SupermatterImmuneComponent.cs diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 125be39bd00..246a6777b20 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -36,7 +36,7 @@ public sealed class SupermatterSystem : SharedSupermatterSystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AmbientSoundSystem _ambient = default!; - + public new DelamType DelamType; public override void Initialize() { base.Initialize(); @@ -44,7 +44,6 @@ public override void Initialize() SubscribeLocalEvent(OnCollideEvent); SubscribeLocalEvent(OnHandInteract); SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(HandleSupermatterState); SubscribeLocalEvent(OnComponentRemove); } @@ -66,11 +65,6 @@ private void OnMapInit(EntityUid uid, SupermatterComponent component, MapInitEve mixture?.AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); } - private void HandleSupermatterState(EntityUid uid, SupermatterComponent comp, ref ComponentGetState args) - { - args.State = new SupermatterComponentState(comp); - } - public override void Update(float frameTime) { base.Update(frameTime); @@ -93,15 +87,10 @@ public override void Update(float frameTime) private void HandleOutput( EntityUid uid, float frameTime, - SupermatterComponent? sMcomponent = null, - RadiationSourceComponent? radcomponent = null, + SupermatterComponent sMcomponent, + RadiationSourceComponent radcomponent, Atmos.GasMixture? mixture = null) { - if (!Resolve(uid, ref sMcomponent, ref radcomponent)) - { - return; - } - sMcomponent.AtmosUpdateAccumulator += frameTime; if (!(sMcomponent.AtmosUpdateAccumulator > sMcomponent.AtmosUpdateTimer) || @@ -131,7 +120,7 @@ private void HandleOutput( //and heat to power transfer var gasmixPowerRatio = gasStorage.Sum(gas => gasStorage[gas.Key] * gasEffect[gas.Key].PowerMixRatio); - //Minimum value of -10, maximum value of 23. Effects plasma and o2 output + //Minimum value of -10, maximum value of 23. Affects plasma and o2 output //and the output heat var dynamicHeatModifier = gasStorage.Sum(gas => gasStorage[gas.Key] * gasEffect[gas.Key].HeatPenalty); @@ -152,7 +141,7 @@ private void HandleOutput( //more moles of gases are harder to heat than fewer, //so let's scale heat damage around them sMcomponent.MoleHeatPenaltyThreshold = - (float) Math.Max(absorbedTotalMoles / sMcomponent.MoleHeatPenalty, 0.25); + (float) Math.Max(absorbedTotalMoles * sMcomponent.MoleHeatPenalty, 0.25); //Ramps up or down in increments of 0.02 up to the proportion of co2 //Given infinite time, powerloss_dynamic_scaling = co2comp @@ -201,13 +190,13 @@ private void HandleOutput( radcomponent.Intensity = sMcomponent.Power * Math.Max(0, 1f + powerTransmissionBonus / 10f) * 0.003f; //Power * 0.55 * a value between 1 and 0.8 - var energy = sMcomponent.Power * sMcomponent.ReactionPowerModefier; + var energy = sMcomponent.Power * sMcomponent.ReactionPowerModifier; //Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock //is on. An increase of 4*C @ 25% efficiency here results in an increase of 1*C / (#tilesincore) overall. //Power * 0.55 * (some value between 1.5 and 23) / 5 - absorbedGas.Temperature += energy * dynamicHeatModifier / sMcomponent.ThermalReleaseModifier; + absorbedGas.Temperature += energy * dynamicHeatModifier * sMcomponent.ThermalReleaseModifier; absorbedGas.Temperature = Math.Max(0, Math.Min(absorbedGas.Temperature, sMcomponent.HeatThreshold * dynamicHeatModifier)); @@ -215,12 +204,12 @@ private void HandleOutput( //Varies based on power and gas content absorbedGas.AdjustMoles(Gas.Plasma, - Math.Max(energy * dynamicHeatModifier / sMcomponent.PlasmaReleaseModifier, 0f)); + Math.Max(energy * dynamicHeatModifier * sMcomponent.PlasmaReleaseModifier, 0f)); absorbedGas.AdjustMoles(Gas.Oxygen, Math.Max( - (energy + absorbedGas.Temperature * dynamicHeatModifier - Atmospherics.T0C) / - sMcomponent.OxygenReleaseModifier, 0f)); + (energy + absorbedGas.Temperature * dynamicHeatModifier - Atmospherics.T0C) * + sMcomponent.OxygenReleaseEfficiencyModifier, 0f)); _atmosphere.Merge(mixture, absorbedGas); @@ -228,10 +217,9 @@ private void HandleOutput( //After this point power is lowered //This wraps around to the begining of the function - sMcomponent.Power = - Math.Max( - sMcomponent.Power - Math.Min(powerReduction * powerlossInhibitor, - sMcomponent.Power * 0.83f * powerlossInhibitor), 0f); + sMcomponent.Power = Math.Max( + sMcomponent.Power - Math.Min(powerReduction * powerlossInhibitor, + sMcomponent.Power * 0.83f * powerlossInhibitor), 0f); } /// @@ -276,7 +264,7 @@ private void HandleDamage( Math.Max( Math.Clamp(absorbedTotalMoles / 200, 0.5, 1) * absorbedGas.Temperature - (Atmospherics.T0C + sMcomponent.HeatPenaltyThreshold) * sMcomponent.DynamicHeatResistance, - 0) * sMcomponent.MoleHeatPenalty / 150 * sMcomponent.DamageIncreaseMultiplier, 0); + 0) * sMcomponent.MoleHeatThreshold / 150 * sMcomponent.DamageIncreaseMultiplier, 0); //Power only starts affecting damage when it is above 5000 sMcomponent.Damage = @@ -385,15 +373,10 @@ private float GetIntegrity(float damage, float explosionPoint) private void Delamination( EntityUid uid, float frameTime, - SupermatterComponent? sMcomponent = null, - ExplosiveComponent? xplode = null, + SupermatterComponent sMcomponent, + ExplosiveComponent xplode, Atmos.GasMixture? mixture = null) { - if (!Resolve(uid, ref sMcomponent, ref xplode)) - { - return; - } - var xform = Transform(uid); //before we actually start counting down, check to see what delam type we're doing. @@ -408,14 +391,14 @@ private void Delamination( //if the moles on the sm's tile are above MolePenaltyThreshold if (absorbedTotalMoles >= sMcomponent.MolePenaltyThreshold) { - sMcomponent.DelamType = DelamType.Singulo; + DelamType = DelamType.Singulo; _chat.TrySendInGameICMessage(uid, Loc.GetString("supermatter-delamination-overmass"), InGameICChatType.Speak, hideChat: true); } } else { - sMcomponent.DelamType = DelamType.Explosion; + DelamType = DelamType.Explosion; _chat.TrySendInGameICMessage(uid, Loc.GetString("supermatter-delamination-default"), InGameICChatType.Speak, hideChat: true); } @@ -425,7 +408,7 @@ private void Delamination( sMcomponent.DelamTimerAccumulator += frameTime; sMcomponent.SpeakAccumulator += frameTime; - var roundSeconds = sMcomponent.DelamTimerTimer - (int) Math.Floor(sMcomponent.DelamTimerAccumulator); + var roundSeconds = sMcomponent.FinalCountdownTime - (int) Math.Floor(sMcomponent.DelamTimerAccumulator); //we're more than 5 seconds from delam, only yell every 5 seconds. if (roundSeconds >= sMcomponent.YellDelam && sMcomponent.SpeakAccumulator >= sMcomponent.YellDelam) @@ -446,10 +429,10 @@ private void Delamination( //TODO: make tesla(?) spawn at SupermatterComponent.PowerPenaltyThreshold and think up other delam types //times up, explode or make a singulo - if (!(sMcomponent.DelamTimerAccumulator >= sMcomponent.DelamTimerTimer)) + if (!(sMcomponent.DelamTimerAccumulator >= sMcomponent.FinalCountdownTime)) return; - if (sMcomponent.DelamType == DelamType.Singulo) + if (DelamType == DelamType.Singulo) { //spawn a singulo :) EntityManager.SpawnEntity("Singularity", xform.Coordinates); @@ -492,29 +475,13 @@ private void HandleSoundLoop(EntityUid uid, SupermatterComponent sMcomponent) sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); sMcomponent.SmSound = smSound; } - - /// - /// Determines if an entity can be dusted - /// - private bool CannotDestroy(EntityUid uid) - { - var @static = false; - - var tag = _tag.HasTag(uid, "SMImmune"); - - if (EntityManager.TryGetComponent(uid, out var physicsComp)) - { - @static = physicsComp.BodyType == BodyType.Static; - } - - return tag || @static; - } - private void OnCollideEvent(EntityUid uid, SupermatterComponent supermatter, ref StartCollideEvent args) { - var target = args.OtherBody.Owner; - - if (!supermatter.Whitelist.IsValid(target) || CannotDestroy(target) || _container.IsEntityInContainer(uid)) + var target = args.OtherEntity; + if (!supermatter.Whitelist.IsValid(target) + || args.OtherBody.BodyType == BodyType.Static + || HasComp(target) + || _container.IsEntityInContainer(uid)) return; if (EntityManager.TryGetComponent(target, out var supermatterFood)) @@ -537,6 +504,8 @@ private void OnCollideEvent(EntityUid uid, SupermatterComponent supermatter, ref private void OnHandInteract(EntityUid uid, SupermatterComponent supermatter, InteractHandEvent args) { var target = args.User; + if (HasComp(target)) + return; supermatter.MatterPower += 200; EntityManager.SpawnEntity("Ash", Transform(target).Coordinates); _audio.PlayPvs(supermatter.DustSound, uid); diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 64ba90ce012..0da0ca1f6fa 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -11,42 +11,35 @@ public sealed partial class SupermatterComponent : Component { #region SM Base - [DataField("whitelist")] public EntityWhitelist Whitelist = new(); + [DataField("whitelist")] + public EntityWhitelist Whitelist = new(); public string IdTag = "EmitterBolt"; [ViewVariables(VVAccess.ReadWrite)] - [DataField("power")] public float Power; /// /// The amount of damage we have currently /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("damage")] public float Damage = 0f; [ViewVariables(VVAccess.ReadWrite)] - [DataField("matterPower")] public float MatterPower; [ViewVariables(VVAccess.ReadWrite)] - [DataField("matterPowerConversion")] public float MatterPowerConversion = 10f; - public SharedSupermatterSystem.DelamType DelamType; - /// /// The portion of the gasmix we're on /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("gasEfficiency")] public float GasEfficiency = 0.15f; /// /// The amount of heat we apply scaled /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("heatThreshold")] public float HeatThreshold = 2500f; #endregion SM Base @@ -77,7 +70,6 @@ public sealed partial class SupermatterComponent : Component /// 0 and 1. We use it to calc the powerloss_inhibitor /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("powerlossdynamicScaling")] public float PowerlossDynamicScaling; /// @@ -85,44 +77,50 @@ public sealed partial class SupermatterComponent : Component /// at which the sm takes heat damage /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("dynamicheatResistance")] public float DynamicHeatResistance = 1; /// - /// Used to increase or lessen the amount of damage the sm takes - /// from heat based on molar counts. + /// Multiplier on damage the core takes from absorbing hot gas + /// Default is ~1/350 /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("moleheatPenalty")] - public float MoleHeatPenalty = 350f; + public float MoleHeatPenalty = 0.00286f; /// - /// Higher == more overall power + /// Inverse of MoleHeatPenalty /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("reactionpowerModefier")] - public float ReactionPowerModefier = 0.55f; + public float MoleHeatThreshold = 350f; /// - /// Higher == less heat released during reaction + /// Multiplier on power generated by nuclear reactions + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("reactionpowerModifier")] + public float ReactionPowerModifier = 0.55f; + + /// + /// Acts as a multiplier on the amount that nuclear reactions increase the supermatter core temperature /// [ViewVariables(VVAccess.ReadWrite)] [DataField("thermalreleaseModifier")] - public float ThermalReleaseModifier = 5f; + public float ThermalReleaseModifier = 0.2f; /// - /// Higher == less plasma released by reaction + /// Multiplier on how much plasma is released during supermatter reactions + /// Default is ~1/750 /// [ViewVariables(VVAccess.ReadOnly)] [DataField("plasmareleaseModifier")] - public float PlasmaReleaseModifier = 750f; + public float PlasmaReleaseModifier = 0.001333f; /// - /// Higher == less oxygen released at high temperature/power + /// Multiplier on how much oxygen is released during supermatter reactions. + /// Default is ~1/325 /// [ViewVariables(VVAccess.ReadOnly)] [DataField("oxygenreleaseModifier")] - public float OxygenReleaseModifier = 325f; + public float OxygenReleaseEfficiencyModifier = 0.0031f; #endregion SM Calculation @@ -147,70 +145,61 @@ public sealed partial class SupermatterComponent : Component /// we yell if over 50 damage every YellTimer Seconds /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("yellTimer")] public float YellTimer = 30f; /// /// set to YellTimer at first so it doesnt yell a minute after being hit /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("yellAccumulator")] public float YellAccumulator = 30f; /// /// YellTimer before the SM is about the delam /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("yellDelam")] public float YellDelam = 5f; /// /// Timer for Damage /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("damageupdateAccumulator")] public float DamageUpdateAccumulator; /// /// update environment damage every 1 second /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("damageupdateTimer")] public float DamageUpdateTimer = 1f; /// /// Timer for delam /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("delamtimerAccumulator")] public float DelamTimerAccumulator; /// /// updates delam /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("delamtimerTimer")] - public int DelamTimerTimer = 30; + [DataField("finalCountdownTime")] + public int FinalCountdownTime = 30; /// /// The message timer /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("speakaccumulator")] public float SpeakAccumulator = 5f; /// /// Atmos update timer /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("atmosupdateAccumulator")] public float AtmosUpdateAccumulator; /// /// update atmos every 1 second /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("atmosupdateTimer")] public float AtmosUpdateTimer = 1f; #endregion SM Timer @@ -266,7 +255,7 @@ public sealed partial class SupermatterComponent : Component public float PowerPenaltyThreshold = 5000f; /// - /// Higher == Crystal safe operational temperature is higher. + /// Maximum safe operational temperature in degrees Celsius. Supermatter begins taking damage above this temperature. /// [ViewVariables(VVAccess.ReadOnly)] [DataField("heatpenaltyThreshold")] @@ -276,7 +265,6 @@ public sealed partial class SupermatterComponent : Component /// The damage we had before this cycle. Used to limit the damage we can take each cycle, and for safe alert /// [ViewVariables(VVAccess.ReadWrite)] - [DataField("damagearchived")] public float DamageArchived = 0f; /// @@ -284,7 +272,6 @@ public sealed partial class SupermatterComponent : Component /// evironmental damage per cycle /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("damageHardcap")] public float DamageHardcap = 0.002f; /// @@ -313,10 +300,12 @@ public sealed partial class SupermatterComponent : Component public int ExplosionPoint = 900; //Are we delamming? - [ViewVariables(VVAccess.ReadOnly)] public bool Delamming = false; + [ViewVariables(VVAccess.ReadOnly)] + public bool Delamming = false; //it's the final countdown - [ViewVariables(VVAccess.ReadOnly)] public bool FinalCountdown = false; + [ViewVariables(VVAccess.ReadOnly)] + public bool FinalCountdown = false; //Explosion totalIntensity value [ViewVariables(VVAccess.ReadOnly)] diff --git a/Content.Shared/Supermatter/Components/SupermatterImmuneComponent.cs b/Content.Shared/Supermatter/Components/SupermatterImmuneComponent.cs new file mode 100644 index 00000000000..b517115eca7 --- /dev/null +++ b/Content.Shared/Supermatter/Components/SupermatterImmuneComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Supermatter.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class SupermatterImmuneComponent : Component +{ + +} diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index a05d346c2f2..2c7c99ede0f 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -342,6 +342,9 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitEngineeringWhite + - type: ClothingGrantComponent + component: + - type: SupermatterImmune #Chief Medical Officer's Hardsuit - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 80e87d3670c..761b1011bbd 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -97,6 +97,7 @@ - type: InventorySlots - type: Loadout prototypes: [ MobAghostGear ] + - type: SupermatterImmune - type: entity id: ActionAGhostShowSolar diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml index bffd34e4fc0..4ea66adc6a9 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/morgue.yml @@ -110,7 +110,6 @@ - type: Tag tags: - Trash - - SMImmune - type: SolutionContainerManager solutions: food: @@ -123,6 +122,7 @@ ignoreEmpty: true - type: Extractable grindableSolutionName: food + - type: SupermatterImmune - type: entity parent: Ash diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 62772b23482..daa0b9069b4 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1091,9 +1091,6 @@ - type: Tag id: SmallMech -- type: Tag - id: SMImmune - - type: Tag id: Smokable From 11e65302bb81fc7d630b660d8088c437112e6f76 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Thu, 20 Jun 2024 21:49:31 -0400 Subject: [PATCH 12/38] Update supermatter.yml --- Resources/Prototypes/Entities/Supermatter/supermatter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Supermatter/supermatter.yml index 72348a4bb63..e84b51ffd8b 100644 --- a/Resources/Prototypes/Entities/Supermatter/supermatter.yml +++ b/Resources/Prototypes/Entities/Supermatter/supermatter.yml @@ -1,6 +1,6 @@ - type: entity - id: supermatter - name: Supermatter + id: Supermatter + name: supermatter description: A strangely translucent and iridescent crystal. placement: mode: SnapgridCenter From d6d570794bb38d7616e09a58839a7fa14f3270a8 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Thu, 20 Jun 2024 21:55:49 -0400 Subject: [PATCH 13/38] Update supermatter.ftl --- Resources/Locale/en-US/supermatter/supermatter.ftl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Locale/en-US/supermatter/supermatter.ftl b/Resources/Locale/en-US/supermatter/supermatter.ftl index 530fae8a6e9..d2010464580 100644 --- a/Resources/Locale/en-US/supermatter/supermatter.ftl +++ b/Resources/Locale/en-US/supermatter/supermatter.ftl @@ -1,7 +1,7 @@ supermatter-self = Supermatter -supermatter-danger-message = Danger! Crystal hyperstructure integrity faltering! Integrity: { $integrity }% -supermatter-warning-message = WARNING! Crystal hyperstructure integrity reaching critical levels! Integrity: { $integrity }% -supermatter-safe-alert = Crystalline hyperstructure returning to safe operating parameters. Failsafe has been Disengaged. Integrity: { $integrity }% +supermatter-danger-message = Danger! Crystal hyperstructure integrity faltering! Integrity: {$integrity}% +supermatter-warning-message = WARNING! Crystal hyperstructure integrity reaching critical levels! Integrity: {$integrity}% +supermatter-safe-alert = Crystalline hyperstructure returning to safe operating parameters. Failsafe has been Disengaged. Integrity: {$integrity}% supermatter-delamination-overmass = The Supermatter has Reached Critical Mass Falure. Singularity formation Imminent supermatter-delamination-default = The Supermatter has Reached Critical Integrity Falure. Emergency Causality Destabilization Field has been Activated. -supermatter-seconds-before-delam = { $Seconds } Seconds Remain Before Delamination. +supermatter-seconds-before-delam = {$Seconds} Seconds Remain Before Delamination. From d94c07d9834a166d51088c0126c74972055be586 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 21 Jun 2024 15:18:42 -0400 Subject: [PATCH 14/38] Delete edge.yml --- Resources/Maps/edge.yml | 114991 ------------------------------------- 1 file changed, 114991 deletions(-) delete mode 100644 Resources/Maps/edge.yml diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml deleted file mode 100644 index 678427c565b..00000000000 --- a/Resources/Maps/edge.yml +++ /dev/null @@ -1,114991 +0,0 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 1: FloorArcadeBlue - 2: FloorArcadeBlue2 - 14: FloorBar - 17: FloorBlue - 18: FloorBlueCircuit - 23: FloorCarpetClown - 24: FloorCarpetOffice - 29: FloorConcrete - 30: FloorConcreteMono - 32: FloorDark - 36: FloorDarkMini - 37: FloorDarkMono - 40: FloorDarkPavementVertical - 41: FloorDarkPlastic - 44: FloorEighties - 47: FloorFreezer - 48: FloorGlass - 50: FloorGrass - 53: FloorGrassLight - 55: FloorGrayConcreteMono - 57: FloorGreenCircuit - 58: FloorGym - 59: FloorHull - 60: FloorHullReinforced - 61: FloorHydro - 63: FloorKitchen - 64: FloorLaundry - 67: FloorMetalDiamond - 68: FloorMime - 70: FloorMiningDark - 72: FloorMono - 75: FloorOldConcreteSmooth - 77: FloorPlanetGrass - 79: FloorRGlass - 80: FloorReinforced - 81: FloorReinforcedHardened - 83: FloorShowroom - 87: FloorShuttleOrange - 89: FloorShuttleRed - 90: FloorShuttleWhite - 94: FloorSteel - 96: FloorSteelCheckerDark - 102: FloorSteelHerringbone - 105: FloorSteelMono - 107: FloorSteelPavement - 108: FloorSteelPavementVertical - 109: FloorTechMaint - 110: FloorTechMaint2 - 111: FloorTechMaint3 - 113: FloorWhite - 114: FloorWhiteDiagonal - 122: FloorWhitePlastic - 123: FloorWood - 125: FloorWoodTile - 126: Lattice - 127: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - uid: 2 - components: - - type: MetaData - - type: Transform - pos: -0.5,-0.5 - parent: 1 - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: XgAAAAACMAAAAAAAMAAAAAACfwAAAAAAXgAAAAACXgAAAAADMAAAAAABMAAAAAABXgAAAAABXgAAAAACMAAAAAABXgAAAAABMAAAAAAAMAAAAAACXgAAAAADMAAAAAACMAAAAAACXgAAAAACXgAAAAABbQAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAMAAAAAAAXgAAAAABXgAAAAAAMAAAAAACXgAAAAAAMAAAAAAAXgAAAAADNQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABNQAAAAADMAAAAAADXgAAAAACNQAAAAAAfwAAAAAAbwAAAAABbwAAAAAAfwAAAAAAbwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAcQAAAAADMAAAAAADMAAAAAABMAAAAAABMAAAAAADcQAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbgAAAAAAcQAAAAABcQAAAAADcQAAAAACSAAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAADfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAACcQAAAAACcQAAAAADbwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAcQAAAAADcQAAAAACcQAAAAADfwAAAAAAcQAAAAAAcQAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABSAAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAAAcgAAAAABbwAAAAABbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAASAAAAAAAcQAAAAADcgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAACbwAAAAADbgAAAAAAcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACbwAAAAABfwAAAAAAcQAAAAACcQAAAAABcQAAAAACcQAAAAABcQAAAAADcQAAAAAC - version: 6 - 0,-1: - ind: 0,-1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAAAXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAABTwAAAAADXgAAAAAAMAAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABUAAAAAAAbwAAAAAAbwAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACTwAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADUAAAAAAAfwAAAAAAbwAAAAACbwAAAAAAfwAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAABTwAAAAACXgAAAAABMAAAAAADMAAAAAAAMAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAbgAAAAAAXgAAAAAAMAAAAAAAMAAAAAADXgAAAAACXgAAAAABMAAAAAAAMAAAAAADXgAAAAAATwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAACUAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAADfwAAAAAAXgAAAAAAXgAAAAACMAAAAAAAMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACMAAAAAABXgAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAABXgAAAAADbQAAAAAAXgAAAAAAXgAAAAABMAAAAAACMAAAAAAAXgAAAAAAXgAAAAACMAAAAAADXgAAAAAANQAAAAADfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAMAAAAAAAXgAAAAAANQAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAANQAAAAAANQAAAAABXgAAAAADXgAAAAABMAAAAAAAXgAAAAABXgAAAAADbQAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADMAAAAAAAXgAAAAAD - version: 6 - -1,0: - ind: -1,0 - tiles: XgAAAAABXgAAAAACXgAAAAACMAAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAACMAAAAAACXgAAAAACXgAAAAACXgAAAAACMAAAAAABfwAAAAAAMAAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAABbQAAAAAAXgAAAAACXgAAAAABfwAAAAAATwAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAANQAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAABfwAAAAAANQAAAAACXgAAAAADMAAAAAADMAAAAAADXgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAADfwAAAAAAXgAAAAADMAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACTwAAAAABXgAAAAADXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABMAAAAAAAXgAAAAAAMAAAAAABMAAAAAAAXgAAAAACMAAAAAAAMAAAAAAAXgAAAAAATwAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAABXgAAAAACbgAAAAAAbwAAAAACfwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAABfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAAAXgAAAAABXgAAAAABfwAAAAAAbgAAAAAAbgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAMAAAAAACXgAAAAABbQAAAAAAbgAAAAAAbgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAAAMAAAAAACfwAAAAAAbwAAAAABbwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAABbgAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: fwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMAAAAAACXgAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADMAAAAAACXgAAAAADXgAAAAABXgAAAAACfwAAAAAAbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAABNQAAAAABNQAAAAACNQAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAADewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAAAewAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAALAAAAAAALAAAAAAATwAAAAACewAAAAACewAAAAAADgAAAAACDgAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAABewAAAAABDgAAAAABMAAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAACDgAAAAAAMAAAAAABDgAAAAADDgAAAAABDgAAAAACDgAAAAABbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAewAAAAACewAAAAACfwAAAAAAewAAAAAAewAAAAACDgAAAAADMAAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAACfwAAAAAAbwAAAAACbwAAAAADXgAAAAADfwAAAAAAewAAAAADewAAAAAATwAAAAAAewAAAAABewAAAAADDgAAAAABMAAAAAAADgAAAAABDgAAAAACDgAAAAAAbQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAABfwAAAAAAewAAAAABewAAAAACfwAAAAAAewAAAAADewAAAAACDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAAbQAAAAAAfwAAAAAAXgAAAAACMAAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAABDgAAAAACDgAAAAACfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAANQAAAAACXgAAAAAAXgAAAAADNQAAAAABNQAAAAAANQAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAADXgAAAAACXgAAAAADMAAAAAADXgAAAAABbQAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAACXgAAAAADXgAAAAADMAAAAAABXgAAAAAAbQAAAAAAXgAAAAAAXgAAAAAB - version: 6 - 1,0: - ind: 1,0 - tiles: bQAAAAAAXgAAAAAAMAAAAAABMAAAAAADXgAAAAABMAAAAAACMAAAAAAAXgAAAAACMAAAAAABMAAAAAADXgAAAAAAMAAAAAADMAAAAAADXgAAAAAAMAAAAAACMAAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAACcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAewAAAAAAewAAAAADewAAAAACKQAAAAAAfwAAAAAAOgAAAAACOgAAAAADfwAAAAAAcQAAAAABcQAAAAADcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAACKQAAAAAAfwAAAAAAOgAAAAADOgAAAAACSAAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADbQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAACfwAAAAAAOgAAAAACOgAAAAACSAAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAAAfwAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAACfwAAAAAAOgAAAAACOgAAAAADfwAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAOgAAAAACOgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAOgAAAAABOgAAAAADcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOgAAAAABOgAAAAACcgAAAAABcgAAAAABcgAAAAACcQAAAAADfwAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAOgAAAAADOgAAAAADcgAAAAAAcgAAAAADcgAAAAAAcQAAAAADfwAAAAAAcQAAAAACcQAAAAABcQAAAAADfwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAcQAAAAABfwAAAAAAUwAAAAAAUwAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAABSAAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAABfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAADfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACfwAAAAAAbgAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADSAAAAAAAcQAAAAACcQAAAAADcQAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAACcQAAAAABfwAAAAAAewAAAAADewAAAAAB - version: 6 - 1,-1: - ind: 1,-1 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAADXgAAAAACTwAAAAACXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACMAAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACTwAAAAADXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAADXgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAABMAAAAAAAXgAAAAADfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAABfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAUAAAAAAAMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADfwAAAAAAewAAAAACewAAAAABGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAACUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAADewAAAAABewAAAAACTwAAAAADXgAAAAADMAAAAAAAXgAAAAACXgAAAAADbQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAADewAAAAACfwAAAAAAXgAAAAADXgAAAAACMAAAAAADXgAAAAAAUAAAAAAAMAAAAAAAIAAAAAACMAAAAAACIAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAABfwAAAAAAMAAAAAADIAAAAAACMAAAAAADIAAAAAADfwAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAA - version: 6 - -1,1: - ind: -1,1 - tiles: fwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbAAAAAACXgAAAAADXgAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbAAAAAABXgAAAAAAMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbAAAAAABXgAAAAACXgAAAAACfwAAAAAAVwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAADgAAAAAADgAAAAACDgAAAAAAfwAAAAAAbAAAAAABXgAAAAABXgAAAAABbQAAAAAAWgAAAAAAfwAAAAAAewAAAAABGAAAAAAAGAAAAAAAfwAAAAAAbAAAAAABDgAAAAADDgAAAAADDgAAAAAADgAAAAACfwAAAAAAbAAAAAABXgAAAAAAMAAAAAAAfwAAAAAAVwAAAAAAbgAAAAAAewAAAAABGAAAAAAAGAAAAAAAfwAAAAAAbAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAAbAAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADGAAAAAAAGAAAAAAAfwAAAAAAbAAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAABbAAAAAABXgAAAAACXgAAAAACfwAAAAAAfgAAAAAAfwAAAAAAewAAAAADGAAAAAAAGAAAAAAAfwAAAAAAbAAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAACbAAAAAAAXgAAAAAAMAAAAAADfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAZgAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAAAawAAAAACZgAAAAABXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADMAAAAAACXgAAAAACbQAAAAAAXgAAAAADMAAAAAAAXgAAAAACXgAAAAACXgAAAAAAMAAAAAAAXgAAAAACXgAAAAAAXgAAAAABbgAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAMAAAAAAAbQAAAAAAXgAAAAACXgAAAAABMAAAAAAAXgAAAAABXgAAAAABXgAAAAADMAAAAAAAXgAAAAAAMAAAAAACfwAAAAAAfwAAAAAANQAAAAABNQAAAAADXgAAAAADXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADewAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAewAAAAAAewAAAAADfwAAAAAAbwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADMAAAAAAC - version: 6 - 0,1: - ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAABcQAAAAADcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAVwAAAAAAVwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAABfwAAAAAAcQAAAAABcQAAAAAAfwAAAAAASAAAAAAAWgAAAAAAWQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAcQAAAAADcQAAAAADfwAAAAAASAAAAAAAVwAAAAAAVwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAADSAAAAAAAcQAAAAABcQAAAAABfwAAAAAASAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAACewAAAAACfwAAAAAAcQAAAAAAcQAAAAABfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAABSAAAAAAAcQAAAAADcQAAAAAASAAAAAAAcQAAAAABfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADewAAAAABfwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - 1,1: - ind: 1,1 - tiles: cQAAAAACcQAAAAAAcQAAAAADcQAAAAAASAAAAAAAcQAAAAACcQAAAAACcQAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAABfwAAAAAAewAAAAAAewAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAABfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAASAAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAAASAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAADfwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAADSAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAADcQAAAAABcQAAAAACcQAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAADcQAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAABcQAAAAACcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACfwAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAACcQAAAAACcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAADcQAAAAAAcQAAAAACcQAAAAACcQAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAMAAAAAACMAAAAAAAMAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA - version: 6 - 1,-2: - ind: 1,-2 - tiles: XgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABXgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADXgAAAAACHgAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABHgAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADbwAAAAADbwAAAAADbwAAAAACfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAIAAAAAACIAAAAAABfwAAAAAAIAAAAAABfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAXgAAAAACMAAAAAADXgAAAAAAMAAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAIAAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAADXgAAAAACfwAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: LAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAABfQAAAAABewAAAAABQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABLAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAACewAAAAABQwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACewAAAAAAewAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABJQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABfwAAAAAAXgAAAAABXgAAAAABQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACTwAAAAAAXgAAAAAATwAAAAADQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAXgAAAAAATwAAAAACXgAAAAADTwAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAABJQAAAAABfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbgAAAAAAJQAAAAAAJQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAADfwAAAAAAbwAAAAADfwAAAAAAJQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAACfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAXgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABfwAAAAAAXgAAAAADMAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAA - version: 6 - -1,-2: - ind: -1,-2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAACUAAAAAAAQwAAAAAAJAAAAAABJAAAAAACJAAAAAAALAAAAAAAfwAAAAAAEgAAAAAAUAAAAAAAJQAAAAABJQAAAAACJQAAAAABfwAAAAAAXgAAAAADfwAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAMAAAAAADMAAAAAAAMAAAAAAALAAAAAAAfwAAAAAAEgAAAAAAUAAAAAAAJQAAAAACJQAAAAACJQAAAAAAfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAUAAAAAAAJQAAAAADJQAAAAACJQAAAAACQwAAAAAAXgAAAAACfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAACJQAAAAABJQAAAAADfwAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAADfwAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAJQAAAAADOQAAAAAAOQAAAAAAfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAfwAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAACfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAACXgAAAAACfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAfwAAAAAAJQAAAAABUAAAAAAAUAAAAAAAJQAAAAABJQAAAAACfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABQwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAABQwAAAAAAXgAAAAADXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAADfwAAAAAAJQAAAAADfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAXgAAAAACXgAAAAABUAAAAAAAfwAAAAAAXgAAAAACXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAXgAAAAACMAAAAAADXgAAAAACMAAAAAABXgAAAAAAQwAAAAAAXgAAAAABXgAAAAADUAAAAAAAQwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADbQAAAAAAXgAAAAACXgAAAAACMAAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAADUAAAAAAAUAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAACMAAAAAAAXgAAAAADbQAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABUAAAAAAA - version: 6 - -2,-2: - ind: -2,-2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAADTwAAAAACTwAAAAABbQAAAAAAXgAAAAAAXgAAAAABMAAAAAACAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAACbQAAAAAAXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAADMAAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACMAAAAAADbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbgAAAAAAXgAAAAACXgAAAAACXgAAAAADfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAACXgAAAAADMAAAAAAC - version: 6 - -2,-1: - ind: -2,-1 - tiles: IAAAAAABIAAAAAABfwAAAAAAIAAAAAABIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADfwAAAAAAXgAAAAABXgAAAAACXgAAAAABIAAAAAABIAAAAAAAbQAAAAAAIAAAAAABIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAIAAAAAAAIAAAAAACfwAAAAAAIAAAAAADIAAAAAACUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABfwAAAAAAXgAAAAACMAAAAAAAXgAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAACIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADfwAAAAAAXgAAAAABXgAAAAADMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAADXgAAAAABXgAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAADbQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAIAAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAAAbQAAAAAAXgAAAAADXgAAAAAAMAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABIAAAAAADfwAAAAAAMAAAAAABMAAAAAABMAAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAIAAAAAABfwAAAAAAMAAAAAADMAAAAAACMAAAAAADfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACMAAAAAABfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAMAAAAAACMAAAAAADMAAAAAAAfwAAAAAAXgAAAAADXgAAAAABMAAAAAABMAAAAAADMAAAAAACXgAAAAAAbQAAAAAAXgAAAAAAMAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAACXgAAAAABXgAAAAADMAAAAAAAbQAAAAAAXgAAAAACXgAAAAADMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAcQAAAAACcQAAAAACfwAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAMAAAAAABXgAAAAACXgAAAAADXgAAAAAAMAAAAAAAbQAAAAAAXgAAAAACXgAAAAABMAAAAAABXgAAAAAA - version: 6 - -2,0: - ind: -2,0 - tiles: cQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAACXgAAAAABXgAAAAACbQAAAAAAXgAAAAABXgAAAAAAXgAAAAABMAAAAAAAcQAAAAADcQAAAAAAcgAAAAADcgAAAAABcgAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAcQAAAAADcQAAAAABcgAAAAADcgAAAAABcgAAAAACbQAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAPQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACPQAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAPQAAAAAAPQAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAbQAAAAAAXgAAAAACMAAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMAAAAAAAMAAAAAADMAAAAAACXgAAAAAAXgAAAAADbQAAAAAAXgAAAAACXgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAbQAAAAAAXgAAAAACXgAAAAACPQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABMAAAAAACfwAAAAAAXgAAAAABXgAAAAADfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAACMAAAAAABfwAAAAAAPQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAPQAAAAAAMAAAAAADXgAAAAABMAAAAAAAXgAAAAAAXgAAAAABLwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAADXgAAAAABfwAAAAAAPQAAAAAAXgAAAAACMAAAAAADXgAAAAABPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAMAAAAAABXgAAAAABTwAAAAAAXgAAAAABMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAXgAAAAABfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADMAAAAAAAXgAAAAABXgAAAAADbQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAPQAAAAAAXgAAAAACfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAMAAAAAACXgAAAAADXgAAAAACMAAAAAACXgAAAAACbQAAAAAAXgAAAAACXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAA - version: 6 - -2,1: - ind: -2,1 - tiles: XgAAAAABMAAAAAACXgAAAAAAXgAAAAADMAAAAAACfwAAAAAAMAAAAAABXgAAAAABXgAAAAABfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAegAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAXgAAAAADXgAAAAABfwAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAMAAAAAABXgAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAewAAAAAAMAAAAAABewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAXgAAAAAAXgAAAAADTwAAAAADewAAAAACMAAAAAAAewAAAAACfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAADfwAAAAAAewAAAAADewAAAAACewAAAAABfwAAAAAAbgAAAAAAfwAAAAAANQAAAAAAewAAAAADewAAAAADewAAAAABNQAAAAACNQAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAADfQAAAAAAfQAAAAADfQAAAAAAMAAAAAADMAAAAAADbQAAAAAAXgAAAAABXgAAAAACXgAAAAACMAAAAAADXgAAAAACXgAAAAACXgAAAAACMAAAAAADXgAAAAAAewAAAAABewAAAAACewAAAAADewAAAAACewAAAAACewAAAAABbQAAAAAAMAAAAAABXgAAAAADXgAAAAAAXgAAAAABMAAAAAAAXgAAAAABXgAAAAACXgAAAAAAMAAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAABfwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADNQAAAAAANQAAAAAAMAAAAAACewAAAAADewAAAAACewAAAAADMAAAAAADMAAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfQAAAAADfQAAAAACfQAAAAADewAAAAAAewAAAAADfwAAAAAAMAAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAAAewAAAAADewAAAAACfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAACewAAAAABewAAAAADewAAAAABMAAAAAABMAAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - -3,-1: - ind: -3,-1 - tiles: KQAAAAABKQAAAAAAKQAAAAADfwAAAAAAIAAAAAABIAAAAAAAQwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAIAAAAAAAKQAAAAABKQAAAAAAKQAAAAACfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAADfwAAAAAAIAAAAAAAKQAAAAAAKQAAAAABKQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAADfwAAAAAAIAAAAAACKQAAAAAAKQAAAAACKQAAAAABfwAAAAAAIAAAAAABIAAAAAACQwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADbQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABbQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAABbQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABbQAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAIAAAAAADfwAAAAAAWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADfwAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAC - version: 6 - -3,0: - ind: -3,0 - tiles: bwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAWQAAAAAAUAAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAABbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAADbwAAAAACfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACbQAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAACMAAAAAACMAAAAAAAMAAAAAADXgAAAAABXgAAAAADMAAAAAACMAAAAAAAMAAAAAADbQAAAAAAXgAAAAAAMAAAAAAAMAAAAAADMAAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAMAAAAAAANQAAAAABfwAAAAAAXgAAAAABMAAAAAABXgAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACNQAAAAACfwAAAAAAMAAAAAACXgAAAAACXgAAAAACfwAAAAAARAAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAADFwAAAAAAfwAAAAAAMAAAAAABXgAAAAABMAAAAAABfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAABfwAAAAAARAAAAAAARAAAAAAARAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAMAAAAAACXgAAAAAAMAAAAAADfwAAAAAAaQAAAAABXgAAAAACXgAAAAABMAAAAAABfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAADfwAAAAAAaQAAAAAAXgAAAAABMAAAAAADXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADMAAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAMAAAAAACXgAAAAACXgAAAAACbQAAAAAAMAAAAAABXgAAAAACXgAAAAABMAAAAAAAXgAAAAABXgAAAAABMAAAAAABMAAAAAABXgAAAAABXgAAAAACXgAAAAAAbQAAAAAAXgAAAAACMAAAAAAAXgAAAAABbQAAAAAAXgAAAAAAMAAAAAACXgAAAAADXgAAAAAAMAAAAAADXgAAAAADXgAAAAAD - version: 6 - -3,1: - ind: -3,1 - tiles: XgAAAAADXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAXgAAAAADMAAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAAAMAAAAAADXgAAAAABXgAAAAACXgAAAAABbQAAAAAAXgAAAAACMAAAAAADXgAAAAADfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAMAAAAAACXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACXgAAAAABfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAATwAAAAAATwAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAfwAAAAAAaQAAAAACXgAAAAADMAAAAAADXgAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAAegAAAAAATwAAAAAAMAAAAAABXgAAAAABMAAAAAAAfwAAAAAAaQAAAAACXgAAAAACXgAAAAABMAAAAAABfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAATwAAAAAATwAAAAAAMAAAAAACXgAAAAACMAAAAAADfwAAAAAAfwAAAAAAXgAAAAADMAAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAMAAAAAAANQAAAAACfwAAAAAAMAAAAAAAXgAAAAABXgAAAAADbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMAAAAAADNQAAAAAAfwAAAAAAXgAAAAAAMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAMAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAACewAAAAABMAAAAAACewAAAAACewAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAMAAAAAACewAAAAADewAAAAACewAAAAABewAAAAAAfwAAAAAAMAAAAAACXgAAAAAAMAAAAAACXgAAAAADXgAAAAADMAAAAAABMAAAAAACMAAAAAAAXgAAAAADbQAAAAAAewAAAAACewAAAAADMAAAAAACewAAAAAAewAAAAAAbQAAAAAAMAAAAAABXgAAAAAAMAAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAewAAAAACewAAAAADMAAAAAABewAAAAADewAAAAABbQAAAAAAMAAAAAABXgAAAAADMAAAAAAAXgAAAAADXgAAAAAAMAAAAAADMAAAAAADMAAAAAAAXgAAAAAAbQAAAAAAMAAAAAADewAAAAACewAAAAAAewAAAAACewAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAbQAAAAAAewAAAAAAewAAAAABMAAAAAAAewAAAAACewAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAewAAAAABewAAAAABewAAAAACfwAAAAAAMAAAAAAD - version: 6 - -3,-2: - ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANwAAAAACNwAAAAADNwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAbwAAAAAANwAAAAACNwAAAAAANwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAbgAAAAAAfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAbwAAAAABNwAAAAAANwAAAAABNwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - 2,-2: - ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABNQAAAAABNQAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAMAAAAAAAXgAAAAACMAAAAAADXgAAAAABMAAAAAADXgAAAAADMAAAAAACXgAAAAABfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAAAXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABMAAAAAAAXgAAAAACMAAAAAABXgAAAAAAMAAAAAAAXgAAAAADMAAAAAACXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACNQAAAAABNQAAAAACNQAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,-1: - ind: 2,-1 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAABXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMgAAAAAAfwAAAAAANQAAAAACXgAAAAAAMAAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMgAAAAAAfwAAAAAANQAAAAAAXgAAAAADXgAAAAABMAAAAAACbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAACfwAAAAAANQAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABfwAAAAAANQAAAAADXgAAAAABXgAAAAABXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADfwAAAAAANQAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAABMAAAAAADbQAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAXgAAAAADXgAAAAACMAAAAAADXgAAAAACUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABbQAAAAAAXgAAAAACXgAAAAAAXgAAAAADMAAAAAADUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABMAAAAAADIAAAAAADMAAAAAACUAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADUAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAMAAAAAACIAAAAAADMAAAAAABfwAAAAAAMAAAAAACXgAAAAABXgAAAAAAXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAADXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACfwAAAAAAXgAAAAAAXgAAAAADMAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 2,0: - ind: 2,0 - tiles: XgAAAAACMAAAAAABMAAAAAABXgAAAAABbQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAMAAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAABOgAAAAACOgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAACOgAAAAAAOgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAABOgAAAAABOgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAOgAAAAADOgAAAAACOgAAAAADOgAAAAABOgAAAAACOgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOgAAAAACOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAKQAAAAADKQAAAAACKQAAAAADUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA - version: 6 - 2,1: - ind: 2,1 - tiles: ewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,0: - ind: -4,0 - tiles: fgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAABXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAADMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACMAAAAAAA - version: 6 - -4,-1: - ind: -4,-1 - tiles: fgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAACewAAAAABewAAAAAAewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAOwAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAABTQAAAAACfwAAAAAAewAAAAABewAAAAADewAAAAABQwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAABIAAAAAAAOwAAAAAATQAAAAADTQAAAAACTQAAAAAATQAAAAAATQAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAACIAAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAQwAAAAAAewAAAAADewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAATQAAAAACTQAAAAADTQAAAAADTQAAAAABTQAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAADQwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABQwAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAewAAAAADewAAAAAAfwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAACQwAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAABfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAABewAAAAADfwAAAAAA - version: 6 - -4,-2: - ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAABXgAAAAAAfwAAAAAALAAAAAAALAAAAAAAfwAAAAAA - version: 6 - -4,1: - ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - -2,-3: - ind: -2,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAARgAAAAAARgAAAAAAUAAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA - version: 6 - -1,-3: - ind: -1,-3 - tiles: QwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAXgAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAABXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAADXgAAAAADQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAXgAAAAACXgAAAAADQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAfwAAAAAAJAAAAAADJAAAAAAAJAAAAAACQwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAMAAAAAADMAAAAAABMAAAAAABfwAAAAAA - version: 6 - 0,-3: - ind: 0,-3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABfwAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKAAAAAADKAAAAAACKAAAAAABfwAAAAAAJQAAAAAAfwAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAATwAAAAAATwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAJQAAAAADfwAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAQwAAAAAAfwAAAAAAXgAAAAAATwAAAAAAPAAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAACewAAAAADQwAAAAAAfwAAAAAAXgAAAAACTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAADQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAD - version: 6 - 1,-3: - ind: 1,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAABXgAAAAACXgAAAAACUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,2: - ind: -3,2 - tiles: XgAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAACMAAAAAAAMAAAAAABMAAAAAAAXgAAAAABbQAAAAAAewAAAAADewAAAAADewAAAAABfwAAAAAAewAAAAACMAAAAAABXgAAAAABMAAAAAACMAAAAAACbQAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAADfwAAAAAAbQAAAAAAMAAAAAABXgAAAAADUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABMAAAAAABMAAAAAADMAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAfwAAAAAAIAAAAAADMAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACMAAAAAACXgAAAAACfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAMAAAAAADMAAAAAACUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAbQAAAAAAfwAAAAAAMAAAAAACXgAAAAABXgAAAAACfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAMAAAAAACMAAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAMAAAAAABKQAAAAABKQAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAAAfwAAAAAAXgAAAAABXgAAAAACSwAAAAAASwAAAAACXgAAAAABXgAAAAAAXgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABKQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAbwAAAAACfwAAAAAAfwAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,2: - ind: -4,2 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAADMAAAAAADXgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAMAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAKQAAAAADKQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAKQAAAAADKQAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - -2,2: - ind: -2,2 - tiles: ewAAAAABewAAAAACewAAAAACewAAAAADewAAAAABewAAAAACfwAAAAAAMAAAAAADXgAAAAAAXgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACbQAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAACIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAMAAAAAABXgAAAAABXgAAAAACbQAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAACTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAABfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAABMAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAABfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACbgAAAAAAcQAAAAABcQAAAAADcQAAAAAAMAAAAAADMAAAAAAAMAAAAAABIAAAAAADIAAAAAADIAAAAAACfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACMAAAAAADMAAAAAABMAAAAAADMAAAAAAAMAAAAAABIAAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAMAAAAAADMAAAAAABMAAAAAACMAAAAAABMAAAAAAAMAAAAAAAMAAAAAABfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAMAAAAAABMAAAAAACMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: fwAAAAAAbwAAAAACfwAAAAAAJQAAAAAAIAAAAAACMAAAAAABMAAAAAABIAAAAAACJQAAAAACfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABIAAAAAACMAAAAAABMAAAAAABIAAAAAACJQAAAAACfwAAAAAAIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAewAAAAABMAAAAAACIAAAAAABIAAAAAACfwAAAAAAJQAAAAACIAAAAAADMAAAAAADMAAAAAABIAAAAAAAJQAAAAACfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADbQAAAAAAewAAAAAAewAAAAABIAAAAAAAIAAAAAACbQAAAAAAJQAAAAADIAAAAAACMAAAAAADMAAAAAACIAAAAAADJQAAAAABbQAAAAAAIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAewAAAAACMAAAAAACIAAAAAADIAAAAAABfwAAAAAAJQAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAJQAAAAABfwAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAKQAAAAABTwAAAAACTwAAAAABKQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAewAAAAADewAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACTwAAAAACTwAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAACbQAAAAAAewAAAAADewAAAAADNQAAAAACNQAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAANQAAAAADNQAAAAADfwAAAAAAewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAMAAAAAADMAAAAAABMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACMAAAAAADMAAAAAACfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,2: - ind: 0,2 - tiles: MAAAAAADewAAAAADewAAAAACTwAAAAAATwAAAAADUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADMAAAAAABewAAAAADTwAAAAACTwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAMAAAAAABewAAAAADewAAAAAATwAAAAACTwAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAABMAAAAAABewAAAAABTwAAAAAATwAAAAABUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAADfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-4: - ind: 0,-4 - tiles: AAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-4: - ind: -1,-4 - tiles: fwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - -2,-4: - ind: -2,-4 - tiles: AAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAA - version: 6 - -3,-3: - ind: -3,-3 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAUAAAAAAARgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAARgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - -3,-4: - ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA - version: 6 - -5,-1: - ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -5,0: - ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -5,-2: - ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA - version: 6 - -1,-5: - ind: -1,-5 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAABEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAATwAAAAADIAAAAAABfwAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAEgAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAIAAAAAACTwAAAAABUAAAAAAAIAAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABIAAAAAABfwAAAAAAIAAAAAABEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAIAAAAAABIAAAAAADfwAAAAAAIAAAAAABIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAACEgAAAAAAIAAAAAAAIAAAAAABIAAAAAACEgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAATwAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAACMAAAAAADMAAAAAADMAAAAAADMAAAAAADfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA - version: 6 - -2,-5: - ind: -2,-5 - tiles: fwAAAAAAEgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAEgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAIAAAAAACOQAAAAAAOQAAAAAAfwAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAACTwAAAAADTwAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABTwAAAAADTwAAAAAAIAAAAAADfwAAAAAAIAAAAAAATwAAAAADfwAAAAAAIAAAAAACTwAAAAACIAAAAAADIAAAAAABTwAAAAADUAAAAAAAIAAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADUAAAAAAATwAAAAACIAAAAAAAfwAAAAAAEgAAAAAAIAAAAAADTwAAAAAATwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABTwAAAAABTwAAAAACIAAAAAACfwAAAAAAIAAAAAAATwAAAAAAfwAAAAAAEgAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAIAAAAAADOQAAAAAAOQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAEgAAAAAAIAAAAAACEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAIAAAAAADOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAMAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAACMAAAAAADAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAADOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAADOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAOwAAAAAA - version: 6 - -3,-5: - ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAACAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAACMAAAAAACAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAABMAAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAADMAAAAAADMAAAAAACMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAA - version: 6 - 0,-6: - ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-5: - ind: 0,-5 - tiles: AAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAAAMAAAAAACMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAAAMAAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-6: - ind: -1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAABMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAADMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABMAAAAAABMAAAAAAATwAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,-6: - ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,-6: - ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAADMAAAAAABMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAACMAAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAIAAAAAABOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAC - version: 6 - 3,0: - ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA - version: 6 - 3,1: - ind: 3,1 - tiles: AAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 4,0: - ind: 4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,2: - ind: 1,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAMAAAAAABMAAAAAABMAAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,3: - ind: -1,3 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,3: - ind: -2,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -3,3: - ind: -3,3 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAIAAAAAABUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA - version: 6 - -4,3: - ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA - version: 6 - -3,4: - ind: -3,4 - tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -4,4: - ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -5,2: - ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -5,1: - ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA - version: 6 - 1,-4: - ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 10000 - linearDamping: 10000 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - angularDamping: 10000 - linearDamping: 10000 - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 89: 21,-2 - 2688: -27,-39 - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 85: 18,-2 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bot - decals: - 2344: 21,-25 - 2345: 22,-25 - - node: - color: '#FFFFFFFF' - id: BotGreyscale - decals: - 73: -3,-20 - 74: -2,-20 - 75: -1,-20 - 76: -1,-18 - 77: -1,-17 - 86: 19,-2 - 87: 20,-2 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 0: 15,-5 - 1008: 15,-4 - 1361: -50,-11 - 1362: -49,-11 - 1363: -48,-11 - 2591: -1,-36 - 2592: -1,-37 - 2593: 0,-37 - 2594: 0,-36 - 2595: 0,-36 - 2596: 1,-36 - 2597: 1,-37 - 2598: 2,-37 - 2599: 2,-36 - - node: - color: '#FFFFFF93' - id: BotLeftGreyscale - decals: - 292: 4,-23 - 293: 3,-23 - - node: - color: '#FFFFFFFF' - id: BotLeftGreyscale - decals: - 2651: -1,-22 - 2652: -2,-22 - - node: - color: '#FFFFFFFF' - id: BotRight - decals: - 59: 4,-36 - 60: 4,-37 - 61: 5,-37 - 62: 5,-36 - 63: 6,-36 - 64: 6,-37 - 65: 7,-37 - 66: 7,-36 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 1358: -52,-9 - 1366: -52,-10 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Box - decals: - 2233: 5,-26 - 2234: 4,-26 - 2235: 3,-26 - 2236: 2,-26 - 2237: 1,-26 - 2238: 1,-28 - 2239: 2,-28 - 2240: 3,-28 - 2241: 4,-28 - 2242: 5,-28 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Box - decals: - 1961: -52,-9 - - node: - color: '#EFB34196' - id: BoxGreyscale - decals: - 299: -18,-29 - 300: -18,-28 - 301: -18,-35 - - node: - color: '#FFFFFFFF' - id: BoxGreyscale - decals: - 520: -39,34 - 521: -39,35 - 522: -39,36 - 523: -39,37 - 524: -37,25 - 525: -36,25 - 526: -35,25 - 527: -50,32 - 528: -49,32 - 529: -50,37 - 570: -51,37 - 571: -55,31 - 572: -56,31 - 573: -53,31 - 1359: -52,-9 - 1360: -52,-10 - 2299: -57,31 - - node: - cleanable: True - color: '#FFFFFFFF' - id: BrickTileDarkLineW - decals: - 53: -1,-32 - 54: -1,-31 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNe - decals: - 2532: -46,-13 - - node: - color: '#FF0000FF' - id: BrickTileSteelCornerNe - decals: - 90: -47,-3 - 221: -28,-9 - 229: -32,-5 - 260: -21,-12 - 977: -28,-5 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNe - decals: - 6: -8,4 - 13: -8,8 - 22: -6,23 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerNw - decals: - 2533: -48,-13 - - node: - color: '#FF0000FF' - id: BrickTileSteelCornerNw - decals: - 160: -54,-3 - 230: -34,-5 - 267: -24,-12 - 976: -30,-5 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerNw - decals: - 1: -13,4 - 12: -11,8 - 21: -10,23 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSe - decals: - 2539: -46,-19 - - node: - color: '#FF0000FF' - id: BrickTileSteelCornerSe - decals: - 91: -47,-5 - 211: -28,-16 - 261: -21,-17 - 978: -28,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSe - decals: - 11: -8,7 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelCornerSw - decals: - 2538: -48,-19 - - node: - color: '#FF0000FF' - id: BrickTileSteelCornerSw - decals: - 159: -54,-5 - 188: -33,-11 - 208: -29,-16 - 262: -24,-17 - 979: -30,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelCornerSw - decals: - 10: -11,7 - 958: -7,-30 - 2585: -24,4 - - node: - color: '#FF0000FF' - id: BrickTileSteelInnerNe - decals: - 103: -42,-6 - 104: -42,-2 - 116: -43,0 - 117: -41,0 - 225: -32,-9 - - node: - color: '#FF0000FF' - id: BrickTileSteelInnerNw - decals: - 100: -43,-6 - 115: -41,0 - 183: -34,-9 - - node: - color: '#FF0000FF' - id: BrickTileSteelInnerSe - decals: - 105: -42,-2 - 106: -42,0 - - node: - color: '#FF0000FF' - id: BrickTileSteelInnerSw - decals: - 99: -43,-6 - 185: -33,-10 - 204: -29,-11 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelInnerSw - decals: - 957: -6,-30 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineE - decals: - 2528: -46,-15 - 2529: -46,-14 - 2536: -46,-16 - 2537: -46,-18 - 2557: -46,-17 - - node: - color: '#FF0000FF' - id: BrickTileSteelLineE - decals: - 92: -47,-4 - 101: -42,-5 - 108: -43,1 - 118: -41,1 - 123: -42,-3 - 124: -42,-1 - 212: -28,-14 - 213: -28,-13 - 214: -28,-12 - 217: -28,-11 - 220: -28,-10 - 226: -32,-8 - 227: -32,-7 - 228: -32,-6 - 268: -21,-13 - 269: -21,-14 - 270: -21,-15 - 271: -21,-16 - 386: 28,4 - 387: 28,5 - 388: 28,6 - 389: 28,7 - 560: -28,-15 - 974: -28,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineE - decals: - 7: -8,3 - 16: -6,21 - 17: -6,22 - - node: - color: '#D4D4D428' - id: BrickTileSteelLineN - decals: - 1356: -48,-13 - 1357: -46,-13 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineN - decals: - 2534: -47,-13 - - node: - color: '#FF0000FF' - id: BrickTileSteelLineN - decals: - 93: -45,-6 - 94: -44,-6 - 102: -41,-6 - 107: -42,0 - 125: -40,0 - 126: -40,-2 - 127: -41,-2 - 128: -48,-3 - 129: -49,-3 - 133: -50,-3 - 134: -44,-9 - 135: -43,-9 - 136: -42,-9 - 137: -39,-9 - 138: -40,-9 - 139: -39,-9 - 140: -37,-9 - 141: -37,-9 - 142: -38,-9 - 143: -37,-9 - 144: -37,-9 - 153: -41,-9 - 154: -51,-3 - 155: -52,-3 - 156: -53,-3 - 162: -47,-9 - 163: -48,-9 - 164: -49,-9 - 165: -50,-9 - 166: -46,-9 - 172: -47,-7 - 173: -36,-9 - 222: -29,-9 - 223: -30,-9 - 224: -31,-9 - 233: -33,-5 - 258: -23,-12 - 259: -22,-12 - 980: -29,-5 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineN - decals: - 3: -12,4 - 4: -11,4 - 5: -10,4 - 8: -10,8 - 9: -9,8 - 23: -7,23 - 24: -8,23 - 25: -9,23 - 2603: -8,-39 - 2604: -7,-39 - 2605: -6,-39 - - node: - color: '#474A4DFF' - id: BrickTileSteelLineS - decals: - 984: -25,-9 - 985: -24,-9 - 986: -23,-9 - 987: -22,-9 - 988: -21,-9 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineS - decals: - 2540: -47,-19 - - node: - color: '#FF0000FF' - id: BrickTileSteelLineS - decals: - 95: -45,-6 - 96: -44,-6 - 119: -41,0 - 120: -40,0 - 121: -41,-2 - 122: -40,-2 - 130: -48,-5 - 131: -49,-5 - 132: -50,-5 - 145: -44,-10 - 146: -43,-10 - 147: -41,-10 - 148: -40,-10 - 149: -42,-10 - 150: -39,-10 - 151: -37,-10 - 152: -38,-10 - 157: -52,-5 - 158: -53,-5 - 167: -50,-10 - 168: -49,-10 - 169: -48,-10 - 170: -46,-10 - 171: -47,-8 - 174: -36,-10 - 186: -34,-10 - 192: -32,-11 - 193: -31,-11 - 194: -30,-11 - 272: -22,-17 - 273: -23,-17 - 981: -29,-7 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineS - decals: - 14: -10,7 - 15: -9,7 - 2600: -8,-39 - 2601: -7,-39 - 2602: -6,-39 - - node: - color: '#474A4DFF' - id: BrickTileSteelLineW - decals: - 982: -25,-9 - 983: -25,-8 - - node: - color: '#DE3A3AFF' - id: BrickTileSteelLineW - decals: - 2530: -48,-15 - 2531: -48,-14 - 2535: -48,-16 - 2541: -48,-18 - 2542: -48,-17 - - node: - color: '#FF0000FF' - id: BrickTileSteelLineW - decals: - 97: -43,-7 - 98: -43,-5 - 109: -41,1 - 110: -43,1 - 111: -43,0 - 112: -43,-1 - 113: -43,-2 - 114: -43,-3 - 161: -54,-4 - 178: -34,-8 - 179: -34,-7 - 180: -34,-6 - 196: -29,-12 - 197: -29,-13 - 198: -29,-14 - 263: -24,-16 - 264: -24,-15 - 265: -24,-14 - 266: -24,-13 - 561: -29,-15 - 975: -30,-6 - - node: - color: '#FFFFFFFF' - id: BrickTileSteelLineW - decals: - 2: -13,3 - 18: -10,20 - 19: -10,21 - 20: -10,22 - 26: -24,6 - 27: -24,7 - 953: -6,-34 - 954: -6,-33 - 955: -6,-32 - 956: -6,-31 - 959: -7,-28 - 960: -7,-29 - 961: -7,-27 - 962: -7,-26 - 963: -7,-25 - 964: -7,-23 - 965: -7,-22 - 966: -7,-21 - 967: -7,-20 - 968: -7,-19 - 969: -7,-18 - 970: -7,-17 - 971: -7,-16 - 2464: -24,5 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 2054: -8,36 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNe - decals: - 624: 13,6 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerNe - decals: - 749: 28,12 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 510: -39,33 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 365: -16,-33 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 2055: -13,36 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerNw - decals: - 608: 10,15 - 681: 10,6 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 517: -43,34 - 2360: -45,44 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSe - decals: - 400: -17,33 - 424: -15,34 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSe - decals: - 606: 19,15 - 623: 13,8 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 2353: -39,39 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerSw - decals: - 425: -6,33 - - node: - color: '#52B4E996' - id: BrickTileWhiteCornerSw - decals: - 622: 15,8 - 772: 19,23 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 2352: -45,39 - - node: - color: '#52B4E996' - id: BrickTileWhiteEndE - decals: - 615: 15,7 - 628: 19,7 - 646: 23,7 - - node: - color: '#52B4E996' - id: BrickTileWhiteEndN - decals: - 621: 14,8 - 625: 18,8 - 626: 22,8 - 680: 15,6 - - node: - color: '#52B4E996' - id: BrickTileWhiteEndS - decals: - 614: 14,6 - 627: 18,6 - 629: 22,6 - - node: - color: '#52B4E996' - id: BrickTileWhiteEndW - decals: - 616: 13,7 - 641: 21,7 - - node: - cleanable: True - color: '#52B4E996' - id: BrickTileWhiteEndW - decals: - 1902: 17,7 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - decals: - 1966: -12,36 - 2058: -9,36 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerNe - decals: - 620: 14,7 - 644: 22,7 - 674: 13,5 - 675: 12,6 - - node: - cleanable: True - color: '#52B4E996' - id: BrickTileWhiteInnerNe - decals: - 1903: 18,7 - - node: - color: '#9FED5896' - id: BrickTileWhiteInnerNe - decals: - 751: 26,12 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNe - decals: - 505: -47,32 - 509: -40,33 - 2370: -39,41 - 2371: -44,44 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerNe - decals: - 366: -17,-33 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 392: -16,36 - 1967: -9,36 - 2059: -12,36 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerNw - decals: - 610: 11,15 - 617: 14,7 - 643: 22,7 - 651: 12,6 - 676: 15,5 - - node: - cleanable: True - color: '#52B4E996' - id: BrickTileWhiteInnerNw - decals: - 1904: 18,7 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerNw - decals: - 2372: -44,44 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSe - decals: - 401: -17,34 - 423: -15,38 - 1349: -12,39 - 2023: -9,38 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerSe - decals: - 600: 12,15 - 619: 14,7 - 645: 22,7 - 677: 12,8 - - node: - cleanable: True - color: '#52B4E996' - id: BrickTileWhiteInnerSe - decals: - 1905: 18,7 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerSe - decals: - 2384: 11,-7 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSe - decals: - 2368: -40,39 - 2369: -39,41 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 433: -6,38 - 1348: -9,39 - 2018: -12,38 - - node: - color: '#52B4E996' - id: BrickTileWhiteInnerSw - decals: - 618: 14,7 - 642: 22,7 - 770: 21,23 - - node: - cleanable: True - color: '#52B4E996' - id: BrickTileWhiteInnerSw - decals: - 1906: 18,7 - - node: - color: '#A4610696' - id: BrickTileWhiteInnerSw - decals: - 2383: 14,-7 - - node: - color: '#D381C996' - id: BrickTileWhiteInnerSw - decals: - 2367: -40,39 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerSw - decals: - 354: -20,-45 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineE - decals: - 404: -8,32 - 405: -8,33 - 406: -8,34 - 407: -8,35 - 426: -15,35 - 427: -15,37 - 428: -15,36 - 1995: -12,38 - 2012: -12,37 - 2027: -9,37 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 590: 12,10 - 591: 12,11 - 592: 12,12 - 593: 12,13 - 594: 12,14 - 607: 19,16 - 652: 23,10 - 653: 23,11 - 654: 23,12 - 655: 23,14 - 656: 23,15 - 657: 23,16 - 658: 23,17 - 659: 23,18 - 660: 23,19 - 672: 12,7 - 678: 15,4 - 679: 15,5 - 691: 8,12 - 692: 8,11 - 693: 8,10 - 694: 8,9 - 695: 8,8 - 696: 8,7 - 697: 8,6 - 698: 13,18 - 699: 13,19 - 700: 13,20 - 701: 13,21 - 702: 13,22 - 703: 13,23 - 704: 13,24 - 705: 13,25 - 706: 13,26 - 720: 19,18 - 721: 19,19 - 722: 19,20 - 723: 19,21 - - node: - cleanable: True - color: '#52B4E996' - id: BrickTileWhiteLineE - decals: - 2210: 23,13 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineE - decals: - 748: 28,11 - 752: 26,13 - 753: 26,14 - 754: 26,15 - 755: 26,16 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 470: -41,25 - 473: -41,29 - 474: -35,29 - 475: -35,28 - 476: -35,27 - 477: -35,26 - 497: -47,37 - 498: -47,36 - 499: -47,35 - 500: -47,34 - 501: -47,33 - 506: -40,35 - 507: -40,37 - 508: -39,32 - 511: -39,31 - 2070: -20,-74 - 2071: -20,-75 - 2072: -20,-76 - 2073: -20,-77 - 2074: -20,-78 - 2075: -20,-79 - 2076: -20,-80 - 2354: -39,40 - 2355: -39,42 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 303: -16,-46 - 304: -16,-45 - 305: -16,-43 - 306: -16,-44 - 307: -16,-42 - 308: -16,-41 - 309: -16,-40 - 310: -16,-39 - 311: -16,-38 - 312: -16,-37 - 313: -16,-36 - 314: -16,-35 - 352: -16,-47 - 367: -17,-32 - 368: -17,-31 - 369: -21,-30 - 370: -21,-29 - 371: -21,-28 - 372: -11,-37 - 373: -11,-38 - 374: -11,-39 - 375: -11,-40 - 376: -11,-41 - - node: - color: '#FF801DFF' - id: BrickTileWhiteLineE - decals: - 2273: 19,10 - 2274: 19,11 - 2275: 19,12 - 2276: 19,13 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 390: -18,36 - 391: -17,36 - 395: -14,39 - 396: -13,39 - 397: -7,39 - 398: -6,39 - 1350: -12,39 - 1351: -11,39 - 1352: -10,39 - 1964: -11,36 - 1965: -10,36 - - node: - cleanable: True - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 1269: -8,39 - 1270: -9,39 - - node: - color: '#49FFC5FF' - id: BrickTileWhiteLineN - decals: - 2606: -5.9915333,-39.38071 - 2607: -6.991725,-39.38071 - 2608: -7.983293,-39.38071 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineN - decals: - 650: 11,6 - 673: 14,5 - 729: 25,22 - 730: 26,22 - 731: 27,22 - 732: 28,22 - 733: 29,22 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineN - decals: - 750: 27,12 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 503: -46,32 - 504: -45,32 - 2361: -43,44 - 2362: -42,44 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 399: -18,33 - 402: -16,34 - 403: -4,33 - 412: -13,41 - 413: -14,41 - 414: -12,41 - 415: -11,41 - 416: -10,41 - 417: -9,41 - 418: -7,41 - 419: -7,38 - 420: -8,38 - 421: -13,38 - 422: -14,38 - 1346: -11,39 - 1347: -10,39 - 1963: -8,41 - - node: - cleanable: True - color: '#334E6DC8' - id: BrickTileWhiteLineS - decals: - 1260: -5,33 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 601: 13,15 - 602: 14,15 - 603: 16,15 - 604: 15,15 - 605: 18,15 - 724: 25,18 - 725: 26,18 - 726: 27,18 - 727: 28,18 - 728: 29,18 - 771: 20,23 - - node: - cleanable: True - color: '#52B4E996' - id: BrickTileWhiteLineS - decals: - 2211: 17,15 - - node: - color: '#A4610696' - id: BrickTileWhiteLineS - decals: - 2381: 12,-7 - 2382: 13,-7 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 2363: -41,39 - 2364: -42,39 - 2365: -43,39 - 2366: -44,39 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineW - decals: - 393: -16,37 - 394: -16,38 - 408: -13,32 - 409: -13,33 - 410: -13,34 - 411: -13,35 - 429: -6,34 - 430: -6,35 - 431: -6,36 - 432: -6,37 - 1999: -9,38 - 2002: -9,37 - 2026: -12,37 - - node: - color: '#52B4E996' - id: BrickTileWhiteLineW - decals: - 595: 10,10 - 596: 10,11 - 597: 10,12 - 598: 10,13 - 599: 10,14 - 609: 11,16 - 648: 12,8 - 649: 12,7 - 661: 21,19 - 662: 21,18 - 663: 21,17 - 664: 21,16 - 665: 21,15 - 666: 21,14 - 667: 21,13 - 668: 21,12 - 669: 21,11 - 670: 21,10 - 671: 20,20 - 682: 10,4 - 683: 10,5 - 684: 6,6 - 685: 6,7 - 686: 6,8 - 687: 6,9 - 688: 6,10 - 689: 6,11 - 690: 6,12 - 707: 12,26 - 708: 12,24 - 709: 12,25 - 710: 12,23 - 711: 12,22 - 712: 12,21 - 713: 12,20 - 714: 12,19 - 715: 12,18 - 716: 15,18 - 717: 15,19 - 718: 15,20 - 719: 15,21 - 768: 21,21 - 769: 21,22 - 773: 19,24 - 774: 19,25 - 775: 19,26 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 742: 25,11 - 743: 25,12 - 744: 25,13 - 745: 25,14 - 746: 25,15 - 747: 25,16 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 460: -25,34 - 461: -25,33 - 471: -43,25 - 472: -43,29 - 478: -39,25 - 479: -39,26 - 480: -39,27 - 481: -39,28 - 482: -39,29 - 492: -51,32 - 493: -51,33 - 494: -51,34 - 495: -51,35 - 496: -51,36 - 512: -43,31 - 513: -43,32 - 514: -43,33 - 515: -41,35 - 516: -41,37 - 2077: -23,-80 - 2078: -23,-79 - 2079: -23,-78 - 2080: -23,-77 - 2081: -23,-76 - 2082: -23,-75 - 2083: -23,-74 - 2356: -45,40 - 2357: -45,41 - 2358: -45,42 - 2359: -45,43 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 353: -20,-46 - 355: -23,-44 - 356: -23,-43 - 357: -24,-41 - 358: -24,-37 - 359: -23,-35 - 360: -23,-34 - 361: -23,-31 - 362: -23,-32 - 363: -23,-30 - 364: -23,-29 - 377: -14,-41 - 378: -14,-40 - 379: -14,-39 - 380: -14,-38 - 381: -14,-37 - - node: - color: '#FF801DFF' - id: BrickTileWhiteLineW - decals: - 2269: 14,13 - 2270: 14,12 - 2271: 14,11 - 2272: 14,10 - - node: - color: '#FFFFFFFF' - id: BushAOne - decals: - 901: 37,-13 - - node: - color: '#FFFFFFFF' - id: BushATwo - decals: - 905: 37,-10 - 920: -27,24 - 926: 35,-13 - - node: - color: '#FFFFFFFF' - id: BushCOne - decals: - 900: 37,-12 - - node: - color: '#FFFFFFFF' - id: BushCTwo - decals: - 899: 37,-9 - 924: -45,23 - 925: 35,-12 - 939: -13,-2 - - node: - color: '#FFFFFFFF' - id: BushDOne - decals: - 1321: -59.663837,-5.750451 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 907: 33,-23 - 911: 33,-19 - 912: -17,27 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 906: 34,-23 - - node: - color: '#FFFFFFFF' - id: Busha3 - decals: - 910: 34,-19 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 1318: -58.898212,-5.953576 - 1319: -61.554462,-6.266076 - 1320: -58.741962,-6.875451 - - node: - color: '#FFFFFFFF' - id: Bushb3 - decals: - 928: -50,6 - - node: - color: '#FFFFFFFF' - id: Bushc1 - decals: - 895: 13,-2 - 896: 10,2 - 904: 37,-11 - 919: -32,24 - 923: -45,22 - 929: -15,-12 - - node: - color: '#FFFFFFFF' - id: Bushc2 - decals: - 927: -50,7 - - node: - color: '#FFFFFFFF' - id: Bushc3 - decals: - 909: 35,-19 - 921: -28,24 - 922: -33,24 - 930: -14,-12 - - node: - color: '#FFFFFFFF' - id: Bushd1 - decals: - 940: -14,-2 - - node: - color: '#FFFFFFFF' - id: Bushd3 - decals: - 897: 15,2 - 898: 12,-2 - - node: - color: '#FFFFFFFF' - id: Bushe2 - decals: - 915: -17,32 - 918: -33,24 - - node: - color: '#FFFFFFFF' - id: Bushe4 - decals: - 876: -2,2 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 875: -2,3 - 938: -15,-2 - - node: - color: '#FFFFFFFF' - id: Bushf2 - decals: - 914: -18,32 - 937: -13,-2 - - node: - color: '#FFFFFFFF' - id: Bushg3 - decals: - 908: 32,-19 - - node: - color: '#FFFFFFFF' - id: Bushg4 - decals: - 913: -18,27 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushj1 - decals: - 2257: -22,4 - - node: - color: '#FFFFFFFF' - id: Bushk3 - decals: - 2066: -4.742067,39.22148 - 2067: -15.210269,39.22148 - - node: - color: '#FFFFFFFF' - id: Bushm3 - decals: - 917: -45,9 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 892: 2,-2 - 916: -45,10 - 931: -13,-12 - 932: -32,24 - 941: -15,-2 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Bushn1 - decals: - 2258: -20,3 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 2553: -47,-16 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution - decals: - 2686: -29,-38 - 2687: -29,-39 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 776: 15,23 - 777: 15,24 - 778: 15,25 - 779: 15,26 - 780: 16,26 - 781: 16,25 - 782: 16,24 - 783: 16,23 - 784: 17,23 - 785: 17,24 - 786: 17,25 - 787: 17,26 - 1913: 17,5 - 1914: 17,4 - 1915: 17,3 - 1916: 18,3 - 1917: 19,5 - 1918: 19,4 - 1919: 19,3 - 1920: 20,3 - 1921: 20,4 - 1922: 20,5 - 1923: 21,5 - 1924: 21,3 - 1925: 22,3 - 1926: 22,5 - 1927: 23,5 - 1928: 23,4 - 1929: 23,3 - - node: - cleanable: True - color: '#52B4E996' - id: CheckerNESW - decals: - 1957: 18,5 - 1958: 18,4 - 1959: 21,4 - 1960: 22,4 - - node: - color: '#9FED5896' - id: CheckerNESW - decals: - 2212: 19,-14 - 2213: 19,-13 - 2214: 19,-12 - 2215: 20,-12 - 2216: 21,-12 - 2217: 22,-12 - - node: - color: '#A4610696' - id: CheckerNESW - decals: - 2377: 10,-4 - 2378: 10,-5 - 2379: 10,-6 - 2380: 10,-7 - 2385: 9,-20 - 2386: 9,-21 - 2387: 9,-22 - 2388: 9,-23 - 2389: 9,-24 - 2390: 9,-25 - 2391: 9,-26 - 2392: 9,-27 - 2393: 9,-28 - 2402: 9,-18 - 2403: 9,-17 - 2404: 9,-16 - 2405: 9,-15 - 2406: 9,-14 - 2407: 9,-13 - 2421: 10,-11 - 2422: 10,-10 - 2423: 10,-9 - 2424: 14,-32 - 2425: 14,-30 - 2426: 14,-29 - 2427: 14,-28 - 2428: 14,-27 - 2429: 14,-26 - 2430: 14,-25 - 2440: 14,-33 - 2455: 4,-3 - 2456: 4,-4 - 2457: 4,-5 - 2567: 14,-34 - 2568: 14,-35 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 215: -24,-3 - 216: -23,-3 - 218: -22,-3 - 219: -21,-3 - 238: -41,-13 - 239: -41,-15 - 240: -41,-16 - 246: -41,-14 - 247: -41,-12 - - node: - color: '#EFB34196' - id: CheckerNESW - decals: - 2490: -12,-25 - 2491: -11,-25 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 199: -25,-9 - 200: -24,-9 - 201: -23,-9 - 202: -22,-9 - 203: -21,-9 - 205: -25,-8 - 206: -26,-6 - 207: -26,-5 - 209: -26,-4 - 210: -26,-3 - 231: -35,-15 - 232: -35,-14 - 234: -35,-13 - 235: -35,-12 - 245: -35,-16 - - node: - color: '#EFB34196' - id: Delivery - decals: - 315: -28,-39 - 316: -28,-43 - 317: -36,-43 - 2655: -37,-43 - 2656: -28,-44 - 2657: -32,-42 - 2658: -32,-36 - 2659: -35,-39 - 2680: -38,-31 - 2681: -39,-31 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 574: -56,40 - 575: -56,41 - 576: -55,41 - 577: -54,41 - 578: -54,40 - 579: -54,39 - 580: -56,39 - 581: -55,39 - 2304: 22,-30 - 2305: 21,-30 - 2306: 21,-31 - 2307: 22,-31 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Delivery - decals: - 2311: 13,-18 - 2312: 13,-17 - 2342: 22,-29 - 2343: 21,-29 - - node: - color: '#DE3A3A96' - id: DeliveryGreyscale - decals: - 241: -39,-16 - 248: -41,-7 - 249: -26,-16 - 250: -26,-15 - 251: -26,-14 - 252: -26,-13 - 253: -26,-12 - 254: -24,-14 - 255: -24,-15 - 256: -24,-16 - 257: -24,-17 - - node: - color: '#DF0000FF' - id: DeliveryGreyscale - decals: - 242: -41,-14 - 243: -41,-12 - 244: -35,-16 - - node: - color: '#EFB34196' - id: DeliveryGreyscale - decals: - 302: -21,-44 - - node: - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 318: -35,-45 - 319: -34,-45 - 320: -33,-45 - 321: -31,-45 - 322: -30,-45 - 323: -29,-45 - 324: -30,-33 - 325: -29,-33 - 326: -31,-33 - 327: -33,-33 - 328: -34,-33 - 329: -35,-33 - 518: -46,34 - 519: -45,34 - 2308: 17,-30 - 2309: 18,-30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 2313: 14,-18 - 2314: 14,-17 - 2315: 15,-17 - 2316: 15,-18 - 2337: 18,-29 - 2338: 17,-29 - 2346: 16,-30 - 2347: 16,-29 - - node: - cleanable: True - color: '#5D2C0098' - id: Dirt - decals: - 1806: 22,1 - - node: - cleanable: True - color: '#5D2C00D3' - id: Dirt - decals: - 1807: 40,1 - 1808: -25,-3 - 1809: -26,2 - 1810: -32,3 - 1814: -31,5 - 1841: 26,-3 - - node: - cleanable: True - color: '#5D5200FF' - id: Dirt - decals: - 1796: -2,-28 - 1797: -2,-25 - 1798: 4,-24 - 1799: 1,-23 - 1800: -4,-23 - 1801: -4,-22 - 1802: 0,-25 - 1804: 10,-30 - 1805: 24,-9 - - node: - cleanable: True - color: '#792C0079' - id: Dirt - decals: - 1883: 22,16 - - node: - cleanable: True - color: '#792C0082' - id: Dirt - decals: - 1888: 11,11 - 1889: 11,14 - 1890: 19,16 - 1891: 12,18 - 1892: 13,25 - 1893: 13,24 - 1894: 14,5 - 1895: 23,6 - 1896: 19,8 - 1897: 11,5 - 1898: 8,7 - 1899: 6,11 - 1900: 19,6 - - node: - cleanable: True - color: '#792C00B7' - id: Dirt - decals: - 1884: 21,17 - 1885: 16,15 - 1886: 12,15 - 1887: 10,13 - - node: - cleanable: True - color: '#792C00D1' - id: Dirt - decals: - 1842: 25,-4 - 1843: 25,-10 - 1844: 39,-1 - 1845: 30,0 - 1846: 31,0 - 1847: 13,4 - 1848: 14,4 - 1849: 0,-2 - 1850: 20,-29 - 1851: 37,-24 - 1852: -7,-36 - 1853: -8,-37 - 1854: -7,-35 - 1855: -7,-31 - 1863: -14,-19 - 1864: -14,-19 - 1865: -15,-18 - 1866: -17,-21 - 1867: -18,-26 - 1868: -17,-13 - 1869: -17,-4 - 1870: -21,11 - 1871: -32,15 - 1872: -41,15 - 1873: -48,12 - 1874: -46,6 - 1880: 28,13 - 1881: 25,15 - 1882: 26,15 - - node: - cleanable: True - color: '#835432FF' - id: Dirt - decals: - 2223: 26,-17 - 2224: 25,-16 - 2225: 29,-17 - - node: - cleanable: True - color: '#A0521263' - id: Dirt - decals: - 1907: 18,7 - 1908: 18,7 - 1909: 18,6 - 1910: 17,6 - 1911: 17,7 - 1930: -28,10 - 1931: -28,10 - 1932: -28,9 - 1933: -28,9 - 1934: -29,10 - 1935: -28,11 - 1936: -29,11 - 1937: -28,10 - 1938: -28,10 - 1945: -29,13 - 1946: -29,13 - 1947: -29,13 - 1948: -28,14 - 1949: -28,15 - 1950: -30,14 - 1951: -29,12 - 1952: -28,12 - 1953: -29,12 - 1954: -29,12 - 1955: -29,13 - 1956: -29,13 - 1968: 39,-4 - 1969: 38,-4 - 1970: 38,-4 - 1971: 39,-8 - 1972: 39,-8 - 1973: 38,-7 - 1974: 38,-7 - 1975: 39,0 - 1976: 40,-1 - 1977: 40,-1 - 1978: 34,-1 - 1979: 33,-1 - 1980: 35,-1 - 1981: 35,-1 - 1982: 25,1 - 1983: 25,-3 - 1984: 24,-2 - 1985: 24,-3 - 1986: 26,-6 - 1987: 26,-6 - 1988: 29,-16 - 1989: 38,-19 - 1990: 36,-22 - 1991: 31,-23 - 1992: 40,-21 - 1993: 38,-20 - 1994: 40,-13 - 1996: 39,-14 - 1997: 34,-6 - 1998: 35,-6 - 2000: 32,-4 - 2001: 31,-3 - 2003: 31,-3 - 2004: 31,-6 - 2005: 30,-7 - 2006: 29,-7 - 2007: 33,-9 - 2008: 30,-10 - 2009: 28,-10 - 2010: 29,-9 - 2011: 28,-13 - 2013: 30,-13 - 2014: 30,-13 - 2015: 30,-12 - 2016: 30,-12 - 2017: 32,0 - 2019: 28,6 - 2020: 28,6 - 2021: 27,6 - 2022: 27,6 - 2024: 27,3 - 2025: 27,3 - 2028: 12,-7 - 2029: 13,-7 - 2030: 13,-7 - 2031: 12,-7 - 2032: 10,-6 - 2033: 10,-6 - 2034: 14,-6 - 2035: 14,-6 - 2036: 14,-5 - 2037: 12,-6 - 2038: 15,-5 - 2039: 13,-9 - 2040: 12,-9 - 2041: 14,-9 - 2042: 14,-11 - 2043: 14,-11 - 2044: 13,-9 - 2045: 10,-10 - 2046: 10,-10 - 2047: 11,-10 - 2048: 7,-10 - 2049: 7,-10 - 2050: 13,-10 - 2051: 13,-10 - 2052: 7,-18 - 2053: 7,-18 - 2056: 29,-19 - 2057: 29,-19 - 2060: 26,-12 - 2061: 24,-13 - 2062: 24,-13 - 2063: 24,-13 - - node: - cleanable: True - color: '#FF0000B7' - id: Dirt - decals: - 1939: 19,4 - - node: - cleanable: True - color: '#FF0000FF' - id: Dirt - decals: - 2243: -40,-25 - 2244: -40,-24 - 2245: -40,-25 - 2246: -39,-25 - - node: - cleanable: True - color: '#FFFCFFFF' - id: Dirt - decals: - 2160: -15,-75 - 2161: -17,-77 - 2162: -10,-71 - 2163: -9,-78 - 2164: -18,-76 - 2165: -23,-77 - 2166: -12,-74 - 2167: -12,-79 - 2168: -23,-78 - 2169: -12,-81 - 2170: -25,-78 - 2171: -11,-76 - 2172: -16,-67 - 2173: -15,-76 - 2174: -27,-77 - 2175: -23,-75 - 2176: -12,-81 - 2193: -18,-47 - 2194: -11,-37 - 2195: -21,-35 - 2196: -15,-38 - 2197: -17,-35 - 2198: -8,-33 - 2199: -19,-29 - 2200: -23,-28 - 2201: -7,-32 - 2202: -4,-28 - - node: - cleanable: True - color: '#FFFFFFF7' - id: Dirt - decals: - 1312: -33,2 - - node: - color: '#FFFFFFFF' - id: Dirt - decals: - 2609: -8,-40 - 2610: -7,-39 - 2611: -6,-38 - 2612: -2,-40 - 2613: -2,-42 - 2614: 1,-40 - 2615: -1,-45 - 2616: -4,-46 - 2617: -2,-48 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 502: 34,-14 - 1012: 29,-24 - 1013: 39,-18 - 1014: 39,-11 - 1015: 39,-3 - 1016: 40,7 - 1017: 39,12 - 1018: 35,16 - 1019: 33,20 - 1020: 33,23 - 1021: 26,29 - 1022: 22,29 - 1023: 13,28 - 1024: 13,30 - 1025: 19,26 - 1026: 23,24 - 1027: 13,19 - 1028: 23,16 - 1029: 13,11 - 1030: 13,6 - 1031: 11,12 - 1032: 18,11 - 1033: 20,6 - 1034: 7,7 - 1035: 6,3 - 1036: 2,7 - 1037: 4,8 - 1038: 1,6 - 1039: -3,6 - 1040: -4,2 - 1041: -25,-1 - 1042: -43,1 - 1043: -20,0 - 1044: -26,1 - 1045: -37,6 - 1046: -49,5 - 1047: -46,11 - 1048: -41,23 - 1049: -43,29 - 1050: -40,33 - 1051: -31,41 - 1052: -40,46 - 1053: -46,46 - 1054: -50,45 - 1055: -52,45 - 1056: -52,50 - 1258: -60,-1 - 1259: -59,-1 - 1285: -43,0 - 1286: -41,-2 - 1287: -44,-6 - 1288: -42,-10 - 1289: -37,-9 - 1290: -39,-13 - 1291: -41,-16 - 1292: -43,-16 - 1293: -44,-15 - 1294: -43,-15 - 1429: 31,-9 - 1430: 31,-1 - 1432: 17,-2 - 1433: 8,-7 - 1440: -7,-4 - 1447: -8,-10 - 1454: -25,-6 - 1460: -10,3 - 1461: -9,17 - 1462: -10,21 - 1463: -6,27 - 1481: -9,10 - 1662: -28,25 - 1663: -28,31 - 1664: -30,31 - 1665: -32,31 - 1705: -18,-1 - 1706: -8,-8 - 1707: -10,-14 - 1708: 23,-13 - 1709: 33,-20 - 1710: 40,-12 - 1737: -13,43 - 1760: 0,32 - 1761: 3,32 - 1769: -29,13 - 1770: -31,10 - 1771: -37,10 - 1772: -17,10 - 1773: -12,10 - 1774: -20,-25 - 1775: -23,-23 - 1782: -22,-22 - 1785: -10,-23 - 1786: 2,-23 - 1825: -15,13 - 1826: -13,15 - 1827: -13,13 - 1828: -15,10 - 1829: -15,15 - 1830: 35,-17 - 1831: 35,-15 - 1832: 35,-16 - 1833: 35,-16 - 1834: 34,-17 - 1835: 33,-15 - 1836: 34,-15 - 1901: 13,1 - 2500: 12,-20 - 2501: 12,-21 - 2505: 22,-26 - 2506: 21,-25 - 2507: 22,-25 - 2508: 20,-25 - 2509: 18,-25 - 2510: 18,-26 - 2511: 18,-27 - 2521: 17,-23 - 2522: 16,-23 - 2523: 18,-20 - 2545: -48,-17 - 2546: -46,-19 - 2547: -48,-19 - 2578: 9,-44 - 2579: 9,-37 - 2581: 12,-35 - - node: - cleanable: True - color: '#00FF00FF' - id: DirtHeavy - decals: - 992: -55,-8 - 993: -52,-4 - - node: - cleanable: True - color: '#5D2C00D3' - id: DirtHeavy - decals: - 1815: -29,7 - 1816: -36,7 - 1817: -35,5 - - node: - cleanable: True - color: '#792C00D1' - id: DirtHeavy - decals: - 1856: -8,-35 - 1857: -6,-32 - 1875: 26,14 - 1876: 28,14 - 1877: 27,13 - 1878: 27,15 - 1879: 27,16 - - node: - cleanable: True - color: '#8354329E' - id: DirtHeavy - decals: - 2231: 24,-15 - - node: - cleanable: True - color: '#835432FF' - id: DirtHeavy - decals: - 2230: 25,-12 - - node: - cleanable: True - color: '#A0521263' - id: DirtHeavy - decals: - 1940: -28,9 - 1942: -28,9 - 1943: -28,9 - 1944: -29,11 - 2064: 25,-15 - - node: - cleanable: True - color: '#FF0000FF' - id: DirtHeavy - decals: - 2247: -39,-24 - 2248: -38,-25 - 2249: -39,-23 - 2250: -39,-23 - 2251: -38,-25 - 2252: -39,-24 - - node: - cleanable: True - color: '#FFFCFFFF' - id: DirtHeavy - decals: - 2177: -15,-79 - 2178: -17,-80 - 2179: -8,-75 - 2180: -19,-79 - 2181: -20,-78 - 2182: -22,-79 - 2183: -24,-75 - 2184: -27,-78 - 2185: -16,-74 - 2186: -10,-79 - 2187: -21,-77 - 2188: -28,-75 - 2189: -29,-77 - 2190: -29,-78 - 2191: -18,-44 - 2192: -13,-40 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 67: -29,10 - 483: 28,-10 - 484: 35,-16 - 485: 33,-17 - 813: 34,-13 - 814: 32,-12 - 838: 28,-13 - 839: 31,-13 - 840: 31,-10 - 841: 29,-11 - 842: 29,-12 - 843: 34,-10 - 844: 35,-9 - 845: 33,-9 - 846: 32,-9 - 847: 32,-10 - 848: 33,-10 - 877: 29,-3 - 878: 28,-4 - 879: 30,-5 - 880: 31,-6 - 881: 32,-6 - 883: 32,-4 - 884: 32,-3 - 885: 32,-2 - 887: 34,-3 - 890: 33,-16 - 891: 32,-16 - 1009: 20,1 - 1010: 23,-9 - 1057: -47,43 - 1058: -48,43 - 1059: -41,35 - 1060: -38,23 - 1061: -42,19 - 1062: -38,15 - 1063: -42,8 - 1064: -37,6 - 1065: -36,0 - 1066: -38,-6 - 1067: -40,-10 - 1068: -38,-16 - 1069: -29,-22 - 1070: -25,-20 - 1071: -23,-15 - 1072: -27,-18 - 1073: -28,-16 - 1074: -13,-18 - 1075: -3,-19 - 1076: -7,-34 - 1077: -16,-44 - 1078: -19,-48 - 1079: -22,-44 - 1080: -33,-46 - 1081: -36,-40 - 1082: -32,-28 - 1221: -49,50 - 1222: -53,45 - 1223: -43,31 - 1224: -41,33 - 1225: -43,24 - 1226: -40,25 - 1227: -50,20 - 1228: -42,19 - 1229: -49,14 - 1230: -51,5 - 1231: -51,6 - 1232: -47,5 - 1233: -44,6 - 1237: -54,-18 - 1238: -53,-18 - 1239: -53,-17 - 1240: -50,-18 - 1241: -50,-18 - 1242: -59,-13 - 1243: -59,-13 - 1244: -60,-13 - 1245: -60,-12 - 1246: -59,-12 - 1261: -18,34 - 1262: -20,34 - 1370: -50,-5 - 1371: -48,-3 - 1372: -47,-5 - 1373: -48,-5 - 1374: -55,-1 - 1375: -57,1 - 1376: -57,0 - 1377: -55,1 - 1378: -57,-2 - 1379: -57,-1 - 1380: -56,-3 - 1381: -56,-5 - 1382: -57,-5 - 1383: -55,-7 - 1384: -57,-7 - 1390: 38,-18 - 1391: 37,-23 - 1392: 30,-23 - 1401: 33,3 - 1402: 26,1 - 1403: 15,-1 - 1406: 11,-4 - 1407: 21,10 - 1408: 11,16 - 1412: 21,19 - 1413: 27,19 - 1416: 21,21 - 1417: 23,22 - 1423: 16,23 - 1424: 12,22 - 1425: 12,21 - 1431: 18,-2 - 1434: 5,-8 - 1435: 5,-11 - 1441: -9,-4 - 1444: -4,-7 - 1445: -9,-9 - 1450: -17,-12 - 1451: -19,-12 - 1452: -19,-3 - 1455: -24,-6 - 1456: -24,-4 - 1459: -11,7 - 1464: -4,27 - 1465: -10,21 - 1466: -11,18 - 1467: -10,15 - 1468: -7,18 - 1470: -8,21 - 1471: -1,19 - 1472: -3,20 - 1480: -9,9 - 1482: -9,10 - 1483: -18,4 - 1488: -22,6 - 1489: -19,6 - 1490: -22,-8 - 1491: 12,-16 - 1527: 21,14 - 1578: -58,1 - 1579: -58,1 - 1580: -60,1 - 1581: -60,1 - 1582: -60,1 - 1583: -60,1 - 1584: -58,-2 - 1585: -58,-2 - 1586: -58,-2 - 1587: -58,-2 - 1588: -58,-2 - 1589: -58,-2 - 1590: -58,-2 - 1591: -58,-3 - 1592: -58,-3 - 1593: -58,-3 - 1594: -57,-4 - 1595: -56,-2 - 1596: -57,-1 - 1597: -57,-8 - 1598: -56,-9 - 1599: -51,10 - 1600: -50,12 - 1601: -50,15 - 1602: -50,16 - 1603: -51,19 - 1604: -51,18 - 1605: -49,20 - 1606: -48,19 - 1607: -47,17 - 1608: -45,17 - 1666: -28,31 - 1667: -38,25 - 1668: -25,24 - 1669: -25,29 - 1670: -23,31 - 1671: -23,35 - 1672: -23,34 - 1673: -15,25 - 1674: -18,25 - 1675: -21,26 - 1676: -15,26 - 1697: -13,5 - 1698: -11,6 - 1712: 40,-20 - 1713: 39,-20 - 1714: 40,-18 - 1738: -8,38 - 1739: -5,36 - 1740: -5,35 - 1741: -9,36 - 1742: -8,35 - 1743: -8,33 - 1744: -12,33 - 1745: -17,34 - 1746: -15,36 - 1747: -15,38 - 1748: -14,38 - 1749: -12,39 - 1750: -13,35 - 1751: -12,36 - 1752: -8,39 - 1753: -6,29 - 1754: -4,31 - 1755: -4,33 - 1756: -4,34 - 1757: -5,33 - 1758: -6,33 - 1759: -1,34 - 1762: 2,32 - 1763: -2,29 - 1764: 0,32 - 1765: -33,35 - 1766: -33,34 - 1767: -33,36 - 1768: -33,38 - 1776: -20,-24 - 1777: -19,-24 - 1778: -19,-21 - 1779: -18,-24 - 1780: -17,-20 - 1781: -22,-26 - 1783: -7,-22 - 1784: -8,-21 - 1811: -32,0 - 2492: -14,-25 - 2495: 10,-27 - 2499: 9,-21 - 2502: 20,-32 - 2503: 19,-33 - 2512: 19,-26 - 2575: 11,-41 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavyMonotile - decals: - 2493: -14,-22 - 2504: 19,-27 - 2513: 20,-26 - 2543: -47,-15 - 2576: 11,-44 - 2580: 11,-37 - - node: - cleanable: True - color: '#5D2C00D3' - id: DirtLight - decals: - 1812: -32,-1 - 1813: -33,5 - - node: - cleanable: True - color: '#792C00D1' - id: DirtLight - decals: - 1858: -8,-36 - 1859: -8,-23 - 1860: -8,-19 - 1861: -12,-18 - 1862: -13,-17 - - node: - cleanable: True - color: '#835432FF' - id: DirtLight - decals: - 2226: 28,-17 - 2228: 27,-17 - - node: - cleanable: True - color: '#A0521263' - id: DirtLight - decals: - 1912: 19,7 - 2065: 25,-15 - - node: - cleanable: True - color: '#FF0000B7' - id: DirtLight - decals: - 1941: 20,6 - - node: - cleanable: True - color: '#FF0000FF' - id: DirtLight - decals: - 1296: -50,-15 - - node: - cleanable: True - color: '#FFFCFFFF' - id: DirtLight - decals: - 2138: -12,-79 - 2139: -11,-78 - 2140: -8,-74 - 2141: -7,-78 - 2142: -8,-79 - 2143: -13,-76 - 2144: -18,-77 - 2145: -14,-73 - 2146: -17,-72 - 2147: -20,-78 - 2148: -22,-78 - 2149: -26,-75 - 2150: -22,-82 - 2151: -16,-82 - 2152: -11,-86 - 2153: -15,-88 - 2154: -20,-79 - 2155: -28,-80 - 2156: -17,-68 - 2157: -17,-65 - 2158: -17,-69 - 2159: -16,-73 - 2203: -17,-46 - 2204: -16,-42 - 2205: -12,-46 - 2206: -20,-46 - 2207: -17,-37 - 2208: -13,-40 - 2209: -21,-36 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 68: -28,11 - 69: -28,12 - 71: -29,11 - 486: 32,-16 - 487: 34,-17 - 490: 33,-16 - 491: 26,-13 - 816: 33,-12 - 817: 32,-13 - 818: 29,-9 - 819: 29,-11 - 820: 29,-12 - 821: 31,-12 - 822: 29,-12 - 823: 30,-11 - 824: 31,-10 - 825: 30,-9 - 826: 30,-9 - 827: 30,-10 - 828: 31,-10 - 829: 31,-9 - 830: 30,-9 - 831: 30,-10 - 832: 29,-9 - 849: 35,-9 - 850: 34,-9 - 851: 31,-9 - 852: 30,-9 - 853: 35,-7 - 854: 32,-7 - 855: 31,-5 - 856: 32,-4 - 857: 29,-4 - 858: 29,-6 - 859: 29,-7 - 860: 33,-4 - 861: 34,-4 - 862: 30,-4 - 863: 29,-5 - 1131: 41,8 - 1132: 39,9 - 1133: 39,13 - 1134: 39,13 - 1135: 36,17 - 1136: 34,19 - 1137: 32,21 - 1138: 34,24 - 1139: 30,22 - 1140: 32,23 - 1141: 44,13 - 1142: 44,12 - 1143: 44,11 - 1144: 54,11 - 1145: 50,6 - 1146: 52,6 - 1147: 55,6 - 1148: 56,8 - 1149: 59,11 - 1150: 55,16 - 1151: 54,14 - 1152: 54,16 - 1153: 45,13 - 1154: 41,13 - 1155: 42,13 - 1156: 36,9 - 1157: 42,16 - 1158: 29,10 - 1159: 36,8 - 1160: 21,6 - 1161: 29,6 - 1162: 14,0 - 1163: 17,-4 - 1164: 22,-2 - 1165: 9,-6 - 1166: 12,-10 - 1167: 16,-8 - 1168: 7,-12 - 1169: 1,-10 - 1170: 6,-20 - 1171: -1,-15 - 1172: -3,-21 - 1173: 11,-19 - 1174: 7,-23 - 1175: 1,-23 - 1176: -1,-30 - 1177: 7,-31 - 1178: -2,-32 - 1179: 0,-42 - 1180: -1,-36 - 1181: -15,-41 - 1182: -18,-36 - 1183: -8,-43 - 1184: -25,-39 - 1185: -18,-44 - 1186: -18,-35 - 1187: -15,-38 - 1188: -25,-31 - 1189: -12,-29 - 1190: -24,-28 - 1191: -35,-22 - 1192: -20,-20 - 1193: -26,-27 - 1194: -28,-20 - 1195: -36,-18 - 1196: -33,-8 - 1197: -29,-16 - 1198: -45,-10 - 1199: -43,-1 - 1200: -36,-8 - 1201: -42,-1 - 1202: -45,2 - 1203: -54,2 - 1204: -42,7 - 1205: -45,21 - 1206: -46,27 - 1207: -38,33 - 1208: -50,36 - 1209: -38,46 - 1210: -36,45 - 1211: -36,44 - 1212: -42,50 - 1213: -44,51 - 1214: -40,57 - 1215: -39,57 - 1216: -46,57 - 1217: -41,60 - 1218: -47,61 - 1219: -44,65 - 1220: -39,65 - 1247: -59,-7 - 1248: -61,-8 - 1249: -58,-3 - 1250: -59,-3 - 1251: -59,-1 - 1252: -59,0 - 1253: -58,-1 - 1254: -59,0 - 1255: -60,0 - 1256: -60,1 - 1257: -59,1 - 1263: -15,35 - 1264: -15,38 - 1265: -4,38 - 1266: -5,38 - 1397: 40,-4 - 1398: 39,1 - 1399: 33,1 - 1400: 34,3 - 1404: 14,-4 - 1405: 11,-5 - 1409: 10,15 - 1410: 23,10 - 1415: 22,22 - 1421: 23,25 - 1422: 17,25 - 1443: -6,-6 - 1446: -7,-10 - 1453: -24,1 - 1457: -25,-5 - 1469: -12,17 - 1477: -7,10 - 1478: -9,9 - 1479: -8,9 - 1484: -22,5 - 1485: -18,6 - 1486: -18,5 - 1487: -21,6 - 1492: 9,-16 - 1493: 9,-14 - 1494: 21,-13 - 1495: 20,-14 - 1496: 28,-19 - 1497: 38,-24 - 1498: 40,-19 - 1499: 37,-16 - 1500: 40,-11 - 1501: 37,-4 - 1502: 37,0 - 1503: 33,1 - 1504: 32,12 - 1505: 31,13 - 1506: 30,13 - 1526: 27,11 - 1528: 7,-11 - 1529: 8,-12 - 1530: 8,-13 - 1531: 8,-11 - 1532: 2,-6 - 1533: 4,-6 - 1534: 1,-7 - 1535: 3,-6 - 1536: 1,-2 - 1537: 1,-1 - 1538: -1,3 - 1539: -4,1 - 1540: -9,0 - 1541: -12,0 - 1542: -16,0 - 1543: -17,-2 - 1544: -18,-3 - 1545: -18,-6 - 1546: -18,-10 - 1547: -18,-12 - 1548: -17,-14 - 1549: -22,-13 - 1550: -22,-13 - 1551: -22,-15 - 1552: -30,-11 - 1553: -32,-9 - 1554: -34,-9 - 1555: -36,-10 - 1556: -37,-10 - 1557: -41,-10 - 1558: -43,-10 - 1559: -45,-10 - 1560: -38,-12 - 1561: -38,-12 - 1562: -38,-14 - 1563: -38,-14 - 1564: -41,-15 - 1565: -45,-11 - 1566: -49,-9 - 1567: -50,-10 - 1568: -51,-15 - 1569: -53,-14 - 1570: -50,-15 - 1571: -53,-13 - 1572: -56,-12 - 1573: -57,-10 - 1574: -55,-9 - 1575: -55,-8 - 1576: -56,-8 - 1577: -55,-9 - 1609: -51,15 - 1610: -51,14 - 1611: -49,13 - 1612: -48,13 - 1613: -47,13 - 1614: -47,16 - 1615: -47,19 - 1616: -48,21 - 1617: -47,23 - 1618: -50,23 - 1619: -50,22 - 1620: -42,13 - 1621: -43,12 - 1622: -43,10 - 1623: -42,11 - 1624: -42,14 - 1625: -42,18 - 1626: -43,19 - 1627: -43,21 - 1628: -43,22 - 1629: -42,22 - 1630: -41,19 - 1631: -41,17 - 1632: -41,16 - 1633: -41,14 - 1634: -41,13 - 1635: -40,27 - 1636: -39,26 - 1637: -39,29 - 1638: -35,27 - 1639: -39,26 - 1640: -40,26 - 1641: -41,33 - 1642: -45,33 - 1643: -48,33 - 1644: -49,34 - 1645: -51,34 - 1646: -51,33 - 1647: -50,39 - 1648: -49,40 - 1649: -48,40 - 1650: -48,40 - 1651: -36,37 - 1652: -37,37 - 1653: -37,37 - 1654: -37,36 - 1655: -37,36 - 1656: -36,36 - 1657: -37,34 - 1658: -37,32 - 1659: -32,25 - 1660: -33,25 - 1661: -33,25 - 1677: -14,27 - 1678: -20,25 - 1679: -14,26 - 1680: -23,25 - 1681: -24,22 - 1682: -23,31 - 1683: -25,31 - 1684: -25,29 - 1686: -23,36 - 1687: -24,33 - 1688: -24,22 - 1689: -24,16 - 1690: -24,15 - 1691: -24,14 - 1692: -26,11 - 1693: -26,11 - 1694: -26,8 - 1699: -10,5 - 1700: -16,4 - 1701: -14,3 - 1702: -14,6 - 1703: -14,6 - 1704: -15,-1 - 1715: 30,-20 - 1716: 28,-20 - 1717: 28,-19 - 1718: 25,-8 - 1719: 25,-8 - 1720: 25,-6 - 1721: 24,-8 - 1722: 24,-6 - 1723: 24,-3 - 1724: 24,-3 - 1725: 26,-6 - 1726: 22,7 - 1727: 14,7 - 1728: 13,8 - 1729: 11,8 - 1730: 12,10 - 1731: 12,10 - 1732: 10,10 - 1733: 10,12 - 1734: 8,11 - 1735: 7,9 - 1736: 6,7 - 1787: -3,-28 - 1788: -5,-28 - 1789: -5,-23 - 1790: -5,-27 - 1791: -3,-29 - 1792: -2,-28 - 1793: 0,-24 - 1794: -1,-23 - 1795: 1,-24 - 2496: 12,-23 - 2497: 9,-20 - 2514: 20,-28 - 2515: 17,-26 - 2516: 16,-31 - 2517: 12,-14 - 2518: 9,-14 - 2519: 4,-14 - 2520: 14,-22 - 2544: -46,-16 - 2577: 11,-43 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: DirtLight - decals: - 72: -29,12 - - node: - cleanable: True - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: DirtLight - decals: - 1962: -17,26 - - node: - cleanable: True - color: '#5D2C00D3' - id: DirtMedium - decals: - 1818: -35,7 - 1819: -38,5 - 1820: -42,5 - 1821: -41,10 - 1822: -44,13 - 1823: -41,17 - 1824: -51,11 - - node: - cleanable: True - color: '#8354329E' - id: DirtMedium - decals: - 2232: 25,-15 - - node: - cleanable: True - color: '#835432FF' - id: DirtMedium - decals: - 2227: 27,-16 - 2229: 28,-17 - - node: - cleanable: True - color: '#FF0000FF' - id: DirtMedium - decals: - 1295: -57,-10 - - node: - cleanable: True - color: '#FFFFFFF7' - id: DirtMedium - decals: - 1313: -33,0 - 1314: -34,0 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 70: -29,9 - 488: 33,-15 - 489: 34,-16 - 530: 34,-16 - 815: 34,-12 - 833: 31,-11 - 834: 31,-10 - 835: 29,-11 - 836: 28,-10 - 837: 28,-12 - 864: 33,-4 - 865: 33,-4 - 866: 34,-5 - 867: 31,-7 - 868: 30,-7 - 869: 28,-7 - 870: 29,-5 - 871: 30,-3 - 872: 29,-5 - 873: 35,-6 - 874: 36,-6 - 1011: 21,-16 - 1083: -18,-19 - 1084: -15,-13 - 1085: -18,-9 - 1086: -17,-3 - 1087: -19,0 - 1088: -5,5 - 1089: -1,25 - 1090: 1,26 - 1091: 2,26 - 1092: 5,29 - 1093: 6,29 - 1094: 9,30 - 1095: 14,30 - 1096: 18,28 - 1097: 20,28 - 1098: 23,28 - 1099: 26,28 - 1100: 29,28 - 1101: 30,27 - 1102: 31,25 - 1103: 31,24 - 1104: 32,22 - 1105: 34,20 - 1106: 33,18 - 1107: 34,18 - 1108: 36,17 - 1109: 37,16 - 1110: 38,15 - 1111: 40,15 - 1112: 40,14 - 1113: 40,13 - 1114: 41,10 - 1115: 40,9 - 1116: 42,7 - 1117: 41,7 - 1118: 41,7 - 1119: 41,6 - 1120: 40,6 - 1121: 40,6 - 1122: 41,6 - 1123: 41,4 - 1124: 41,4 - 1125: 39,5 - 1126: 39,6 - 1127: 39,7 - 1128: 39,7 - 1129: 39,9 - 1130: 39,8 - 1234: -56,-17 - 1235: -57,-17 - 1236: -57,-18 - 1267: -13,38 - 1268: -13,39 - 1271: -25,10 - 1272: -26,6 - 1273: -25,1 - 1274: -16,2 - 1275: -8,6 - 1276: -11,10 - 1277: -14,10 - 1278: -19,11 - 1279: -19,10 - 1280: -13,15 - 1281: -15,14 - 1282: -14,15 - 1283: -14,14 - 1284: -13,14 - 1367: -54,-5 - 1368: -54,-3 - 1369: -50,-3 - 1385: -55,-10 - 1386: -57,-5 - 1393: 38,-22 - 1394: 39,-17 - 1395: 38,-11 - 1396: 40,-9 - 1411: 23,19 - 1414: 25,19 - 1418: 22,21 - 1419: 20,24 - 1420: 20,26 - 1426: 13,21 - 1427: 10,21 - 1428: 12,14 - 1436: 6,-8 - 1437: 6,-6 - 1438: 6,-7 - 1439: -2,-1 - 1442: -6,-4 - 1458: -22,-5 - 1473: -10,10 - 1474: -8,12 - 1475: -7,10 - 1476: -7,10 - 1507: 37,12 - 1508: 30,12 - 1509: 31,12 - 1510: 30,12 - 1511: 26,11 - 1512: 26,14 - 1513: 26,16 - 1514: 22,15 - 1515: 22,18 - 1516: 22,12 - 1517: 17,16 - 1518: 13,16 - 1519: 10,12 - 1520: 8,9 - 1521: 13,19 - 1522: 12,22 - 1523: 13,25 - 1524: 9,25 - 1525: 10,25 - 1711: 40,-10 - 1837: 34,-15 - 1838: 33,-17 - 1839: 25,-5 - 1840: 26,-4 - 2494: -12,-23 - 2498: 12,-28 - 2618: -5,-48 - 2619: -4,-47 - 2620: 1,-46 - 2621: -1,-46 - 2622: -3,-48 - 2623: -3,-40 - 2624: 1,-43 - 2625: -3,-39 - 2626: -6,-40 - 2627: -7,-40 - 2628: -8,-40 - 2629: -6,-38 - 2630: -3,-39 - 2631: 1,-43 - 2632: 1,-39 - 2633: 0,-38 - 2634: -3,-42 - 2635: 2,-44 - 2636: -1,-47 - 2637: -3,-48 - 2638: 0,-50 - 2639: -3,-51 - 2640: -3,-51 - 2641: -4,-50 - 2642: -6,-50 - 2643: -8,-49 - 2644: -9,-48 - 2645: -8,-49 - 2646: -8,-51 - 2647: -8,-52 - 2648: -8,-52 - 2649: 0,-52 - 2650: 1,-51 - - node: - color: '#FFFFFFFF' - id: FlowersBROne - decals: - 933: -28,24 - 934: -17,32 - 1316: -4,39 - - node: - cleanable: True - color: '#FFFFFFFF' - id: FlowersBROne - decals: - 2259: -20,4 - - node: - color: '#FFFFFFFF' - id: FlowersBRTwo - decals: - 886: -2,-3 - 1315: -16,39 - - node: - color: '#FFFFFFFF' - id: Flowersbr1 - decals: - 942: 15,2 - 943: 37,-11 - 944: 33,-19 - - node: - color: '#FFFFFFFF' - id: Flowerspv1 - decals: - 949: 34,-19 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 888: 2,2 - 936: -18,27 - 948: 34,-19 - 2069: -15.033748,27.036722 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 889: 2,3 - 950: 34,-19 - 951: 37,-13 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 945: 34,-23 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 882: -2,-2 - 2068: -16.064997,26.932484 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 935: -17,27 - 946: 34,-23 - 947: 33,-23 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 2260: -19,4 - - node: - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 611: 11,8 - 612: 10,8 - 613: 10,7 - 630: 23,6 - 631: 19,8 - 632: 20,8 - 633: 21,8 - 634: 23,8 - 635: 17,6 - 636: 17,8 - 637: 20,6 - 638: 19,6 - 639: 21,6 - 640: 20,7 - 647: 11,7 - 756: 24,24 - 757: 25,24 - 758: 25,25 - 759: 24,25 - 760: 24,26 - 761: 25,26 - 2261: 26,24 - 2262: 26,26 - 2263: 26,25 - - node: - cleanable: True - color: '#52B4E996' - id: FullTileOverlayGreyscale - decals: - 1297: -31,-1 - 1298: -34,-1 - 1299: -33,-1 - 1300: -31,0 - 1301: -34,0 - 1302: -33,0 - 1303: -34,1 - 1304: -33,1 - 1305: -31,1 - 1306: -31,2 - 1307: -33,2 - 1308: -34,2 - 1309: -34,3 - 1310: -33,3 - 1311: -31,3 - - node: - color: '#9FED5896' - id: FullTileOverlayGreyscale - decals: - 734: 27,16 - 735: 27,15 - 736: 28,15 - 737: 28,16 - 738: 27,13 - 739: 28,13 - 740: 28,14 - 741: 27,14 - - node: - color: '#D381C996' - id: FullTileOverlayGreyscale - decals: - 989: -40,28 - 990: -40,27 - 991: -40,26 - - node: - color: '#EFB34196' - id: FullTileOverlayGreyscale - decals: - 2098: -26,-80 - 2099: -25,-80 - 2100: -25,-74 - 2101: -26,-74 - 2102: -31,-77 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 1336: -62.547764,-5.606035 - 1389: -50,5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassa4 - decals: - 2253: -19,3 - 2254: -21,4 - 2255: -22,3 - - node: - color: '#FFFFFFFF' - id: Grassb4 - decals: - 1328: -61.648212,-5.625451 - 1329: -60.616962,-5.625451 - - node: - color: '#FFFFFFFF' - id: Grassd1 - decals: - 1322: -61.632587,-7.500451 - 1323: -59.273212,-9.375451 - 1327: -60.866962,-6.812951 - - node: - color: '#FFFFFFFF' - id: Grassd2 - decals: - 1345: -62.77488,-9.999852 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Grassd2 - decals: - 2256: -21,3 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 1330: -60.788837,-9.828576 - 1331: -61.304462,-10.078576 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 1324: -61.663837,-9.953576 - 1325: -59.320087,-7.359826 - 1326: -59.523212,-6.828576 - 1337: -63.25089,-6.387285 - 1338: -63.266514,-5.68416 - 1339: -62.735264,-6.262285 - 1340: -63.28214,-7.387285 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 1332: -58.820087,-10.078576 - 1333: -58.773212,-9.578576 - 1334: -58.429462,-9.406701 - 1335: -58.570087,-8.687951 - - node: - color: '#FFFFFFFF' - id: GrayConcreteTrimLineN - decals: - 2348: -47,-17 - 2349: -48,-17 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 437: -7,27 - 438: -5,27 - 439: -6,27 - 440: -4,27 - 441: -3,27 - 442: -6,31 - 443: -5,31 - 1685: -4,31 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale - decals: - 2302: 12,2 - 2303: 13,2 - 2461: 17,1 - 2462: 19,1 - 2463: 21,1 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale - decals: - 2277: -23,1 - 2278: -13,1 - 2284: -11,1 - 2285: -9,1 - 2286: -7,1 - 2296: -19,1 - 2297: -17,1 - 2298: -15,1 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 2415: 13,-13 - 2437: 15,-25 - 2438: 16,-25 - 2439: 17,-25 - 2451: 5,-3 - 2452: 6,-3 - 2453: 7,-3 - 2454: 8,-3 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 2458: 27,2 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale - decals: - 2476: -14,-24 - 2477: -13,-24 - 2478: -12,-24 - 2479: -11,-24 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 434: -6,29 - 435: -5,29 - 436: -4,29 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 2375: 14,-2 - 2376: 11,-2 - 2408: 6,-14 - 2409: 4,-14 - 2410: 3,-14 - 2412: 7,-14 - 2420: 13,-11 - 2431: 15,-33 - 2432: 16,-33 - 2433: 17,-33 - 2434: 19,-33 - 2435: 20,-33 - 2436: 21,-33 - 2441: 7,-8 - 2442: 6,-8 - 2443: 5,-8 - 2444: 4,-8 - 2445: 3,-8 - 2446: 2,-8 - 2450: 8,-8 - 2586: 5,-1 - 2587: 7,-1 - 2588: 9,-1 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 184: -20,-1 - 189: -24,-1 - 190: -23,-1 - 191: -25,-1 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 - decals: - 283: -3,-29 - 284: -4,-29 - 285: -2,-29 - 286: 0,-29 - 287: -1,-29 - 288: 1,-29 - 289: 3,-29 - 290: 4,-29 - 291: 5,-29 - 1803: 2,-29 - 2465: -15,-20 - 2466: -14,-20 - 2467: -13,-20 - 2468: -12,-20 - 2480: -14,-23 - 2481: -13,-23 - 2482: -12,-23 - 2483: -11,-23 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 447: -21,35 - 1695: -21,33 - 1696: -21,34 - 2582: 23,-5 - 2583: 23,-4 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 - decals: - 2218: 24,-16 - 2219: 24,-15 - 2220: 24,-14 - 2221: 24,-13 - 2222: 24,-12 - 2287: -6,2 - 2288: -6,4 - 2289: -5,8 - 2290: -5,10 - 2291: -5,12 - 2292: -5,14 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale270 - decals: - 2448: 1,-7 - 2449: 1,-6 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 455: -25,27 - 456: -25,28 - 462: -25,31 - 463: -25,30 - 464: -25,25 - 465: -25,24 - 2103: -18,-79 - 2104: -18,-78 - 2105: -18,-76 - 2106: -18,-75 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 - decals: - 175: -19,-10 - 176: -19,-9 - 177: -19,-8 - 181: -19,-6 - 182: -19,-2 - 195: -19,-3 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale270 - decals: - 279: -5,-25 - 280: -5,-26 - 281: -5,-27 - 282: -5,-28 - 334: -5,-20 - 335: -5,-19 - 336: -5,-17 - 337: -5,-18 - 2092: -30,-76 - 2093: -30,-75 - 2094: -30,-74 - 2095: -30,-78 - 2096: -30,-79 - 2097: -30,-80 - 2484: -15,-22 - 2485: -15,-25 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 444: -20,34 - 445: -20,35 - 446: -20,33 - 448: -23,33 - 449: -23,34 - 450: -23,32 - 457: -23,35 - 458: -23,36 - - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 - decals: - 762: 23,21 - 763: 23,22 - 764: 23,23 - 765: 23,24 - 766: 23,25 - 767: 23,26 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 2279: -24,2 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 2394: 12,-25 - 2395: 12,-24 - 2396: 12,-23 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 2107: -15,-75 - 2108: -15,-76 - 2109: -15,-78 - 2110: -15,-79 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 330: -6,-31 - 331: -6,-32 - 332: -6,-33 - 333: -6,-34 - 338: -1,-19 - 339: -7,-17 - 340: -7,-18 - 341: -7,-19 - 342: -7,-20 - 343: -7,-21 - 344: -7,-22 - 345: -7,-23 - 346: -7,-25 - 347: -7,-27 - 348: -7,-28 - 349: -7,-29 - 952: -7,-16 - 2084: -27,-78 - 2085: -27,-79 - 2086: -27,-80 - 2087: -27,-81 - 2088: -27,-76 - 2089: -27,-75 - 2090: -27,-74 - 2091: -27,-73 - 2469: -11,-19 - 2470: -11,-18 - 2471: -11,-17 - 2472: -11,-16 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 2310: 22,-32 - - node: - cleanable: True - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingAreaGreyscale - decals: - 2339: 18,-31 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: LoadingAreaGreyscale - decals: - 88: 17,-1 - - node: - color: '#EFB34196' - id: MiniTileWhiteCornerNw - decals: - 274: -15,-16 - - node: - color: '#D381C996' - id: MiniTileWhiteInnerNe - decals: - 469: -45,26 - - node: - color: '#EFB34196' - id: MiniTileWhiteInnerNw - decals: - 277: -13,-16 - 278: -15,-18 - - node: - color: '#D381C996' - id: MiniTileWhiteInnerSe - decals: - 468: -45,29 - - node: - color: '#D381C996' - id: MiniTileWhiteLineE - decals: - 466: -45,27 - 467: -45,28 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineN - decals: - 276: -14,-16 - - node: - color: '#D381C996' - id: MiniTileWhiteLineW - decals: - 453: -25,21 - 454: -25,22 - - node: - color: '#EFB34196' - id: MiniTileWhiteLineW - decals: - 275: -15,-17 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimLineN - decals: - 2556: -46,-17 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 540: -50,39 - 541: -50,40 - 542: -50,41 - 543: -33,-13 - 544: -33,-14 - 545: -33,-15 - 546: -33,-15 - 547: -33,-16 - 566: -4,-32 - 567: -4,-34 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 796: 8,17 - 797: 8,18 - 798: 8,22 - 799: 8,21 - 800: 8,20 - 801: 8,19 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 1000: 17,-5 - 1001: 17,-4 - 2283: -6,1 - 2294: -6,6 - - node: - color: '#9FED58FF' - id: QuarterTileOverlayGreyscale - decals: - 1002: 17,-5 - 1003: 17,-4 - 1004: 17,-6 - 1005: 17,-7 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale - decals: - 2416: 14,-13 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 2281: -19,-4 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 451: -3,27 - 537: -47,40 - 538: -47,41 - 539: -47,39 - 548: -31,-16 - 549: -31,-13 - 558: -31,-15 - 559: -31,-14 - 568: -2,-34 - 569: -2,-32 - - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 - decals: - 791: 10,18 - 792: 10,19 - 793: 10,20 - 794: 10,21 - 795: 10,22 - - node: - color: '#9FED58FF' - id: QuarterTileOverlayGreyscale180 - decals: - 1006: 21,-5 - 1007: 21,-4 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale180 - decals: - 2398: 12,-27 - 2399: 12,-22 - 2411: 7,-12 - 2414: 8,-11 - 2418: 12,-11 - 2590: 15,-1 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 452: -7,27 - 802: 8,19 - 803: 8,20 - 804: 8,21 - 805: 8,22 - 806: 8,18 - 807: 8,17 - 2584: 23,-3 - - node: - color: '#334E6DFF' - id: QuarterTileOverlayGreyscale270 - decals: - 994: 17,-7 - 995: 17,-6 - 996: 17,-5 - 997: 17,-4 - - node: - color: '#9C0000FF' - id: QuarterTileOverlayGreyscale270 - decals: - 550: -33,-15 - 551: -33,-16 - 552: -33,-14 - 553: -33,-13 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 - decals: - 2295: -6,5 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 2419: 14,-11 - 2589: 10,-1 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 531: -50,40 - 532: -50,41 - 533: -50,39 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 187: -19,-1 - 2282: -19,-5 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 564: -4,-32 - 565: -4,-34 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 459: -23,31 - 808: 10,18 - 809: 10,19 - 810: 10,20 - 811: 10,21 - 812: 10,22 - - node: - color: '#334E6DFF' - id: QuarterTileOverlayGreyscale90 - decals: - 998: 21,-5 - 999: 21,-4 - - node: - color: '#9C0000FF' - id: QuarterTileOverlayGreyscale90 - decals: - 554: -31,-14 - 555: -31,-13 - 556: -31,-15 - 557: -31,-16 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale90 - decals: - 2280: -24,1 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 2397: 12,-26 - 2413: 7,-13 - 2417: 12,-13 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 534: -47,41 - 535: -47,40 - 536: -47,39 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 351: -7,-30 - 562: -2,-32 - 563: -2,-34 - - node: - color: '#FFFFFFFF' - id: Rock02 - decals: - 1341: -61.96964,-10.30916 - - node: - color: '#FFFFFFFF' - id: Rock05 - decals: - 1342: -62.90714,-5.93416 - - node: - color: '#FFFFFFFF' - id: Rust - decals: - 1387: -59,-5 - 1388: -58,-5 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign1 - decals: - 78: 31,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign2 - decals: - 79: 32,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign3 - decals: - 80: 33,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign4 - decals: - 81: 34,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign5 - decals: - 82: 35,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign6 - decals: - 84: 36,-21 - - node: - color: '#FFFFFFFF' - id: SpaceStationSign7 - decals: - 83: 37,-21 - - node: - color: '#FFFFFFFF' - id: StandClear - decals: - 236: -38,-11 - 237: -39,-11 - 1364: -52,-10 - 1365: -52,-9 - 2265: 25,24 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 2266: 26,25 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 2267: 25,26 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 2268: 24,25 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2300: 11,2 - - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2293: -6,7 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2459: 25,2 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2475: -15,-24 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2374: 15,-2 - 2401: 12,-28 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2473: -11,-20 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2373: 10,-2 - 2447: 1,-8 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2474: -15,-23 - - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2301: 14,2 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2400: 12,-20 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 2460: 28,2 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 350: -6,-30 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 51: -4,-25 - 52: -3,-25 - 2264: 25,25 - 2524: -13,-25 - - node: - color: '#FF2E26FF' - id: WarnCornerGreyscaleNE - decals: - 2691: -39,-47 - - node: - color: '#D381C9FF' - id: WarnCornerGreyscaleNW - decals: - 2121: -11,-75 - 2128: -12,-76 - - node: - color: '#D381C9FF' - id: WarnCornerGreyscaleSW - decals: - 2120: -11,-79 - 2129: -12,-78 - - node: - color: '#FF2E26FF' - id: WarnCornerNE - decals: - 2690: -39,-47 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 2662: -31,-38 - 2671: -33,-36 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 2661: -33,-38 - 2670: -31,-36 - 2679: -35,-40 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2660: -31,-40 - 2678: -33,-42 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 2663: -33,-40 - 2676: -35,-38 - 2677: -31,-42 - - node: - color: '#D381C9FF' - id: WarnCornerSmallGreyscaleNE - decals: - 2134: -10,-75 - - node: - color: '#D381C9FF' - id: WarnCornerSmallGreyscaleNW - decals: - 2135: -10,-75 - 2136: -6,-75 - - node: - color: '#D381C9FF' - id: WarnCornerSmallGreyscaleSE - decals: - 2133: -10,-79 - - node: - color: '#D381C9FF' - id: WarnCornerSmallGreyscaleSW - decals: - 2130: -11,-78 - 2131: -10,-79 - 2132: -6,-79 - - node: - color: '#FFFFFFFF' - id: WarnEndE - decals: - 973: -3,-18 - 2487: -11,-22 - 2689: -27,-39 - - node: - color: '#D381C9FF' - id: WarnEndGreyscaleN - decals: - 2115: -6,-74 - 2116: -10,-74 - - node: - color: '#D381C9FF' - id: WarnEndGreyscaleS - decals: - 2117: -10,-80 - 2118: -6,-80 - - node: - color: '#FFFFFFFF' - id: WarnEndN - decals: - 2683: -19,-45 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnEndN - decals: - 2318: 15,-11 - 2334: 22,-33 - 2340: 18,-32 - 2560: 15,-6 - - node: - color: '#FFFFFFFF' - id: WarnEndS - decals: - 2682: -19,-46 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnEndS - decals: - 2319: 15,-9 - 2559: 15,-7 - - node: - color: '#FFFFFFFF' - id: WarnEndW - decals: - 972: -4,-18 - 2486: -13,-22 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WarnFull - decals: - 2317: 15,-10 - 2320: 15,-13 - 2321: 15,-14 - 2322: 15,-15 - 2323: 14,-15 - 2324: 13,-15 - 2325: 12,-15 - 2326: 11,-18 - 2327: 11,-20 - 2328: 11,-21 - 2329: 11,-22 - 2330: 11,-23 - 2331: 11,-24 - 2332: 11,-25 - 2333: 11,-26 - 2335: 18,-35 - 2336: 22,-35 - 2341: 18,-33 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnFull - decals: - 2654: -32,-39 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 2350: -42,41 - 2666: -31,-39 - 2684: -29,-41 - 2685: -29,-40 - - node: - color: '#D381C9FF' - id: WarnLineGreyscaleE - decals: - 2112: -6,-78 - 2113: -6,-77 - 2114: -6,-76 - 2119: -6,-79 - 2137: -6,-75 - - node: - color: '#D381C9FF' - id: WarnLineGreyscaleN - decals: - 2122: -9,-75 - 2123: -8,-75 - 2124: -7,-75 - - node: - color: '#D381C9FF' - id: WarnLineGreyscaleS - decals: - 2125: -9,-79 - 2126: -8,-79 - 2127: -7,-79 - - node: - color: '#D381C9FF' - id: WarnLineGreyscaleW - decals: - 2111: -12,-77 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 2489: -12,-22 - 2525: -48,-16 - 2526: -47,-16 - 2527: -46,-16 - 2664: -32,-40 - 2672: -30,-42 - 2673: -34,-42 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 2351: -43,41 - 2665: -33,-39 - 2674: -35,-41 - 2675: -35,-37 - - node: - color: '#FFFFFFFF' - id: WarnLineW - decals: - 1353: 7,-40 - 1354: 6,-40 - 1355: 5,-40 - 2488: -12,-22 - 2667: -32,-38 - 2668: -30,-36 - 2669: -34,-36 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNe - decals: - 2563: 27,5 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerNw - decals: - 788: 19,-6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinCornerSw - decals: - 38: -9,-10 - 40: -7,-8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndE - decals: - 42: -4,-8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndN - decals: - 39: -7,-5 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNe - decals: - 45: -7,-8 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerNw - decals: - 2574: 9,-35 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinInnerSw - decals: - 2573: 9,-30 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 46: -7,-7 - 55: 11,-30 - 56: 11,-31 - 57: 11,-32 - 58: 11,-33 - 382: -1,37 - 383: -1,38 - 384: -1,39 - 385: -1,40 - 582: -58,-4 - 583: -58,-3 - 584: -58,-2 - 585: -58,-2 - 586: -58,-1 - 587: -58,0 - 588: -58,1 - 589: -58,2 - 1343: -61.84464,-9.074785 - 1344: -62.988163,-9.100406 - 2564: 27,4 - 2565: 11,-35 - 2566: 11,-34 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineN - decals: - 43: -5,-8 - 44: -6,-8 - 789: 20,-6 - 2561: 26,5 - 2562: 25,5 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 35: -8,-10 - 36: -7,-10 - 37: -4,-10 - 1317: 21.001646,-5.1484656 - - node: - cleanable: True - color: '#FFFFFFFF' - id: WoodTrimThinLineS - decals: - 1448: -6,-10 - 1449: -5,-10 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineW - decals: - 28: -9,-3 - 29: -9,-4 - 30: -9,-5 - 31: -9,-6 - 32: -9,-7 - 33: -9,-8 - 34: -9,-9 - 41: -7,-7 - 47: -14,20 - 48: -14,21 - 49: -14,22 - 50: -14,23 - 790: 19,-7 - 2569: 9,-34 - 2570: 9,-33 - 2571: 9,-32 - 2572: 9,-31 - - node: - color: '#FFFFFFFF' - id: bushsnowa3 - decals: - 893: 2,-3 - 894: -2,2 - 902: 37,-12 - 903: 37,-9 - - node: - angle: 1.5707963267948966 rad - color: '#FF0000FF' - id: danger - decals: - 2653: -20,-47 - - node: - angle: 0.8726646259971648 rad - color: '#FFFF0089' - id: end - decals: - 2554: -48,-19 - - node: - cleanable: True - angle: -0.8726646259971648 rad - color: '#00C83AFF' - id: peace - decals: - 2558: -46.181316,-17.267536 - - node: - color: '#EFB34196' - id: radiation - decals: - 294: -14,-33 - 295: -14,-35 - 296: -17,-29 - 297: -19,-29 - 298: -14,-41 - - node: - cleanable: True - color: '#FFFFFFFF' - id: skull - decals: - 2555: -46.264652,-18.779003 - - node: - cleanable: True - color: '#0000008B' - id: splatter - decals: - 2548: -47.00404,-18.038906 - 2549: -47.00404,-18.038906 - 2550: -47.00404,-18.038906 - 2551: -46.733208,-18.247383 - 2552: -47.25404,-17.694916 - - type: GridAtmosphere - version: 2 - data: - tiles: - 0,0: - 0: 65535 - 0,-1: - 0: 65535 - -1,0: - 0: 65535 - -1,-1: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,0: - 0: 65535 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 - 3,1: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 - -4,2: - 0: 15 - 1: 65520 - -4,3: - 1: 65535 - -3,0: - 0: 65535 - -3,1: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,0: - 0: 65535 - -2,1: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: - 0: 65535 - -4,-2: - 0: 65535 - -4,-1: - 0: 65535 - -3,-4: - 0: 65535 - -3,-3: - 0: 65535 - -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 - -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 - -1,-2: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,0: - 0: 65535 - 5,1: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,0: - 0: 65535 - 6,1: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 5,-4: - 0: 65535 - 5,-3: - 0: 65535 - 5,-2: - 0: 65535 - 5,-1: - 0: 65535 - 6,-4: - 0: 65535 - 6,-3: - 0: 65535 - 6,-2: - 0: 65535 - 6,-1: - 0: 65535 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -3,4: - 0: 65535 - -3,5: - 0: 65535 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -1,4: - 0: 65535 - -1,5: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 65535 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 3,4: - 0: 65535 - 3,5: - 0: 65535 - 4,4: - 0: 65535 - 4,5: - 0: 65535 - 5,4: - 0: 65535 - 5,5: - 0: 65535 - 6,4: - 0: 65535 - 6,5: - 0: 65535 - 4,-6: - 0: 65535 - 4,-5: - 0: 65535 - 5,-6: - 0: 65535 - 5,-5: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-6: - 0: 65535 - 3,-5: - 0: 65535 - -4,-6: - 0: 65535 - -4,-5: - 0: 65535 - -3,-6: - 0: 65535 - -3,-5: - 0: 65535 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -8,-6: - 0: 65535 - -8,-5: - 0: 65535 - -7,-6: - 0: 62463 - 2: 3072 - -7,-5: - 0: 65535 - -6,-6: - 0: 64767 - 2: 768 - -6,-5: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -8,-4: - 0: 65535 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -7,-4: - 0: 65535 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: - 0: 65535 - -6,-2: - 0: 65535 - -6,-1: - 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - -8,0: - 0: 65535 - -8,1: - 0: 65535 - -8,2: - 0: 65535 - -8,3: - 0: 65535 - -7,0: - 0: 65535 - -7,1: - 0: 65535 - -7,2: - 0: 65535 - -7,3: - 0: 65535 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 65535 - -6,3: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -8,4: - 0: 65535 - -8,5: - 0: 65535 - -7,4: - 0: 65535 - -7,5: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - 7,0: - 0: 65535 - 7,1: - 0: 65535 - 7,2: - 0: 65535 - 7,3: - 0: 65535 - 7,-4: - 0: 65535 - 7,-3: - 0: 65535 - 7,-2: - 0: 65535 - 7,-1: - 0: 65535 - -4,6: - 0: 65535 - -4,7: - 0: 65535 - -3,6: - 0: 65535 - -3,7: - 0: 65535 - -2,6: - 0: 65535 - -2,7: - 0: 65535 - -1,6: - 0: 65535 - -1,7: - 0: 65535 - 0,6: - 0: 65535 - 0,7: - 0: 65535 - 1,6: - 0: 65535 - 1,7: - 0: 65535 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,6: - 0: 65535 - 3,7: - 0: 65535 - 4,6: - 0: 65535 - 4,7: - 0: 65535 - 5,6: - 0: 65535 - 5,7: - 0: 65535 - 6,6: - 0: 65535 - 6,7: - 0: 65535 - 7,4: - 0: 65535 - 7,5: - 0: 65535 - 7,6: - 0: 65535 - 7,7: - 0: 65535 - 4,-8: - 0: 65535 - 4,-7: - 0: 65535 - 5,-8: - 0: 65535 - 5,-7: - 0: 65535 - 6,-8: - 0: 65535 - 6,-7: - 0: 65535 - 6,-6: - 0: 65535 - 6,-5: - 0: 65535 - 7,-6: - 0: 65535 - 7,-5: - 0: 65535 - 0,-8: - 0: 65535 - 0,-7: - 0: 65535 - 1,-8: - 0: 65535 - 1,-7: - 0: 65535 - 2,-8: - 0: 65535 - 2,-7: - 0: 65535 - 3,-8: - 0: 65535 - 3,-7: - 0: 65535 - -4,-8: - 0: 65535 - -4,-7: - 0: 65535 - -3,-8: - 0: 65535 - -3,-7: - 0: 65535 - -2,-8: - 0: 65535 - -2,-7: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -8,-8: - 0: 65535 - -8,-7: - 0: 65535 - -7,-8: - 0: 65535 - -7,-7: - 0: 62463 - 2: 3072 - -6,-8: - 0: 65535 - -6,-7: - 0: 64767 - 2: 768 - -5,-8: - 0: 65535 - -5,-7: - 0: 65535 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -11,-4: - 0: 65535 - -11,-3: - 0: 65535 - -11,-2: - 0: 65535 - -11,-1: - 0: 65535 - -10,-4: - 0: 65535 - -10,-3: - 0: 65535 - -10,-2: - 0: 57343 - 3: 8192 - -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -11,0: - 0: 65535 - -11,1: - 0: 65535 - -11,2: - 0: 65535 - -11,3: - 0: 65535 - -10,0: - 0: 65535 - -10,1: - 0: 65535 - -10,2: - 0: 65535 - -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 - -11,4: - 0: 65535 - -11,5: - 0: 65535 - -11,6: - 0: 65535 - -10,4: - 0: 65535 - -10,5: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -11,-6: - 0: 65535 - -11,-5: - 0: 65535 - -10,-6: - 0: 65535 - -10,-5: - 0: 65535 - -9,-6: - 0: 65535 - -9,-5: - 0: 65535 - -9,-8: - 0: 65535 - -9,-7: - 0: 65535 - 8,-6: - 0: 65535 - 8,-5: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: - 0: 65535 - 8,3: - 0: 65535 - 8,4: - 0: 65535 - 8,5: - 0: 32639 - 8,6: - 0: 63479 - 8,7: - 0: 65535 - 7,-8: - 0: 65523 - 7,-7: - 0: 65535 - -12,-4: - 0: 65535 - -12,-3: - 0: 65535 - -12,-2: - 0: 65535 - -12,-1: - 0: 65535 - -12,0: - 0: 65535 - -12,1: - 0: 65535 - -12,2: - 0: 65535 - -12,3: - 0: 65535 - -12,4: - 0: 65535 - -12,5: - 0: 65535 - -12,6: - 0: 65535 - -12,-6: - 0: 65535 - -12,-5: - 0: 65535 - 8,-8: - 0: 65520 - 8,-7: - 0: 65535 - 9,-8: - 0: 65520 - 9,-7: - 0: 65535 - 9,-6: - 0: 65535 - 9,-5: - 0: 65535 - 10,-8: - 0: 4368 - 10,-7: - 0: 4369 - 10,-6: - 0: 65535 - 10,-5: - 0: 65535 - 9,-4: - 0: 65535 - 9,-3: - 0: 65535 - 9,-2: - 0: 65535 - 9,-1: - 0: 65535 - 10,-4: - 0: 65535 - 10,-3: - 0: 65535 - 10,-2: - 0: 65535 - 10,-1: - 0: 65535 - 9,0: - 0: 65535 - 9,1: - 0: 65535 - 9,2: - 0: 65535 - 9,3: - 0: 65535 - 10,0: - 0: 65535 - 10,1: - 0: 65535 - 10,2: - 0: 65535 - 10,3: - 0: 65535 - 9,4: - 0: 49151 - 10,4: - 0: 63 - -14,0: - 0: 40959 - -14,1: - 0: 49145 - -14,2: - 0: 61070 - -14,3: - 0: 52974 - -13,0: - 0: 65535 - -13,1: - 0: 65535 - -13,2: - 0: 65535 - -13,3: - 0: 65535 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -14,-1: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -14,-6: - 0: 57295 - -14,-5: - 0: 65533 - -13,-6: - 0: 65535 - -13,-5: - 0: 65535 - -14,4: - 0: 61132 - -14,5: - 0: 36590 - -14,6: - 0: 34952 - -13,4: - 0: 65535 - -13,5: - 0: 65535 - -13,6: - 0: 65535 - -6,-9: - 0: 65535 - -5,-9: - 0: 65535 - -4,-9: - 0: 65535 - -3,-9: - 0: 65535 - -2,-9: - 0: 65535 - -1,-9: - 0: 65535 - 0,-9: - 0: 65535 - 1,-9: - 0: 65535 - 2,-9: - 0: 65535 - 3,-9: - 0: 65535 - 4,-9: - 0: 65535 - 5,-9: - 0: 65535 - -12,-7: - 0: 65535 - -11,-7: - 0: 65535 - -10,-7: - 0: 65535 - -14,-7: - 0: 34952 - -13,-7: - 0: 65535 - -6,-10: - 0: 65535 - -5,-10: - 0: 65535 - -4,-10: - 0: 65535 - -3,-10: - 0: 65535 - -2,-10: - 0: 65535 - 3,-11: - 0: 65527 - 3,-10: - 0: 65535 - 4,-11: - 0: 65520 - 4,-10: - 0: 65535 - 5,-11: - 0: 65520 - 5,-10: - 0: 65535 - 6,-9: - 0: 65535 - 7,-9: - 0: 13111 - -12,7: - 0: 65535 - -11,7: - 0: 65535 - -11,-8: - 0: 53198 - -10,-8: - 0: 65535 - -16,0: - 0: 56799 - -16,1: - 0: 8181 - -16,2: - 0: 15 - -15,0: - 0: 65535 - -15,1: - 0: 65521 - -15,2: - 0: 1 - -16,-4: - 0: 40857 - -16,-3: - 0: 65529 - -16,-2: - 0: 65535 - -16,-1: - 0: 56797 - -15,-4: - 0: 65535 - -15,-3: - 0: 65535 - -15,-2: - 0: 65535 - -15,-1: - 0: 65535 - -16,-6: - 0: 62844 - -16,-5: - 0: 49058 - -15,-6: - 0: 24479 - -15,-5: - 0: 65525 - -14,7: - 0: 65416 - -13,7: - 0: 65535 - -8,-12: - 0: 65535 - -8,-11: - 0: 6641 - 4: 58894 - -8,-10: - 0: 5107 - 4: 60428 - -8,-9: - 0: 62453 - 4: 3082 - -7,-12: - 0: 49151 - 4: 16384 - -7,-11: - 0: 40441 - 4: 25094 - -7,-10: - 0: 39417 - 4: 26118 - -7,-9: - 0: 39421 - 4: 26114 - -6,-12: - 0: 65535 - -6,-11: - 0: 65535 - -5,-12: - 0: 65535 - -5,-11: - 0: 65535 - -4,-12: - 0: 65535 - -4,-11: - 0: 65535 - -3,-12: - 0: 65535 - -3,-11: - 0: 65535 - -2,-12: - 0: 65535 - -2,-11: - 0: 65535 - -1,-12: - 0: 65535 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - 0,-12: - 0: 65535 - 0,-11: - 0: 65535 - 0,-10: - 0: 65535 - 1,-12: - 0: 61937 - 4: 14 - 5: 3584 - 1,-11: - 0: 65521 - 6: 14 - 1,-10: - 0: 65535 - 2,-12: - 0: 65535 - 2,-11: - 0: 65535 - 2,-10: - 0: 65535 - 3,-12: - 0: 16383 - 6,-11: - 0: 65520 - 6,-10: - 0: 4095 - 7,-11: - 0: 65296 - 7,-10: - 0: 53247 - -12,8: - 0: 65535 - -12,9: - 0: 65535 - -11,8: - 0: 65535 - -11,9: - 0: 65535 - -11,10: - 0: 65535 - -10,8: - 0: 65535 - -10,9: - 0: 65535 - -10,10: - 0: 65535 - -9,8: - 0: 65535 - -9,9: - 0: 65535 - -9,10: - 0: 65535 - -14,8: - 0: 65535 - -14,9: - 0: 65535 - -13,8: - 0: 65535 - -13,9: - 0: 65535 - -8,8: - 0: 65535 - -8,9: - 0: 65535 - -8,10: - 0: 61439 - -7,8: - 0: 65535 - -7,9: - 0: 65535 - -7,10: - 0: 65535 - -6,8: - 0: 65535 - -6,9: - 0: 65535 - -6,10: - 0: 65535 - -5,8: - 0: 65535 - -5,9: - 0: 65535 - -5,10: - 0: 65535 - -4,8: - 0: 65535 - -4,9: - 0: 65535 - -4,10: - 0: 65535 - -3,8: - 0: 65535 - -3,9: - 0: 65535 - -3,10: - 0: 65535 - -2,8: - 0: 65535 - -2,9: - 0: 65535 - -2,10: - 0: 65535 - -1,8: - 0: 65535 - -1,9: - 0: 65535 - -1,10: - 0: 65535 - 0,8: - 0: 65535 - 0,9: - 0: 65535 - 0,10: - 0: 63487 - 0,-14: - 0: 65522 - 4: 12 - 0,-13: - 0: 65535 - 1,-14: - 0: 65521 - 1,-13: - 0: 61937 - 4: 14 - 7: 3584 - 2,-14: - 0: 12848 - 2,-13: - 0: 62263 - -4,-16: - 0: 57241 - -4,-15: - 0: 49055 - -4,-14: - 0: 40891 - -4,-13: - 0: 64511 - -3,-13: - 0: 65263 - -2,-14: - 0: 64853 - -2,-13: - 0: 65535 - -1,-14: - 0: 63903 - -1,-13: - 0: 65535 - -8,-13: - 0: 65514 - -7,-13: - 0: 65514 - -6,-13: - 0: 65019 - -6,-16: - 0: 63903 - -6,-15: - 0: 64443 - -6,-14: - 0: 63897 - -5,-15: - 0: 52431 - -5,-13: - 0: 65532 - -5,-16: - 0: 52431 - -5,-14: - 0: 53196 - -11,-11: - 0: 61183 - 4: 4352 - -11,-10: - 0: 61422 - 4: 4113 - -11,-9: - 0: 65518 - 4: 1 - -11,-12: - 0: 61132 - 4: 4403 - -10,-12: - 0: 16383 - 4: 49152 - -10,-11: - 0: 14331 - 4: 51204 - -10,-10: - 0: 13299 - 4: 52236 - -10,-9: - 0: 13303 - 4: 52232 - -9,-12: - 0: 65535 - -9,-11: - 0: 4597 - 4: 60938 - -9,-10: - 0: 7673 - 4: 57862 - -9,-9: - 0: 61937 - 4: 3598 - -11,-13: - 0: 49152 - 4: 12288 - -10,-13: - 0: 65216 - -9,-13: - 0: 65367 - -17,-4: - 0: 22004 - -17,-3: - 0: 56821 - -17,-2: - 0: 60079 - -17,-1: - 0: 11810 - -17,0: - 0: 19554 - -17,1: - 0: 52292 - -17,-5: - 0: 19592 - -17,-6: - 0: 32768 - -4,-17: - 0: 65521 - -3,-17: - 0: 63486 - -2,-17: - 0: 63999 - -1,-18: - 0: 61713 - -1,-17: - 0: 44991 - -8,-20: - 0: 65535 - -8,-19: - 0: 65535 - -8,-18: - 0: 63630 - -7,-18: - 0: 61455 - -6,-18: - 0: 29775 - -6,-17: - 0: 65527 - -5,-18: - 0: 61183 - -5,-17: - 0: 65534 - -10,-20: - 0: 65535 - -10,-19: - 0: 65535 - -9,-20: - 0: 63889 - -9,-19: - 0: 4505 - -9,-18: - 0: 61713 - 0,-22: - 0: 65520 - 0,-21: - 0: 61166 - 0,-18: - 0: 65262 - 0,-20: - 0: 65262 - 0,-19: - 0: 61166 - -4,-22: - 0: 28959 - -3,-22: - 0: 12015 - -2,-22: - 0: 4095 - -1,-22: - 0: 65527 - -9,-22: - 0: 65520 - -9,-21: - 0: 4369 - -8,-22: - 0: 65520 - -7,-22: - 0: 65520 - -6,-22: - 0: 30591 - -5,-22: - 0: 60623 - 0,-16: - 0: 60330 - 0,-15: - 0: 8754 - 1,-16: - 0: 4096 - 1,-15: - 0: 4369 - -3,-16: - 0: 20379 - -3,-15: - 0: 17524 - -3,-14: - 0: 58100 - -2,-16: - 0: 8089 - -2,-15: - 0: 22001 - -1,-16: - 0: 40874 - -1,-15: - 0: 39321 - -8,-16: - 0: 43946 - -8,-15: - 0: 43946 - -8,-14: - 0: 47787 - -7,-16: - 0: 24551 - -7,-15: - 0: 61583 - -9,-16: - 0: 61405 - -9,-14: - 0: 54623 - -9,-15: - 0: 61038 - -4,-20: - 0: 65535 - -4,-19: - 0: 65535 - -4,-18: - 0: 6143 - -3,-20: - 0: 65535 - -3,-19: - 0: 65535 - -3,-18: - 0: 8959 - -2,-20: - 0: 65535 - -2,-19: - 0: 65535 - -2,-18: - 0: 127 - -1,-20: - 0: 63347 - -1,-19: - 0: 13175 - -8,-17: - 0: 47615 - -7,-20: - 0: 65535 - -7,-19: - 0: 65535 - -7,-17: - 0: 57215 - -6,-20: - 0: 65535 - -6,-19: - 0: 65535 - -5,-20: - 0: 65535 - -5,-19: - 0: 65535 - -10,-18: - 0: 52428 - -10,-17: - 0: 204 - -9,-17: - 0: 65503 - 1,-21: - 0: 12288 - 0,-17: - 0: 43775 - 1,-19: - 0: 13107 - 1,-20: - 0: 13107 - -4,-23: - 0: 65280 - -4,-21: - 0: 65527 - -3,-23: - 0: 65280 - -3,-21: - 0: 65522 - -2,-21: - 0: 65392 - -1,-21: - 0: 12561 - -10,-21: - 0: 64716 - -10,-22: - 0: 52416 - -8,-21: - 0: 65160 - -7,-21: - 0: 65280 - -6,-23: - 0: 65280 - -6,-21: - 0: 65348 - -5,-23: - 0: 65280 - -5,-21: - 0: 65534 - -12,-8: - 0: 19592 - 11,2: - 0: 65535 - 11,3: - 0: 45055 - 9,5: - 0: 32671 - -7,-14: - 0: 11810 - -12,-9: - 0: 32768 - 4: 78 - 12,2: - 0: 63884 - 12,3: - 0: 65419 - 12,0: - 0: 52224 - 12,1: - 0: 64767 - 13,0: - 0: 64768 - 13,1: - 0: 56799 - 13,2: - 0: 63631 - 13,3: - 0: 56824 - 14,0: - 0: 40704 - 14,1: - 0: 57309 - 14,2: - 0: 63741 - 14,3: - 0: 57288 - 15,0: - 0: 22272 - 15,1: - 0: 30039 - 15,2: - 0: 64709 - 15,3: - 0: 22012 - 12,4: - 0: 52476 - 12,5: - 0: 15 - 13,4: - 0: 40415 - 13,5: - 0: 15 - 14,4: - 0: 56797 - 14,5: - 0: 15 - 15,4: - 0: 21847 - 15,5: - 0: 7 - 11,1: - 0: 40847 - 9,6: - 0: 12917 - 11,4: - 0: 34959 - 11,5: - 0: 8 - -4,11: - 0: 20479 - -3,11: - 0: 24575 - -2,11: - 0: 48127 - 1,8: - 0: 64507 - 1,9: - 0: 30203 - 2,8: - 0: 249 - 3,8: - 0: 11838 - 16,2: - 0: 12848 - 16,3: - 0: 50 - 4,8: - 0: 3999 - 5,8: - 0: 255 - 6,8: - 0: 4031 - 7,8: - 0: 1908 - -16,7: - 0: 40704 - 4: 24576 - -15,7: - 0: 65280 - -12,10: - 0: 65535 - -12,11: - 0: 65535 - -11,11: - 0: 65535 - -10,11: - 0: 65535 - -9,11: - 0: 13119 - -16,8: - 0: 65535 - -16,9: - 0: 65439 - 4: 96 - -16,10: - 0: 231 - -15,8: - 0: 65535 - -15,9: - 0: 65535 - -15,10: - 0: 57309 - -15,11: - 0: 35047 - -14,10: - 0: 65535 - -14,11: - 0: 65501 - -13,10: - 0: 65535 - -13,11: - 0: 65535 - -8,11: - 0: 36523 - -7,11: - 0: 49151 - -6,11: - 0: 20479 - -5,11: - 0: 44859 - -1,11: - 0: 13044 - 0,11: - 0: 251 - 1,10: - 0: 4402 - -4,12: - 0: 246 - -3,12: - 0: 31 - -2,12: - 0: 47 - -7,12: - 0: 234 - -6,12: - 0: 63 - -5,12: - 0: 239 - -12,12: - 0: 56799 - -12,14: - 0: 8191 - -12,15: - 0: 20479 - -12,13: - 0: 17484 - -11,12: - 0: 65535 - -11,13: - 0: 16255 - -11,14: - 0: 12026 - -11,15: - 0: 60410 - -10,12: - 0: 49055 - -10,13: - 0: 44975 - -10,14: - 0: 16383 - -10,15: - 0: 4095 - -9,12: - 0: 15 - -9,13: - 0: 44800 - -9,14: - 0: 35835 - -9,15: - 0: 39931 - -15,12: - 0: 136 - -14,12: - 0: 65535 - -14,13: - 0: 34816 - -14,14: - 0: 34952 - -14,15: - 0: 34952 - -13,12: - 0: 65535 - -13,13: - 0: 36761 - -13,14: - 0: 3838 - -13,15: - 0: 36606 - -12,16: - 0: 45055 - -12,17: - 0: 2191 - -11,16: - 0: 44794 - -11,17: - 0: 4015 - -10,16: - 0: 12287 - -10,17: - 0: 15 - -9,16: - 0: 35835 - -9,17: - 0: 15 - -14,16: - 0: 34952 - -14,17: - 0: 8 - -13,16: - 0: 12030 - -13,17: - 0: 15 - -17,8: - 0: 20068 - -17,9: - 0: 50254 - -17,10: - 0: 8 - -17,7: - 0: 52736 - 2,9: - 0: 240 - 3,9: - 0: 50 - -8,12: - 0: 15 - 4,-12: - 0: 4095 - 5,-12: - 0: 883 - 4: 3212 - 3,-13: - 0: 51200 - 4,-13: - 0: 65392 - 4: 128 - 5,-13: - 0: 4096 - 4: 59184 - 6,-12: - 4: 305 - -12,-10: - 4: 65278 - -12,-11: - 4: 61422 - -12,-12: - 4: 61166 - -12,-13: - 4: 57344 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: BecomesStation - id: Edge - - type: NavMap -- proto: ActionToggleInternals - entities: - - uid: 17770 - components: - - type: Transform - parent: 17769 - - type: InstantAction - container: 17769 - - uid: 17772 - components: - - type: Transform - parent: 17771 - - type: InstantAction - container: 17771 -- proto: ActionToggleLight - entities: - - uid: 4 - components: - - type: Transform - parent: 3 - - type: InstantAction - container: 3 -- proto: AirAlarm - entities: - - uid: 5 - components: - - type: Transform - pos: -30.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 10226 - - 7475 - - 7476 - - 7384 - - 7356 - - 7481 - - 7480 - - 10349 - - 10428 - - 10558 - - 10386 - - 10567 - - 10348 - - 10561 - - 10376 - - 10346 - - type: AtmosDevice - joinedGrid: 2 - - uid: 6 - components: - - type: Transform - pos: -59.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 10426 - - 10309 - - 7450 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7 - components: - - type: Transform - pos: -31.5,8.5 - parent: 2 - - type: DeviceList - devices: - - 7554 - - 7553 - - 10326 - - 10534 - - 7491 - - 7490 - - 7356 - - 10562 - - 10374 - - 10423 - - 10327 - - 10563 - - 10321 - - 7384 - - 7418 - - 7472 - - 7483 - - type: AtmosDevice - joinedGrid: 2 - - uid: 8 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-40.5 - parent: 2 - - type: DeviceList - devices: - - 7560 - - 7561 - - 10227 - - 10412 - - 10406 - - 7363 - - 7364 - - 10582 - - type: AtmosDevice - joinedGrid: 2 - - uid: 9 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,25.5 - parent: 2 - - type: DeviceList - devices: - - 7408 - - 7407 - - 7493 - - 7492 - - 7406 - - 7405 - - 10298 - - 7495 - - 10530 - - 7502 - - 7368 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,4.5 - parent: 2 - - type: DeviceList - devices: - - 7534 - - 7535 - - 7367 - - 7461 - - 7398 - - 7404 - - 7409 - - 7410 - - 7524 - - 7523 - - 10232 - - 10526 - - 10286 - - 10484 - - 10476 - - 10283 - - type: AtmosDevice - joinedGrid: 2 - - uid: 11 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 2 - - type: DeviceList - devices: - - 7421 - - 7422 - - 10233 - - 10411 - - 10410 - - 10228 - - type: AtmosDevice - joinedGrid: 2 - - uid: 12 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 7524 - - 10473 - - 10238 - - 7531 - - 7530 - - 7381 - - 7372 - - 7371 - - 10279 - - 10468 - - 10575 - - 10392 - - 10469 - - 10280 - - type: AtmosDevice - joinedGrid: 2 - - uid: 13 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,31.5 - parent: 2 - - type: DeviceList - devices: - - 7509 - - 10539 - - 10335 - - 7510 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 7425 - - 7542 - - 10224 - - 7424 - - 7417 - - 10463 - - 7513 - - 10396 - - 10464 - - 7396 - - 7397 - - type: AtmosDevice - joinedGrid: 2 - - uid: 15 - components: - - type: Transform - pos: -18.5,28.5 - parent: 2 - - type: DeviceList - devices: - - 7504 - - 7503 - - 7484 - - 10243 - - 10565 - - 10330 - - 7498 - - 7478 - - 7477 - - 7501 - - 7500 - - 7427 - - 7428 - - 10578 - - type: AtmosDevice - joinedGrid: 2 - - uid: 16 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,3.5 - parent: 2 - - type: DeviceList - devices: - - 7562 - - 7471 - - 7482 - - 7414 - - 7415 - - 7472 - - 7418 - - 7475 - - 7476 - - 7477 - - 7478 - - 7360 - - 10495 - - 10297 - - 10299 - - 10529 - - 10300 - - 10496 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17 - components: - - type: Transform - pos: -47.5,-5.5 - parent: 2 - - type: DeviceList - devices: - - 10521 - - 10274 - - 7444 - - 7443 - - 7436 - - 7437 - - 7442 - - type: AtmosDevice - joinedGrid: 2 - - uid: 18 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 7449 - - 7448 - - 10519 - - 10311 - - 10310 - - 10427 - - 10242 - - type: AtmosDevice - joinedGrid: 2 - - uid: 19 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,35.5 - parent: 2 - - type: DeviceList - devices: - - 7495 - - 7496 - - 10550 - - 10339 - - 7369 - - 10537 - - 7497 - - 7499 - - 7494 - - type: AtmosDevice - joinedGrid: 2 - - uid: 20 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-36.5 - parent: 2 - - type: DeviceList - devices: - - 7375 - - 7376 - - 10415 - - 10319 - - 7432 - - 7431 - - 7536 - - 7537 - - 7532 - - 7533 - - 7514 - - 7423 - - 10569 - - 10384 - - 10356 - - 434 - - type: AtmosDevice - joinedGrid: 2 - - uid: 21 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 2 - - type: DeviceList - devices: - - 10581 - - 10264 - - 7422 - - 7421 - - 10403 - - 10416 - - 7425 - - 7542 - - 7560 - - 7561 - - type: AtmosDevice - joinedGrid: 2 - - uid: 22 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 7471 - - 7562 - - 7520 - - 7419 - - 7470 - - 7469 - - 10493 - - 10284 - - 10422 - - 10239 - - type: AtmosDevice - joinedGrid: 2 - - uid: 23 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,32.5 - parent: 2 - - type: DeviceList - devices: - - 7495 - - 7496 - - 10550 - - 10339 - - 7369 - - type: AtmosDevice - joinedGrid: 2 - - uid: 24 - components: - - type: Transform - pos: -29.5,33.5 - parent: 2 - - type: DeviceList - devices: - - 7502 - - 7407 - - 7408 - - 10320 - - 10528 - - 7501 - - 7500 - - 7365 - - type: AtmosDevice - joinedGrid: 2 - - uid: 25 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,20.5 - parent: 2 - - type: DeviceList - devices: - - 10345 - - 10556 - - 10380 - - 7554 - - 7553 - - 7552 - - 7551 - - type: AtmosDevice - joinedGrid: 2 - - uid: 26 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 27 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 7463 - - 7462 - - 10505 - - 10301 - - 10502 - - 7439 - - 7438 - - 10504 - - 10365 - - 10527 - - 10377 - - type: AtmosDevice - joinedGrid: 2 - - uid: 28 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 10414 - - 10230 - - 7424 - - 7417 - - 7513 - - 7358 - - 7357 - - 10419 - - 10281 - - 7389 - - 7395 - - type: AtmosDevice - joinedGrid: 2 - - uid: 29 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 7552 - - 7551 - - 7480 - - 7481 - - 7490 - - 7491 - - 7378 - - 7493 - - 7492 - - type: AtmosDevice - joinedGrid: 2 - - uid: 30 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-13.5 - parent: 2 - - type: DeviceList - devices: - - 7489 - - 7488 - - 7467 - - 7435 - - 7379 - - 10259 - - 10438 - - 10439 - - 10226 - - type: AtmosDevice - joinedGrid: 2 - - uid: 31 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-10.5 - parent: 2 - - type: DeviceList - devices: - - 7463 - - 7462 - - 7366 - - 10501 - - 10391 - - 7464 - - 10362 - - 10487 - - 7391 - - 7394 - - type: AtmosDevice - joinedGrid: 2 - - uid: 32 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 - parent: 2 - - type: DeviceList - devices: - - 7426 - - 7479 - - 7460 - - 7420 - - 7434 - - 7435 - - 7465 - - 7466 - - 7468 - - 7473 - - 7474 - - 10446 - - 10273 - - 10254 - - 10448 - - type: AtmosDevice - joinedGrid: 2 - - uid: 33 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 7525 - - 7526 - - 10287 - - 10483 - - 10418 - - 10368 - - 10467 - - 10225 - - 10288 - - 10466 - - type: AtmosDevice - joinedGrid: 2 - - uid: 34 - components: - - type: Transform - pos: 33.5,-17.5 - parent: 2 - - type: DeviceList - devices: - - 7487 - - 7488 - - 7489 - - 10257 - - 10431 - - 10435 - - 10258 - - 10447 - - 10247 - - type: AtmosDevice - joinedGrid: 2 - - uid: 35 - components: - - type: Transform - pos: 8.5,2.5 - parent: 2 - - type: DeviceList - devices: - - 7459 - - 7458 - - 10285 - - 10478 - - 10477 - - 7460 - - 7534 - - 7535 - - type: AtmosDevice - joinedGrid: 2 - - uid: 36 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,34.5 - parent: 2 - - type: DeviceList - devices: - - 7512 - - 10333 - - 10546 - - 7511 - - type: AtmosDevice - joinedGrid: 2 - - uid: 37 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 2 - - type: DeviceList - devices: - - 10383 - - 7514 - - 10437 - - 10436 - - 10250 - - 7528 - - 7529 - - 10246 - - 10434 - - 7359 - - type: AtmosDevice - joinedGrid: 2 - - uid: 38 - components: - - type: Transform - pos: -10.5,40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 39 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - - type: DeviceList - devices: - - 7371 - - 7372 - - 7381 - - 10461 - - 10278 - - type: AtmosDevice - joinedGrid: 2 - - uid: 40 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,19.5 - parent: 2 - - type: DeviceList - devices: - - 10551 - - 10337 - - 7506 - - 7505 - - 7504 - - 7503 - - 7413 - - 7403 - - 7402 - - 7557 - - 7519 - - 7518 - - 10382 - - type: AtmosDevice - joinedGrid: 2 - - uid: 41 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 2 - - type: DeviceList - devices: - - 10503 - - 10373 - - 10510 - - 10360 - - 10367 - - 10509 - - 10511 - - 10358 - - 10512 - - 10355 - - 10568 - - 10361 - - 7440 - - 7438 - - 7439 - - 7436 - - 7437 - - 7393 - - 7392 - - type: AtmosDevice - joinedGrid: 2 - - uid: 42 - components: - - type: Transform - pos: -0.5,5.5 - parent: 2 - - type: DeviceList - devices: - - 7458 - - 7459 - - 7456 - - 7457 - - 10479 - - 10289 - - 7357 - - type: AtmosDevice - joinedGrid: 2 - - uid: 43 - components: - - type: Transform - pos: -5.5,8.5 - parent: 2 - - type: DeviceList - devices: - - 10485 - - 10291 - - 7457 - - 7456 - - 7520 - - 7521 - - 7556 - - 7518 - - 7519 - - 7383 - - type: AtmosDevice - joinedGrid: 2 - - uid: 44 - components: - - type: Transform - pos: -53.5,-10.5 - parent: 2 - - type: DeviceList - devices: - - 7445 - - 7446 - - 7447 - - 10312 - - 10515 - - 10306 - - 10514 - - 10516 - - 10305 - - 10313 - - 10520 - - 10513 - - 10314 - - 10307 - - 10517 - - 10308 - - type: AtmosDevice - joinedGrid: 2 - - uid: 45 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 10480 - - 7522 - - 7430 - - 7429 - - 7536 - - 7537 - - 7366 - - 7469 - - 7470 - - 10317 - - 10429 - - type: AtmosDevice - joinedGrid: 2 - - uid: 46 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-20.5 - parent: 2 - - type: DeviceList - devices: - - 7375 - - 7376 - - 10415 - - 10319 - - 7432 - - 7431 - - 7536 - - 7537 - - 433 - - type: AtmosDevice - joinedGrid: 2 - - uid: 47 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 2 - - type: DeviceList - devices: - - 10251 - - 7528 - - 10441 - - 7529 - - 7540 - - 10440 - - 10245 - - type: AtmosDevice - joinedGrid: 2 - - uid: 48 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 2 - - type: DeviceList - devices: - - 10450 - - 7539 - - 7527 - - 10252 - - 10413 - - 10241 - - type: AtmosDevice - joinedGrid: 2 - - uid: 49 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-3.5 - parent: 2 - - type: DeviceList - devices: - - 10500 - - 10371 - - 10498 - - 10366 - - 10497 - - 7521 - - 7522 - - 10372 - - 10499 - - type: AtmosDevice - joinedGrid: 2 - - uid: 50 - components: - - type: Transform - pos: -15.5,-73.5 - parent: 2 - - type: DeviceList - devices: - - 10399 - - 438 - - 436 - - 435 - - 437 - - 439 - - 7385 - - 7386 - - 7388 - - 7387 - - type: AtmosDevice - joinedGrid: 2 - - uid: 51 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,14.5 - parent: 2 - - type: DeviceList - devices: - - 7525 - - 7526 - - 7555 - - 7461 - - 7530 - - 7531 - - 10572 - - 10235 - - 10474 - - 10282 - - 10579 - - 10404 - - 7410 - - 7409 - - 7398 - - 7404 - - type: AtmosDevice - joinedGrid: 2 - - uid: 52 - components: - - type: MetaData - name: burn chamber air alarm - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 2 - - type: DeviceList - devices: - - 10583 - - type: AtmosDevice - joinedGrid: 2 - - uid: 53 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - - type: DeviceList - devices: - - 10584 - - 10407 - - 10408 - - 10585 - - 7416 - - 7566 - - 7565 - - 7564 - - 7563 - - 7363 - - 441 - - 442 - - 7364 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17544 - components: - - type: MetaData - name: inner chamber air alarm - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-38.5 - parent: 2 - - type: DeviceList - devices: - - 3906 - - 2674 - - 2584 - - 2675 - - 3901 - - 2676 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-35.5 - parent: 2 - - type: DeviceList - devices: - - 17827 - - 17828 - - 17837 - - type: AtmosDevice - joinedGrid: 2 -- proto: AirCanister - entities: - - uid: 55 - components: - - type: Transform - pos: -5.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 56 - components: - - type: Transform - pos: -5.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 58 - components: - - type: Transform - pos: 19.5,18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 59 - components: - - type: Transform - pos: -14.5,-83.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 60 - components: - - type: Transform - pos: 18.9538,-25.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 62 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 63 - components: - - type: Transform - pos: -3.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: Airlock - entities: - - uid: 64 - components: - - type: Transform - pos: -28.5,8.5 - parent: 2 - - uid: 67 - components: - - type: Transform - pos: -30.5,12.5 - parent: 2 - - uid: 68 - components: - - type: Transform - pos: -28.5,13.5 - parent: 2 - - uid: 69 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-15.5 - parent: 2 - - uid: 70 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-15.5 - parent: 2 -- proto: AirlockArmoryGlassLocked - entities: - - uid: 71 - components: - - type: Transform - pos: -39.5,-5.5 - parent: 2 - - uid: 72 - components: - - type: Transform - pos: -37.5,-7.5 - parent: 2 -- proto: AirlockAtmosphericsGlass - entities: - - uid: 73 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 2 - - uid: 74 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 75 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 2 - - uid: 76 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 2 - - uid: 77 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 2 - - uid: 78 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 2 - - uid: 79 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 2 - - uid: 80 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 2 -- proto: AirlockBarLocked - entities: - - uid: 81 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 2 -- proto: AirlockBoxerLocked - entities: - - uid: 428 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 -- proto: AirlockCaptainLocked - entities: - - uid: 98 - components: - - type: Transform - pos: -2.5,38.5 - parent: 2 -- proto: AirlockCargoGlass - entities: - - uid: 99 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 100 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 2 -- proto: AirlockCargoGlassLocked - entities: - - uid: 101 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - - uid: 102 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 2 - - uid: 103 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - - uid: 104 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 2 - - uid: 105 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 2 - - uid: 106 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 2 - - uid: 107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-13.5 - parent: 2 - - uid: 108 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 2 - - uid: 109 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 2 - - uid: 110 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 -- proto: AirlockCargoLocked - entities: - - uid: 111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 2 - - uid: 112 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 -- proto: AirlockChapelLocked - entities: - - uid: 113 - components: - - type: Transform - pos: -34.5,36.5 - parent: 2 - - uid: 114 - components: - - type: Transform - pos: -32.5,33.5 - parent: 2 -- proto: AirlockChemistryLocked - entities: - - uid: 115 - components: - - type: Transform - pos: 13.5,12.5 - parent: 2 - - uid: 116 - components: - - type: Transform - pos: 18.5,14.5 - parent: 2 -- proto: AirlockChiefEngineerGlassLocked - entities: - - uid: 117 - components: - - type: Transform - pos: -9.5,-23.5 - parent: 2 - - uid: 118 - components: - - type: Transform - pos: -9.5,-22.5 - parent: 2 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 119 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 2 -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 120 - components: - - type: Transform - pos: 11.5,21.5 - parent: 2 -- proto: AirlockCommandGlass - entities: - - uid: 121 - components: - - type: Transform - pos: -24.5,37.5 - parent: 2 - - uid: 122 - components: - - type: Transform - pos: -22.5,37.5 - parent: 2 -- proto: AirlockCommandGlassLocked - entities: - - uid: 124 - components: - - type: Transform - pos: -21.5,33.5 - parent: 2 - - uid: 125 - components: - - type: Transform - pos: -2.5,30.5 - parent: 2 - - uid: 126 - components: - - type: Transform - pos: -21.5,35.5 - parent: 2 - - uid: 127 - components: - - type: Transform - pos: -18.5,35.5 - parent: 2 - - uid: 128 - components: - - type: Transform - pos: -18.5,33.5 - parent: 2 - - uid: 129 - components: - - type: Transform - pos: -5.5,32.5 - parent: 2 - - uid: 130 - components: - - type: Transform - pos: -3.5,32.5 - parent: 2 - - uid: 131 - components: - - type: Transform - pos: -2.5,34.5 - parent: 2 -- proto: AirlockCommandLocked - entities: - - uid: 132 - components: - - type: Transform - pos: -13.5,35.5 - parent: 2 - - uid: 133 - components: - - type: Transform - pos: -6.5,35.5 - parent: 2 - - uid: 134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,40.5 - parent: 2 - - uid: 135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,40.5 - parent: 2 - - uid: 136 - components: - - type: Transform - pos: -5.5,28.5 - parent: 2 - - uid: 137 - components: - - type: Transform - pos: -3.5,28.5 - parent: 2 -- proto: AirlockDetectiveGlassLocked - entities: - - uid: 138 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 -- proto: AirlockDetectiveLocked - entities: - - uid: 139 - components: - - type: Transform - pos: 26.5,3.5 - parent: 2 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 140 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 2 - - uid: 141 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 2 - - uid: 144 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - - uid: 145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 2 - - uid: 146 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 2 - - uid: 147 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 2 - - uid: 148 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 2 - - uid: 149 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 2 - - uid: 150 - components: - - type: Transform - pos: -9.5,-28.5 - parent: 2 - - uid: 151 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 2 - - uid: 152 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 153 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 2 - - uid: 12010 - components: - - type: Transform - pos: -27.5,-37.5 - parent: 2 -- proto: AirlockEngineeringLocked - entities: - - uid: 143 - components: - - type: Transform - pos: -21.5,-26.5 - parent: 2 - - uid: 154 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 2 - - uid: 155 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 2 - - uid: 156 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 - - uid: 157 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 2 - - uid: 158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,45.5 - parent: 2 - - uid: 159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-19.5 - parent: 2 - - uid: 160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 2 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,30.5 - parent: 2 - - uid: 162 - components: - - type: Transform - pos: -17.5,15.5 - parent: 2 - - uid: 163 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 12009 - components: - - type: Transform - pos: -29.5,-37.5 - parent: 2 -- proto: AirlockEVAGlassLocked - entities: - - uid: 123 - components: - - type: Transform - pos: -19.5,-24.5 - parent: 2 - - uid: 142 - components: - - type: Transform - pos: -19.5,-22.5 - parent: 2 -- proto: AirlockEVALocked - entities: - - uid: 307 - components: - - type: Transform - pos: -21.5,-20.5 - parent: 2 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 164 - components: - - type: Transform - pos: -31.5,-29.5 - parent: 2 - - type: DeviceLinkSink - links: - - 165 - - type: DeviceLinkSource - linkedPorts: - 165: - - DoorStatus: DoorBolt - - uid: 165 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 2 - - type: DeviceLinkSink - links: - - 164 - - type: DeviceLinkSource - linkedPorts: - 164: - - DoorStatus: DoorBolt - - uid: 166 - components: - - type: Transform - pos: -23.5,-46.5 - parent: 2 - - type: DeviceLinkSink - links: - - 167 - - type: DeviceLinkSource - linkedPorts: - 167: - - DoorStatus: DoorBolt - - uid: 167 - components: - - type: Transform - pos: -20.5,-46.5 - parent: 2 - - type: DeviceLinkSink - links: - - 166 - - type: DeviceLinkSource - linkedPorts: - 166: - - DoorStatus: DoorBolt - - uid: 168 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 2 - - type: DeviceLinkSink - links: - - 169 - - 170 - - type: DeviceLinkSource - linkedPorts: - 169: - - DoorStatus: DoorBolt - 170: - - DoorStatus: DoorBolt - - uid: 169 - components: - - type: Transform - pos: -17.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 168 - - 171 - - type: DeviceLinkSource - linkedPorts: - 168: - - DoorStatus: DoorBolt - 171: - - DoorStatus: DoorBolt - - uid: 170 - components: - - type: Transform - pos: -15.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 168 - - 171 - - type: DeviceLinkSource - linkedPorts: - 168: - - DoorStatus: DoorBolt - 171: - - DoorStatus: DoorBolt - - uid: 171 - components: - - type: Transform - pos: -15.5,-47.5 - parent: 2 - - type: DeviceLinkSink - links: - - 169 - - 170 - - type: DeviceLinkSource - linkedPorts: - 169: - - DoorStatus: DoorBolt - 170: - - DoorStatus: DoorBolt - - uid: 17490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-46.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 17492 - - type: DeviceLinkSource - linkedPorts: - 17492: - - DoorStatus: DoorBolt - - uid: 17492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-46.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 17490 - - type: DeviceLinkSource - linkedPorts: - 17490: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassAtmosphericsLocked - entities: - - uid: 172 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 2 - - type: DeviceLinkSink - links: - - 174 - - type: DeviceLinkSource - linkedPorts: - 174: - - DoorStatus: DoorBolt - - uid: 173 - components: - - type: Transform - pos: 1.5,-52.5 - parent: 2 - - type: DeviceLinkSink - links: - - 176 - - type: DeviceLinkSource - linkedPorts: - 176: - - DoorStatus: DoorBolt - - uid: 174 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 2 - - type: DeviceLinkSink - links: - - 172 - - type: DeviceLinkSource - linkedPorts: - 172: - - DoorStatus: DoorBolt - - uid: 175 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 2 - - type: DeviceLinkSink - links: - - 176 - - type: DeviceLinkSource - linkedPorts: - 176: - - DoorStatus: DoorBolt - - uid: 176 - components: - - type: Transform - pos: 2.5,-54.5 - parent: 2 - - type: DeviceLinkSink - links: - - 173 - - 175 - - type: DeviceLinkSource - linkedPorts: - 173: - - DoorStatus: DoorBolt - 175: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 177 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 2 - - uid: 178 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 2 -- proto: AirlockExternalGlassEasyPry - entities: - - uid: 179 - components: - - type: Transform - pos: -51.5,19.5 - parent: 2 - - uid: 180 - components: - - type: Transform - pos: -51.5,11.5 - parent: 2 - - uid: 181 - components: - - type: Transform - pos: -51.5,13.5 - parent: 2 - - uid: 182 - components: - - type: Transform - pos: -51.5,21.5 - parent: 2 - - uid: 183 - components: - - type: Transform - pos: 41.5,-3.5 - parent: 2 - - uid: 184 - components: - - type: Transform - pos: 41.5,-9.5 - parent: 2 - - uid: 185 - components: - - type: Transform - pos: 41.5,-17.5 - parent: 2 - - uid: 186 - components: - - type: Transform - pos: 41.5,-19.5 - parent: 2 - - uid: 187 - components: - - type: Transform - pos: 41.5,-11.5 - parent: 2 - - uid: 188 - components: - - type: Transform - pos: 41.5,-1.5 - parent: 2 -- proto: AirlockExternalGlassLocked - entities: - - uid: 189 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 2 - - uid: 190 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 2 - - uid: 191 - components: - - type: Transform - pos: 11.5,-41.5 - parent: 2 - - type: DeviceLinkSink - links: - - 192 - - 202 - - type: DeviceLinkSource - linkedPorts: - 202: - - DoorStatus: DoorBolt - 192: - - DoorStatus: DoorBolt - - uid: 192 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 191 - - 201 - - type: DeviceLinkSource - linkedPorts: - 201: - - DoorStatus: DoorBolt - 191: - - DoorStatus: DoorBolt - - uid: 193 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - uid: 194 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 195 - components: - - type: Transform - pos: -53.5,48.5 - parent: 2 - - type: DeviceLinkSink - links: - - 196 - - type: DeviceLinkSource - linkedPorts: - 196: - - DoorStatus: DoorBolt - - uid: 196 - components: - - type: Transform - pos: -55.5,48.5 - parent: 2 - - type: DeviceLinkSink - links: - - 195 - - type: DeviceLinkSource - linkedPorts: - 195: - - DoorStatus: DoorBolt - - uid: 197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,48.5 - parent: 2 - - uid: 198 - components: - - type: Transform - pos: -42.5,54.5 - parent: 2 - - uid: 199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,52.5 - parent: 2 - - uid: 200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,11.5 - parent: 2 - - uid: 201 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 2 - - type: DeviceLinkSink - links: - - 202 - - 192 - - type: DeviceLinkSource - linkedPorts: - 192: - - DoorStatus: DoorBolt - 202: - - DoorStatus: DoorBolt - - uid: 202 - components: - - type: Transform - pos: 11.5,-44.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - links: - - 191 - - 201 - - type: DeviceLinkSource - linkedPorts: - 201: - - DoorStatus: DoorBolt - 191: - - DoorStatus: DoorBolt -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 203 - components: - - type: Transform - pos: 30.5,-24.5 - parent: 2 - - uid: 204 - components: - - type: Transform - pos: 37.5,-24.5 - parent: 2 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,11.5 - parent: 2 - - uid: 206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,19.5 - parent: 2 - - uid: 207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,13.5 - parent: 2 - - uid: 208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,21.5 - parent: 2 -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,42.5 - parent: 2 - - uid: 210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,31.5 - parent: 2 - - uid: 211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,5.5 - parent: 2 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-1.5 - parent: 2 - - uid: 213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 2 - - uid: 214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 2 - - uid: 215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 2 - - uid: 216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-3.5 - parent: 2 - - uid: 217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-19.5 - parent: 2 - - uid: 218 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 2 - - uid: 219 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 2 -- proto: AirlockFreezer - entities: - - uid: 220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,41.5 - parent: 2 - - uid: 221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-6.5 - parent: 2 -- proto: AirlockFreezerHydroponicsLocked - entities: - - uid: 290 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 222 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - - uid: 223 - components: - - type: Transform - pos: -14.5,16.5 - parent: 2 -- proto: AirlockFreezerLocked - entities: - - uid: 224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,15.5 - parent: 2 - - uid: 225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,10.5 - parent: 2 -- proto: AirlockGlass - entities: - - uid: 65 - components: - - type: Transform - pos: -33.5,17.5 - parent: 2 - - uid: 66 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - uid: 226 - components: - - type: Transform - pos: -26.5,5.5 - parent: 2 - - uid: 227 - components: - - type: Transform - pos: -38.5,6.5 - parent: 2 - - uid: 228 - components: - - type: Transform - pos: -57.5,-7.5 - parent: 2 - - uid: 229 - components: - - type: Transform - pos: -37.5,16.5 - parent: 2 - - uid: 230 - components: - - type: Transform - pos: -38.5,5.5 - parent: 2 - - uid: 231 - components: - - type: Transform - pos: -26.5,6.5 - parent: 2 - - uid: 232 - components: - - type: Transform - pos: -43.5,17.5 - parent: 2 - - uid: 233 - components: - - type: Transform - pos: -43.5,15.5 - parent: 2 - - uid: 234 - components: - - type: Transform - pos: -40.5,8.5 - parent: 2 - - uid: 235 - components: - - type: Transform - pos: -39.5,14.5 - parent: 2 - - uid: 236 - components: - - type: Transform - pos: -39.5,15.5 - parent: 2 - - uid: 237 - components: - - type: Transform - pos: -42.5,8.5 - parent: 2 - - uid: 238 - components: - - type: Transform - pos: -46.5,8.5 - parent: 2 - - uid: 239 - components: - - type: Transform - pos: -48.5,8.5 - parent: 2 - - uid: 240 - components: - - type: Transform - pos: -26.5,15.5 - parent: 2 - - uid: 241 - components: - - type: Transform - pos: -26.5,14.5 - parent: 2 - - uid: 242 - components: - - type: Transform - pos: -24.5,18.5 - parent: 2 - - uid: 243 - components: - - type: Transform - pos: -23.5,18.5 - parent: 2 - - uid: 244 - components: - - type: Transform - pos: -11.5,25.5 - parent: 2 - - uid: 245 - components: - - type: Transform - pos: -11.5,26.5 - parent: 2 - - uid: 246 - components: - - type: Transform - pos: -19.5,-3.5 - parent: 2 - - uid: 247 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 2 - - uid: 248 - components: - - type: Transform - pos: -24.5,-1.5 - parent: 2 - - uid: 249 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 2 - - uid: 250 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 2 - - uid: 251 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 2 - - uid: 252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 2 - - uid: 253 - components: - - type: Transform - pos: -2.5,1.5 - parent: 2 - - uid: 254 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 2 - - uid: 255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 2 - - uid: 256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 2 - - uid: 257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 2 - - uid: 258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 2 - - uid: 259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,0.5 - parent: 2 - - uid: 260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,3.5 - parent: 2 - - uid: 261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,3.5 - parent: 2 - - uid: 262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-6.5 - parent: 2 - - uid: 263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 2 - - uid: 264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 2 - - uid: 265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 2 - - uid: 266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 2 - - uid: 267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 2 - - uid: 268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-14.5 - parent: 2 - - uid: 269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 2 - - uid: 270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 2 - - uid: 271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 2 - - uid: 272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 2 - - uid: 273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 2 - - uid: 274 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 275 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 2 - - uid: 276 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 2 - - uid: 277 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 2 - - uid: 278 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 2 - - uid: 280 - components: - - type: Transform - pos: -11.5,0.5 - parent: 2 - - uid: 281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 2 - - uid: 282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 2 - - uid: 283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 - parent: 2 - - uid: 284 - components: - - type: Transform - pos: -6.5,6.5 - parent: 2 - - uid: 285 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 2 - - uid: 286 - components: - - type: Transform - pos: -20.5,0.5 - parent: 2 - - uid: 287 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 2 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 288 - components: - - type: Transform - pos: 22.5,-4.5 - parent: 2 -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 289 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 -- proto: AirlockHydroponicsLocked - entities: - - uid: 291 - components: - - type: Transform - pos: -23.5,12.5 - parent: 2 -- proto: AirlockJanitorLocked - entities: - - uid: 292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 2 -- proto: AirlockKitchenGlassLocked - entities: - - uid: 293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 2 - - uid: 294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 2 -- proto: AirlockLawyerLocked - entities: - - uid: 97 - components: - - type: Transform - pos: -22.5,22.5 - parent: 2 -- proto: AirlockMailLocked - entities: - - uid: 295 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 2 -- proto: AirlockMaint - entities: - - uid: 296 - components: - - type: Transform - pos: 21.5,30.5 - parent: 2 - - uid: 297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-18.5 - parent: 2 - - uid: 298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 -- proto: AirlockMaintBarLocked - entities: - - uid: 299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 2 -- proto: AirlockMaintBoxerLocked - entities: - - uid: 351 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 -- proto: AirlockMaintCargoLocked - entities: - - uid: 300 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 2 - - uid: 301 - components: - - type: Transform - pos: 15.5,-23.5 - parent: 2 - - uid: 302 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 2 - - uid: 303 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 304 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 2 - - uid: 306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 2 -- proto: AirlockMaintCommandLocked - entities: - - uid: 308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,30.5 - parent: 2 - - uid: 309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,28.5 - parent: 2 - - uid: 310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,32.5 - parent: 2 - - uid: 311 - components: - - type: Transform - pos: -12.5,31.5 - parent: 2 -- proto: AirlockMaintEngiLocked - entities: - - uid: 312 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-23.5 - parent: 2 - - uid: 313 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 2 - - uid: 314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-27.5 - parent: 2 - - uid: 315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-21.5 - parent: 2 - - uid: 316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-18.5 - parent: 2 -- proto: AirlockMaintGlass - entities: - - uid: 317 - components: - - type: Transform - pos: 5.5,28.5 - parent: 2 - - uid: 318 - components: - - type: Transform - pos: 3.5,8.5 - parent: 2 -- proto: AirlockMaintHOPLocked - entities: - - uid: 319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-7.5 - parent: 2 -- proto: AirlockMaintHydroLocked - entities: - - uid: 320 - components: - - type: Transform - pos: -20.5,15.5 - parent: 2 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 321 - components: - - type: Transform - pos: 2.5,11.5 - parent: 2 -- proto: AirlockMaintKitchenLocked - entities: - - uid: 322 - components: - - type: Transform - pos: -12.5,17.5 - parent: 2 -- proto: AirlockMaintLawyerLocked - entities: - - uid: 94 - components: - - type: Transform - pos: -20.5,18.5 - parent: 2 -- proto: AirlockMaintLocked - entities: - - uid: 323 - components: - - type: Transform - pos: -28.5,41.5 - parent: 2 - - uid: 324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,11.5 - parent: 2 - - uid: 325 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 2 - - uid: 326 - components: - - type: Transform - pos: 19.5,-17.5 - parent: 2 - - uid: 327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,46.5 - parent: 2 - - uid: 328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 2 - - uid: 329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 2 - - uid: 330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 2 - - uid: 331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,28.5 - parent: 2 - - uid: 332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,34.5 - parent: 2 - - uid: 333 - components: - - type: Transform - pos: -19.5,-19.5 - parent: 2 - - uid: 334 - components: - - type: Transform - pos: -46.5,4.5 - parent: 2 - - uid: 335 - components: - - type: Transform - pos: -36.5,4.5 - parent: 2 - - uid: 336 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 2 - - uid: 337 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 2 - - uid: 338 - components: - - type: Transform - pos: -2.5,14.5 - parent: 2 - - uid: 339 - components: - - type: Transform - pos: 40.5,2.5 - parent: 2 - - uid: 340 - components: - - type: Transform - pos: -22.5,17.5 - parent: 2 - - uid: 341 - components: - - type: Transform - pos: -17.5,23.5 - parent: 2 - - uid: 342 - components: - - type: Transform - pos: -37.5,21.5 - parent: 2 - - uid: 343 - components: - - type: Transform - pos: -39.5,22.5 - parent: 2 - - uid: 344 - components: - - type: Transform - pos: -27.5,17.5 - parent: 2 - - uid: 345 - components: - - type: Transform - pos: -29.5,23.5 - parent: 2 - - uid: 346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 2 - - uid: 347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 2 - - uid: 348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 2 - - uid: 349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 2 - - uid: 14563 - components: - - type: Transform - pos: -32.5,21.5 - parent: 2 -- proto: AirlockMaintMedLocked - entities: - - uid: 350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 2 - - uid: 352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,27.5 - parent: 2 - - uid: 353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,27.5 - parent: 2 - - uid: 354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 2 - - uid: 355 - components: - - type: Transform - pos: 5.5,7.5 - parent: 2 -- proto: AirlockMaintReporterLocked - entities: - - uid: 425 - components: - - type: Transform - pos: -15.5,21.5 - parent: 2 -- proto: AirlockMaintRnDLocked - entities: - - uid: 356 - components: - - type: Transform - pos: -36.5,39.5 - parent: 2 - - uid: 357 - components: - - type: Transform - pos: -43.5,45.5 - parent: 2 - - uid: 358 - components: - - type: Transform - pos: -37.5,41.5 - parent: 2 - - uid: 359 - components: - - type: Transform - pos: -37.5,24.5 - parent: 2 -- proto: AirlockMaintSecLocked - entities: - - uid: 360 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 2 - - uid: 362 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 2 - - uid: 366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-18.5 - parent: 2 -- proto: AirlockMaintSecurityLawyerLocked - entities: - - uid: 361 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 363 - components: - - type: Transform - pos: -46.5,-1.5 - parent: 2 - - uid: 364 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 2 - - uid: 365 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 2 - - uid: 367 - components: - - type: Transform - pos: -37.5,-17.5 - parent: 2 - - uid: 12827 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 -- proto: AirlockMaintServiceLocked - entities: - - uid: 427 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 -- proto: AirlockMantisLocked - entities: - - uid: 368 - components: - - type: MetaData - name: mantis' office - - type: Transform - pos: -36.5,35.5 - parent: 2 - - uid: 369 - components: - - type: MetaData - name: mantis' office - - type: Transform - pos: -37.5,32.5 - parent: 2 - - uid: 370 - components: - - type: MetaData - name: mantis' office - - type: Transform - pos: -35.5,30.5 - parent: 2 -- proto: AirlockMedicalGlass - entities: - - uid: 371 - components: - - type: Transform - pos: -31.5,4.5 - parent: 2 - - uid: 372 - components: - - type: Transform - pos: 12.5,17.5 - parent: 2 - - uid: 373 - components: - - type: Transform - pos: 13.5,17.5 - parent: 2 - - uid: 374 - components: - - type: Transform - pos: 20.5,15.5 - parent: 2 - - uid: 375 - components: - - type: Transform - pos: 20.5,16.5 - parent: 2 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 376 - components: - - type: Transform - pos: 9.5,11.5 - parent: 2 - - uid: 377 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 2 - - uid: 379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 2 - - uid: 380 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 -- proto: AirlockMedicalLocked - entities: - - uid: 381 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - uid: 382 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - uid: 383 - components: - - type: Transform - pos: 22.5,20.5 - parent: 2 - - uid: 384 - components: - - type: Transform - pos: 24.5,22.5 - parent: 2 - - uid: 385 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 386 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 387 - components: - - type: Transform - pos: 14.5,25.5 - parent: 2 - - uid: 388 - components: - - type: Transform - pos: 11.5,25.5 - parent: 2 -- proto: AirlockMusicianLocked - entities: - - uid: 431 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 2 -- proto: AirlockQuartermasterGlassLocked - entities: - - uid: 389 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 -- proto: AirlockReporterLocked - entities: - - uid: 424 - components: - - type: Transform - pos: -14.5,24.5 - parent: 2 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 390 - components: - - type: Transform - pos: -47.5,38.5 - parent: 2 -- proto: AirlockSalvageGlassLocked - entities: - - uid: 391 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 - - uid: 392 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 2 -- proto: AirlockSalvageLocked - entities: - - uid: 393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-28.5 - parent: 2 -- proto: AirlockScienceGlass - entities: - - uid: 394 - components: - - type: Transform - pos: -25.5,26.5 - parent: 2 - - uid: 395 - components: - - type: Transform - pos: -25.5,25.5 - parent: 2 -- proto: AirlockScienceGlassLocked - entities: - - uid: 396 - components: - - type: Transform - pos: -43.5,33.5 - parent: 2 - - uid: 397 - components: - - type: Transform - pos: -40.5,24.5 - parent: 2 - - uid: 398 - components: - - type: Transform - pos: -33.5,26.5 - parent: 2 - - uid: 399 - components: - - type: Transform - pos: -42.5,24.5 - parent: 2 - - uid: 400 - components: - - type: Transform - pos: -41.5,30.5 - parent: 2 - - uid: 401 - components: - - type: Transform - pos: -51.5,33.5 - parent: 2 - - uid: 402 - components: - - type: Transform - pos: -51.5,36.5 - parent: 2 -- proto: AirlockScienceLocked - entities: - - uid: 403 - components: - - type: Transform - pos: -42.5,35.5 - parent: 2 - - uid: 404 - components: - - type: Transform - pos: -39.5,38.5 - parent: 2 - - uid: 405 - components: - - type: Transform - pos: -46.5,31.5 - parent: 2 -- proto: AirlockSecurityGlass - entities: - - uid: 406 - components: - - type: Transform - pos: -54.5,-4.5 - parent: 2 - - uid: 407 - components: - - type: Transform - pos: -54.5,-2.5 - parent: 2 - - uid: 408 - components: - - type: Transform - pos: -49.5,-15.5 - parent: 2 - - uid: 409 - components: - - type: Transform - pos: -58.5,-15.5 - parent: 2 - - uid: 410 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 2 - - uid: 411 - components: - - type: Transform - pos: -58.5,-13.5 - parent: 2 - - uid: 412 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 2 - - uid: 413 - components: - - type: Transform - pos: -51.5,2.5 - parent: 2 - - uid: 414 - components: - - type: Transform - pos: -55.5,-5.5 - parent: 2 - - uid: 415 - components: - - type: Transform - pos: -56.5,-5.5 - parent: 2 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 84 - components: - - type: Transform - pos: -41.5,-15.5 - parent: 2 - - type: DeviceLinkSink - links: - - 753 - - uid: 90 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - type: DeviceLinkSink - links: - - 754 - - uid: 92 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 2 - - type: DeviceLinkSink - links: - - 752 - - uid: 93 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 2 - - type: DeviceLinkSink - links: - - 751 - - uid: 416 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 2 - - uid: 417 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 2 - - uid: 418 - components: - - type: Transform - pos: -53.5,-8.5 - parent: 2 - - uid: 419 - components: - - type: Transform - pos: -53.5,-9.5 - parent: 2 -- proto: AirlockSecurityLawyerGlassLocked - entities: - - uid: 82 - components: - - type: Transform - pos: -26.5,-9.5 - parent: 2 - - uid: 83 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 2 - - uid: 85 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 2 - - uid: 86 - components: - - type: Transform - pos: -24.5,-6.5 - parent: 2 - - uid: 87 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - - uid: 88 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 89 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - uid: 91 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 2 -- proto: AirlockSecurityLawyerLocked - entities: - - uid: 95 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 2 - - uid: 96 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 2 -- proto: AirlockSecurityLocked - entities: - - uid: 420 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 2 - - uid: 421 - components: - - type: Transform - pos: -46.5,-11.5 - parent: 2 -- proto: AirlockServiceGlassLocked - entities: - - uid: 422 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 2 - - uid: 423 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 2 -- proto: AirlockServiceLocked - entities: - - uid: 426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-13.5 - parent: 2 -- proto: AirlockTheatreLocked - entities: - - uid: 429 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - uid: 430 - components: - - type: Transform - pos: -34.5,8.5 - parent: 2 -- proto: AirlockVirologyLocked - entities: - - uid: 432 - components: - - type: Transform - pos: 24.5,13.5 - parent: 2 -- proto: AirSensor - entities: - - uid: 433 - components: - - type: Transform - pos: -16.5,-27.5 - parent: 2 - - uid: 434 - components: - - type: Transform - pos: -18.5,-38.5 - parent: 2 - - uid: 435 - components: - - type: Transform - pos: -28.5,-76.5 - parent: 2 - - uid: 436 - components: - - type: Transform - pos: -21.5,-76.5 - parent: 2 - - uid: 437 - components: - - type: Transform - pos: -4.5,-76.5 - parent: 2 - - uid: 438 - components: - - type: Transform - pos: -15.5,-71.5 - parent: 2 - - uid: 439 - components: - - type: Transform - pos: -15.5,-81.5 - parent: 2 - - uid: 440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-48.5 - parent: 2 - - uid: 441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 2 - - uid: 442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-38.5 - parent: 2 -- proto: AltarSpawner - entities: - - uid: 443 - components: - - type: Transform - pos: -29.5,30.5 - parent: 2 -- proto: AlwaysPoweredLightPostSmallRed - entities: - - uid: 444 - components: - - type: Transform - pos: -9.5,-87.5 - parent: 2 - - uid: 445 - components: - - type: Transform - pos: 2.5,-72.5 - parent: 2 - - uid: 446 - components: - - type: Transform - pos: -23.5,-67.5 - parent: 2 - - uid: 447 - components: - - type: Transform - pos: -10.5,-68.5 - parent: 2 - - uid: 448 - components: - - type: Transform - pos: -36.5,-71.5 - parent: 2 - - uid: 449 - components: - - type: Transform - pos: -21.5,-88.5 - parent: 2 - - uid: 450 - components: - - type: Transform - pos: -36.5,-82.5 - parent: 2 - - uid: 451 - components: - - type: Transform - pos: 2.5,-82.5 - parent: 2 -- proto: AlwaysPoweredSmallLightMaintenanceRed - entities: - - uid: 452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,3.5 - parent: 2 -- proto: AmeController - entities: - - uid: 453 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 2 -- proto: AmeJar - entities: - - uid: 454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.616076,-27.316935 - parent: 2 - - uid: 455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.366076,-27.5202 - parent: 2 -- proto: AmePartFlatpack - entities: - - uid: 457 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 2 - - uid: 458 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 2 - - uid: 459 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 2 - - uid: 460 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 2 - - uid: 461 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 2 - - uid: 462 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 2 -- proto: AmmoniaCanister - entities: - - uid: 3165 - components: - - type: Transform - pos: -12.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: AnomalyScanner - entities: - - uid: 463 - components: - - type: Transform - pos: -44.434406,43.696514 - parent: 2 -- proto: AnomalyVesselCircuitboard - entities: - - uid: 464 - components: - - type: Transform - pos: -14.321217,-30.478264 - parent: 2 -- proto: APCBasic - entities: - - uid: 465 - components: - - type: MetaData - name: APC (Logi, North) - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 2 - - uid: 466 - components: - - type: MetaData - name: APC (Eng, Atmos) - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-40.5 - parent: 2 - - uid: 467 - components: - - type: MetaData - name: APC (Hydroponics) - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,8.5 - parent: 2 - - uid: 468 - components: - - type: MetaData - name: APC (Medical Outpost) - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,0.5 - parent: 2 - - uid: 469 - components: - - type: MetaData - name: APC (Sec, West) - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 470 - components: - - type: MetaData - name: APC (AI, North) - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-72.5 - parent: 2 - - uid: 471 - components: - - type: MetaData - name: APC (AI, West) - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-80.5 - parent: 2 - - uid: 472 - components: - - type: MetaData - name: APC (AI, East) - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-76.5 - parent: 2 - - uid: 473 - components: - - type: MetaData - name: APC (Evac, Primary) - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,18.5 - parent: 2 - - uid: 474 - components: - - type: MetaData - name: APC (Kitchen) - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 475 - components: - - type: MetaData - name: APC (Dorms/Cryosleep) - - type: Transform - pos: -35.5,16.5 - parent: 2 - - uid: 476 - components: - - type: MetaData - name: APC (Boxing ring) - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,9.5 - parent: 2 - - uid: 477 - components: - - type: MetaData - name: APC (Med, Virology) - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 2 - - uid: 478 - components: - - type: MetaData - name: APC (Med, Surgery) - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,24.5 - parent: 2 - - uid: 479 - components: - - type: MetaData - name: APC (Med, Genetics) - - type: Transform - pos: 21.5,27.5 - parent: 2 - - uid: 480 - components: - - type: MetaData - name: APC (Kitchen, Alternate) - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 2 - - uid: 481 - components: - - type: MetaData - name: APC (Epi, West) - - type: Transform - pos: -48.5,38.5 - parent: 2 - - uid: 482 - components: - - type: MetaData - name: APC (Epi, Central) - - type: Transform - pos: -41.5,35.5 - parent: 2 - - uid: 483 - components: - - type: MetaData - name: APC (Epi, Chapel) - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,30.5 - parent: 2 - - uid: 484 - components: - - type: MetaData - name: APC (Reporter/Lawyer) - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,20.5 - parent: 2 - - uid: 485 - components: - - type: MetaData - name: APC (Hall, Central) - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,3.5 - parent: 2 - - uid: 486 - components: - - type: MetaData - name: APC (Hall, Northeast) - - type: Transform - pos: -7.5,27.5 - parent: 2 - - uid: 487 - components: - - type: MetaData - name: APC (Bar) - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 2 - - uid: 488 - components: - - type: MetaData - name: APC (Bridge, Captain) - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,39.5 - parent: 2 - - uid: 489 - components: - - type: MetaData - name: APC (Sec, East) - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-10.5 - parent: 2 - - uid: 490 - components: - - type: MetaData - name: APC (Central Maintenance) - - type: Transform - pos: 2.5,8.5 - parent: 2 - - uid: 491 - components: - - type: MetaData - name: APC (Med, Chemistry) - - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 492 - components: - - type: MetaData - name: APC (HoP office) - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 493 - components: - - type: MetaData - name: APC (Arrivals) - - type: Transform - pos: 36.5,-17.5 - parent: 2 - - uid: 494 - components: - - type: MetaData - name: APC (Hall, East) - - type: Transform - pos: 5.5,2.5 - parent: 2 - - uid: 495 - components: - - type: MetaData - name: APC (Hall, South Central) - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-2.5 - parent: 2 - - uid: 496 - components: - - type: MetaData - name: APC (Hall, South) - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-14.5 - parent: 2 - - uid: 497 - components: - - type: MetaData - name: APC (Hall, West) - - type: Transform - pos: -39.5,8.5 - parent: 2 - - uid: 498 - components: - - type: MetaData - name: APC (Bridge) - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,37.5 - parent: 2 - - uid: 499 - components: - - type: MetaData - name: APC (Hall, North) - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,29.5 - parent: 2 - - uid: 500 - components: - - type: MetaData - name: APC (Courtroom) - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,41.5 - parent: 2 - - uid: 501 - components: - - type: MetaData - name: APC (Vault) - - type: Transform - pos: -0.5,21.5 - parent: 2 - - uid: 502 - components: - - type: MetaData - name: APC (Hall, West Central) - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,10.5 - parent: 2 - - uid: 1660 - components: - - type: MetaData - name: APC (Solars, East) - - type: Transform - pos: 44.5,14.5 - parent: 2 - - uid: 11697 - components: - - type: MetaData - name: APC (Solars, North) - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,50.5 - parent: 2 -- proto: APCHighCapacity - entities: - - uid: 503 - components: - - type: MetaData - name: APC (Sec, Armory) - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 - parent: 2 - - uid: 504 - components: - - type: MetaData - name: APC (Logi, Dock) - - type: Transform - pos: 16.5,-23.5 - parent: 2 - - uid: 505 - components: - - type: MetaData - name: APC (Eng, North) - - type: Transform - pos: -8.5,-25.5 - parent: 2 - - type: Apc - hasAccess: True - lastExternalState: Good - lastChargeState: Full - - uid: 506 - components: - - type: MetaData - name: APC (Sec, Perma) - - type: Transform - pos: -52.5,-7.5 - parent: 2 - - uid: 507 - components: - - type: MetaData - name: APC (Eng, South) - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-38.5 - parent: 2 - - uid: 508 - components: - - type: MetaData - name: APC (Logi, South) - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-11.5 - parent: 2 - - uid: 509 - components: - - type: MetaData - name: APC (Disposals) - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-21.5 - parent: 2 - - uid: 510 - components: - - type: MetaData - name: APC (Eng, AME) - - type: Transform - pos: 5.5,-22.5 - parent: 2 - - uid: 511 - components: - - type: MetaData - name: APC (Logi, Maintenance) - - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 17801 - components: - - type: MetaData - name: APC (Eng, Supermatter) - - type: Transform - pos: -29.5,-29.5 - parent: 2 -- proto: AppleSeeds - entities: - - uid: 512 - components: - - type: Transform - pos: 32.64337,-12.701023 - parent: 2 -- proto: ArtifactAnalyzerMachineCircuitboard - entities: - - uid: 513 - components: - - type: Transform - pos: -14.623301,-30.68674 - parent: 2 -- proto: AtmosDeviceFanTiny - entities: - - uid: 514 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 - - uid: 515 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - - uid: 516 - components: - - type: Transform - pos: -11.5,15.5 - parent: 2 - - uid: 517 - components: - - type: Transform - pos: -11.5,10.5 - parent: 2 - - uid: 518 - components: - - type: Transform - pos: -14.5,16.5 - parent: 2 - - uid: 519 - components: - - type: Transform - pos: 19.5,-35.5 - parent: 2 - - uid: 520 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 2 - - uid: 521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,5.5 - parent: 2 - - uid: 522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,31.5 - parent: 2 - - uid: 523 - components: - - type: Transform - pos: -54.5,11.5 - parent: 2 - - uid: 524 - components: - - type: Transform - pos: -54.5,13.5 - parent: 2 - - uid: 525 - components: - - type: Transform - pos: -54.5,19.5 - parent: 2 - - uid: 526 - components: - - type: Transform - pos: -54.5,21.5 - parent: 2 - - uid: 527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-19.5 - parent: 2 - - uid: 528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 2 - - uid: 529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-11.5 - parent: 2 - - uid: 530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-9.5 - parent: 2 - - uid: 531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-24.5 - parent: 2 - - uid: 532 - components: - - type: Transform - pos: 43.5,-3.5 - parent: 2 - - uid: 533 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 2 - - uid: 534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-24.5 - parent: 2 - - uid: 535 - components: - - type: Transform - pos: -31.5,42.5 - parent: 2 -- proto: AtmosFixBlockerMarker - entities: - - uid: 536 - components: - - type: Transform - pos: -61.5,31.5 - parent: 2 - - uid: 537 - components: - - type: Transform - pos: -62.5,37.5 - parent: 2 - - uid: 538 - components: - - type: Transform - pos: -61.5,37.5 - parent: 2 - - uid: 539 - components: - - type: Transform - pos: -62.5,31.5 - parent: 2 - - uid: 540 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 2 - - uid: 541 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 2 - - uid: 542 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 2 - - uid: 543 - components: - - type: Transform - pos: 7.5,-51.5 - parent: 2 - - uid: 544 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 2 - - uid: 545 - components: - - type: Transform - pos: 5.5,-51.5 - parent: 2 -- proto: AtmosFixFreezerMarker - entities: - - uid: 546 - components: - - type: Transform - pos: -15.5,9.5 - parent: 2 - - uid: 547 - components: - - type: Transform - pos: -15.5,10.5 - parent: 2 - - uid: 548 - components: - - type: Transform - pos: -15.5,11.5 - parent: 2 - - uid: 549 - components: - - type: Transform - pos: -15.5,12.5 - parent: 2 - - uid: 550 - components: - - type: Transform - pos: -15.5,13.5 - parent: 2 - - uid: 551 - components: - - type: Transform - pos: -15.5,14.5 - parent: 2 - - uid: 552 - components: - - type: Transform - pos: -15.5,15.5 - parent: 2 - - uid: 553 - components: - - type: Transform - pos: -14.5,9.5 - parent: 2 - - uid: 554 - components: - - type: Transform - pos: -14.5,10.5 - parent: 2 - - uid: 555 - components: - - type: Transform - pos: -14.5,11.5 - parent: 2 - - uid: 556 - components: - - type: Transform - pos: -14.5,12.5 - parent: 2 - - uid: 557 - components: - - type: Transform - pos: -14.5,13.5 - parent: 2 - - uid: 558 - components: - - type: Transform - pos: -14.5,14.5 - parent: 2 - - uid: 559 - components: - - type: Transform - pos: -14.5,15.5 - parent: 2 - - uid: 560 - components: - - type: Transform - pos: -13.5,9.5 - parent: 2 - - uid: 561 - components: - - type: Transform - pos: -13.5,10.5 - parent: 2 - - uid: 562 - components: - - type: Transform - pos: -13.5,11.5 - parent: 2 - - uid: 563 - components: - - type: Transform - pos: -13.5,12.5 - parent: 2 - - uid: 564 - components: - - type: Transform - pos: -13.5,13.5 - parent: 2 - - uid: 565 - components: - - type: Transform - pos: -13.5,14.5 - parent: 2 - - uid: 566 - components: - - type: Transform - pos: -13.5,15.5 - parent: 2 - - uid: 567 - components: - - type: Transform - pos: -12.5,9.5 - parent: 2 - - uid: 568 - components: - - type: Transform - pos: -12.5,10.5 - parent: 2 - - uid: 569 - components: - - type: Transform - pos: -12.5,11.5 - parent: 2 - - uid: 570 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - - uid: 571 - components: - - type: Transform - pos: -12.5,13.5 - parent: 2 - - uid: 572 - components: - - type: Transform - pos: -12.5,14.5 - parent: 2 - - uid: 573 - components: - - type: Transform - pos: -12.5,15.5 - parent: 2 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 574 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 2 - - uid: 575 - components: - - type: Transform - pos: 6.5,-43.5 - parent: 2 - - uid: 576 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 2 -- proto: AtmosFixOxygenMarker - entities: - - uid: 577 - components: - - type: Transform - pos: 6.5,-45.5 - parent: 2 - - uid: 578 - components: - - type: Transform - pos: 5.5,-45.5 - parent: 2 - - uid: 579 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 2 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 580 - components: - - type: Transform - pos: 5.5,-49.5 - parent: 2 - - uid: 581 - components: - - type: Transform - pos: 6.5,-49.5 - parent: 2 - - uid: 582 - components: - - type: Transform - pos: 7.5,-49.5 - parent: 2 -- proto: Autolathe - entities: - - uid: 583 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 2 - - uid: 585 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 -- proto: AutolatheMachineCircuitboard - entities: - - uid: 586 - components: - - type: Transform - pos: -14.2691345,-30.29063 - parent: 2 -- proto: BalloonSyn - entities: - - uid: 587 - components: - - type: MetaData - desc: A balloon for those who passed boot camp. - name: security balloon - - type: Transform - pos: -17.78467,39.023205 - parent: 2 -- proto: BannerNanotrasen - entities: - - uid: 588 - components: - - type: Transform - pos: -25.5,44.5 - parent: 2 - - uid: 589 - components: - - type: Transform - pos: -21.5,44.5 - parent: 2 -- proto: BarSign - entities: - - uid: 590 - components: - - type: Transform - pos: 4.5,36.5 - parent: 2 -- proto: BarSignKlubSkub - entities: - - uid: 591 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 2 -- proto: BaseComputer - entities: - - uid: 592 - components: - - type: Transform - pos: -25.5,-78.5 - parent: 2 - - uid: 593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-18.5 - parent: 2 - - uid: 594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-73.5 - parent: 2 - - uid: 595 - components: - - type: Transform - pos: -24.5,-78.5 - parent: 2 - - uid: 596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-82.5 - parent: 2 - - uid: 597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-74.5 - parent: 2 - - uid: 598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-73.5 - parent: 2 - - uid: 599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-79.5 - parent: 2 - - uid: 600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 - parent: 2 - - uid: 601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 - parent: 2 - - uid: 17652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-37.5 - parent: 2 -- proto: BeachBall - entities: - - uid: 602 - components: - - type: Transform - pos: -30.748747,16.493372 - parent: 2 -- proto: Beaker - entities: - - uid: 603 - components: - - type: Transform - pos: -28.796272,3.7424812 - parent: 2 - - uid: 604 - components: - - type: Transform - pos: 15.66956,20.960335 - parent: 2 - - uid: 605 - components: - - type: Transform - pos: -35.777054,27.882532 - parent: 2 - - uid: 606 - components: - - type: Transform - pos: -35.620804,27.679266 - parent: 2 - - uid: 607 - components: - - type: Transform - pos: 19.67959,20.592115 - parent: 2 - - type: SolutionContainerManager - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: Cryoxadone - Quantity: 50 -- proto: Bed - entities: - - uid: 608 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 2 - - uid: 609 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 2 - - uid: 610 - components: - - type: Transform - pos: -43.5,-11.5 - parent: 2 - - uid: 611 - components: - - type: Transform - pos: -43.5,-14.5 - parent: 2 - - uid: 612 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 2 - - uid: 613 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 2 - - uid: 614 - components: - - type: Transform - pos: 0.5,-31.5 - parent: 2 - - uid: 615 - components: - - type: Transform - pos: -38.5,9.5 - parent: 2 - - uid: 616 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 2 - - uid: 617 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 2 - - uid: 618 - components: - - type: Transform - pos: 28.5,15.5 - parent: 2 - - uid: 619 - components: - - type: Transform - pos: 28.5,13.5 - parent: 2 - - uid: 620 - components: - - type: Transform - pos: 2.5,40.5 - parent: 2 - - uid: 621 - components: - - type: Transform - pos: -33.5,9.5 - parent: 2 - - uid: 622 - components: - - type: Transform - pos: 27.5,9.5 - parent: 2 - - uid: 623 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - - uid: 624 - components: - - type: Transform - pos: -30.5,9.5 - parent: 2 - - uid: 626 - components: - - type: MetaData - name: couch - - type: Transform - pos: 9.5,24.5 - parent: 2 - - uid: 627 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 2 - - uid: 628 - components: - - type: Transform - pos: 33.5,15.5 - parent: 2 - - uid: 629 - components: - - type: Transform - pos: -34.5,31.5 - parent: 2 - - uid: 630 - components: - - type: Transform - pos: -33.5,37.5 - parent: 2 - - uid: 5969 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 2 -- proto: BedsheetBlack - entities: - - uid: 632 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 2 - - uid: 633 - components: - - type: Transform - pos: -33.5,37.5 - parent: 2 -- proto: BedsheetBrown - entities: - - uid: 634 - components: - - type: Transform - pos: -34.5,31.5 - parent: 2 -- proto: BedsheetCaptain - entities: - - uid: 635 - components: - - type: Transform - pos: 2.5,40.5 - parent: 2 -- proto: BedsheetCE - entities: - - uid: 636 - components: - - type: Transform - pos: 0.5,-31.5 - parent: 2 -- proto: BedsheetClown - entities: - - uid: 637 - components: - - type: Transform - pos: -33.5,9.5 - parent: 2 -- proto: BedsheetCosmos - entities: - - uid: 638 - components: - - type: Transform - pos: -12.5,-9.5 - parent: 2 -- proto: BedsheetGreen - entities: - - uid: 639 - components: - - type: Transform - pos: 28.5,13.5 - parent: 2 - - uid: 640 - components: - - type: Transform - pos: 28.5,15.5 - parent: 2 -- proto: BedsheetHOS - entities: - - uid: 5841 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 2 -- proto: BedsheetMedical - entities: - - uid: 642 - components: - - type: Transform - pos: -33.5,1.5 - parent: 2 - - uid: 643 - components: - - type: Transform - pos: -32.5,1.5 - parent: 2 - - uid: 644 - components: - - type: Transform - pos: -33.5,3.5 - parent: 2 - - uid: 645 - components: - - type: Transform - pos: -32.5,3.5 - parent: 2 - - uid: 646 - components: - - type: Transform - pos: 17.5,3.5 - parent: 2 - - uid: 647 - components: - - type: Transform - pos: 19.5,3.5 - parent: 2 - - uid: 648 - components: - - type: Transform - pos: 19.5,5.5 - parent: 2 - - uid: 649 - components: - - type: Transform - pos: 17.5,5.5 - parent: 2 - - uid: 650 - components: - - type: Transform - pos: 23.5,3.5 - parent: 2 - - uid: 651 - components: - - type: Transform - pos: 21.5,3.5 - parent: 2 - - uid: 652 - components: - - type: Transform - pos: 21.5,5.5 - parent: 2 - - uid: 653 - components: - - type: Transform - pos: 23.5,5.5 - parent: 2 -- proto: BedsheetMime - entities: - - uid: 654 - components: - - type: Transform - pos: -38.5,9.5 - parent: 2 -- proto: BedsheetOrange - entities: - - uid: 655 - components: - - type: Transform - pos: -43.5,-11.5 - parent: 2 - - uid: 656 - components: - - type: Transform - pos: -43.5,-14.5 - parent: 2 - - uid: 657 - components: - - type: Transform - pos: -40.5,-18.5 - parent: 2 - - uid: 658 - components: - - type: Transform - pos: -34.5,-18.5 - parent: 2 - - uid: 659 - components: - - type: Transform - pos: 27.5,9.5 - parent: 2 - - uid: 660 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 -- proto: BedsheetQM - entities: - - uid: 661 - components: - - type: Transform - pos: 3.5,-16.5 - parent: 2 -- proto: BedsheetSpawner - entities: - - uid: 662 - components: - - type: Transform - pos: 8.5,-32.5 - parent: 2 - - uid: 663 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 2 - - uid: 665 - components: - - type: Transform - pos: -55.5,-17.5 - parent: 2 - - uid: 666 - components: - - type: Transform - pos: -59.5,-16.5 - parent: 2 - - uid: 667 - components: - - type: Transform - pos: -53.5,-17.5 - parent: 2 - - uid: 668 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - uid: 669 - components: - - type: Transform - pos: -58.5,-11.5 - parent: 2 - - uid: 670 - components: - - type: Transform - pos: -30.5,9.5 - parent: 2 -- proto: BedsheetUSA - entities: - - uid: 672 - components: - - type: Transform - pos: 33.5,15.5 - parent: 2 -- proto: BiomassReclaimer - entities: - - uid: 673 - components: - - type: Transform - pos: 27.5,22.5 - parent: 2 -- proto: BlastDoor - entities: - - uid: 674 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 675 - components: - - type: Transform - pos: -53.5,38.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13605 - - uid: 676 - components: - - type: Transform - pos: 18.5,-35.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 677 - components: - - type: Transform - pos: 22.5,-35.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 678 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-48.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13593 - - uid: 680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-49.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13593 -- proto: BlastDoorOpen - entities: - - uid: 671 - components: - - type: Transform - pos: 3.5,38.5 - parent: 2 - - type: DeviceLinkSink - links: - - 12262 - - uid: 681 - components: - - type: Transform - pos: 3.5,39.5 - parent: 2 - - type: DeviceLinkSink - links: - - 12262 - - uid: 682 - components: - - type: Transform - pos: 2.5,42.5 - parent: 2 - - type: DeviceLinkSink - links: - - 12262 - - uid: 684 - components: - - type: Transform - pos: -14.5,44.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13594 - - uid: 685 - components: - - type: Transform - pos: -8.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 686 - components: - - type: Transform - pos: -6.5,44.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 687 - components: - - type: Transform - pos: -12.5,44.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 688 - components: - - type: Transform - pos: -5.5,43.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 689 - components: - - type: Transform - pos: -13.5,44.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 690 - components: - - type: Transform - pos: -5.5,44.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 691 - components: - - type: Transform - pos: -12.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 692 - components: - - type: Transform - pos: -9.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 693 - components: - - type: Transform - pos: -7.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 694 - components: - - type: Transform - pos: -11.5,45.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 695 - components: - - type: Transform - pos: -10.5,45.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13594 - - uid: 696 - components: - - type: Transform - pos: -7.5,44.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 - - uid: 697 - components: - - type: Transform - pos: -14.5,43.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 2 - links: - - 13594 -- proto: BoardGameSpawner - entities: - - uid: 698 - components: - - type: Transform - pos: -58.5,-3.5 - parent: 2 -- proto: BodyBag_Container - entities: - - uid: 699 - components: - - type: Transform - pos: -35.45156,37.595173 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: Bonfire - entities: - - uid: 700 - components: - - type: Transform - pos: -61.5,-8.5 - parent: 2 -- proto: BookInspiration - entities: - - uid: 701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.481606,-0.1413793 - parent: 2 -- proto: BookRandom - entities: - - uid: 702 - components: - - type: Transform - pos: -52.64169,-0.29077882 - parent: 2 - - uid: 703 - components: - - type: Transform - pos: -52.61044,-0.38452882 - parent: 2 - - uid: 704 - components: - - type: Transform - pos: -52.594814,-0.22827882 - parent: 2 - - uid: 705 - components: - - type: Transform - pos: 5.3378663,-39.404938 - parent: 2 -- proto: BookshelfFilled - entities: - - uid: 706 - components: - - type: Transform - pos: -21.5,23.5 - parent: 2 - - uid: 707 - components: - - type: Transform - pos: -53.5,-0.5 - parent: 2 - - uid: 708 - components: - - type: Transform - pos: -50.5,30.5 - parent: 2 - - uid: 709 - components: - - type: Transform - pos: -48.5,30.5 - parent: 2 - - uid: 710 - components: - - type: Transform - pos: -49.5,30.5 - parent: 2 - - uid: 711 - components: - - type: Transform - pos: -52.5,1.5 - parent: 2 - - uid: 712 - components: - - type: Transform - pos: -50.5,1.5 - parent: 2 -- proto: BoozeDispenser - entities: - - uid: 713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 2 - - uid: 714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-10.5 - parent: 2 - - uid: 715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,33.5 - parent: 2 -- proto: BorgCharger - entities: - - uid: 716 - components: - - type: Transform - pos: 23.5,-22.5 - parent: 2 - - uid: 717 - components: - - type: Transform - pos: -12.5,-24.5 - parent: 2 - - uid: 718 - components: - - type: Transform - pos: -17.5,-78.5 - parent: 2 - - uid: 719 - components: - - type: Transform - pos: -14.5,-78.5 - parent: 2 - - uid: 720 - components: - - type: Transform - pos: -38.5,40.5 - parent: 2 -- proto: BoxBeaker - entities: - - uid: 721 - components: - - type: Transform - pos: 16.393906,13.819341 - parent: 2 - - uid: 722 - components: - - type: Transform - pos: -19.70403,7.0739126 - parent: 2 -- proto: BoxBeanbag - entities: - - uid: 723 - components: - - type: Transform - pos: -25.517311,-14.518888 - parent: 2 -- proto: BoxBodyBag - entities: - - uid: 724 - components: - - type: Transform - pos: 28.351997,18.416313 - parent: 2 -- proto: BoxCardboard - entities: - - uid: 725 - components: - - type: Transform - pos: 4.277172,-3.2468963 - parent: 2 - - uid: 726 - components: - - type: Transform - pos: 4.558422,-3.5283408 - parent: 2 -- proto: BoxCartridgeCap - entities: - - uid: 727 - components: - - type: Transform - pos: -38.322617,10.103517 - parent: 2 -- proto: BoxFlare - entities: - - uid: 728 - components: - - type: Transform - pos: 9.308822,-45.509903 - parent: 2 -- proto: BoxFolderBase - entities: - - uid: 729 - components: - - type: Transform - pos: -12.023532,-73.5315 - parent: 2 - - uid: 730 - components: - - type: Transform - pos: -22.653774,-78.40514 - parent: 2 - - uid: 731 - components: - - type: Transform - pos: -49.575344,27.306631 - parent: 2 -- proto: BoxFolderBlack - entities: - - uid: 732 - components: - - type: Transform - pos: 8.682952,26.581984 - parent: 2 -- proto: BoxFolderBlue - entities: - - uid: 733 - components: - - type: Transform - pos: -10.038057,34.838547 - parent: 2 - - uid: 734 - components: - - type: Transform - pos: -26.280434,41.61994 - parent: 2 -- proto: BoxFolderRed - entities: - - uid: 735 - components: - - type: Transform - pos: -21.186684,41.65119 - parent: 2 -- proto: BoxFolderYellow - entities: - - uid: 736 - components: - - type: Transform - pos: 8.7060175,-4.32035 - parent: 2 -- proto: BoxInflatable - entities: - - uid: 13713 - components: - - type: Transform - pos: -18.712307,-45.33811 - parent: 2 -- proto: BoxingBell - entities: - - uid: 17473 - components: - - type: Transform - pos: 34.5,12.5 - parent: 2 -- proto: BoxLethalshot - entities: - - uid: 737 - components: - - type: Transform - pos: -43.540894,0.6267514 - parent: 2 - - uid: 738 - components: - - type: Transform - pos: -40.613728,-4.5623055 - parent: 2 -- proto: BoxLightMixed - entities: - - uid: 739 - components: - - type: Transform - pos: 22.693903,-24.2228 - parent: 2 - - uid: 740 - components: - - type: Transform - pos: -1.2286556,10.361396 - parent: 2 - - uid: 741 - components: - - type: Transform - pos: 19.77802,-11.275881 - parent: 2 -- proto: BoxMaintenanceLightbulb - entities: - - uid: 742 - components: - - type: Transform - pos: 22.370987,-24.452126 - parent: 2 - - uid: 743 - components: - - type: Transform - pos: -0.9890723,10.705385 - parent: 2 -- proto: BoxMouthSwab - entities: - - uid: 744 - components: - - type: Transform - pos: 28.507938,12.615709 - parent: 2 -- proto: BoxNitrileGloves - entities: - - uid: 745 - components: - - type: Transform - pos: 8.360393,9.476925 - parent: 2 -- proto: BoxShotgunIncendiary - entities: - - uid: 746 - components: - - type: Transform - pos: -43.32206,0.5062567 - parent: 2 -- proto: BoxShotgunSlug - entities: - - uid: 747 - components: - - type: Transform - pos: -40.363728,-4.3682694 - parent: 2 -- proto: BoxSyringe - entities: - - uid: 748 - components: - - type: Transform - pos: 19.669752,9.553038 - parent: 2 -- proto: BoxZiptie - entities: - - uid: 749 - components: - - type: Transform - pos: -26.289627,-11.244784 - parent: 2 -- proto: BrbSign - entities: - - uid: 750 - components: - - type: Transform - pos: 19.917723,-3.4989886 - parent: 2 -- proto: BrigTimer - entities: - - uid: 751 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 2 - - type: SignalTimer - label: CEL-1 - - type: DeviceLinkSource - linkedPorts: - 93: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 752 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - type: SignalTimer - label: CEL-3 - - type: DeviceLinkSource - linkedPorts: - 92: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 753 - components: - - type: Transform - pos: -41.5,-13.5 - parent: 2 - - type: SignalTimer - label: CEL-2 - - type: DeviceLinkSource - linkedPorts: - 84: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 754 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - - type: SignalTimer - label: CEL-4 - - type: DeviceLinkSource - linkedPorts: - 90: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-15.5 - parent: 2 - - uid: 756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-15.5 - parent: 2 - - uid: 757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-15.5 - parent: 2 - - uid: 758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-15.5 - parent: 2 - - uid: 759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-13.5 - parent: 2 -- proto: Bucket - entities: - - uid: 760 - components: - - type: Transform - pos: -17.40326,4.298378 - parent: 2 - - uid: 761 - components: - - type: Transform - pos: 1.2489537,10.331755 - parent: 2 - - uid: 762 - components: - - type: Transform - pos: 33.375,-12.461527 - parent: 2 - - uid: 763 - components: - - type: Transform - pos: -62.556114,-6.1310325 - parent: 2 - - uid: 764 - components: - - type: Transform - pos: 22.126427,-14.634353 - parent: 2 - - uid: 765 - components: - - type: Transform - pos: 1.4052037,10.873797 - parent: 2 - - uid: 6092 - components: - - type: Transform - pos: -25.087479,-44.991642 - parent: 2 -- proto: ButtonFrameCaution - entities: - - uid: 17678 - components: - - type: Transform - pos: -20.5,-35.5 - parent: 2 - - uid: 17808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-32.5 - parent: 2 - - uid: 17809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-41.5 - parent: 2 - - uid: 17810 - components: - - type: Transform - pos: -28.5,-44.5 - parent: 2 - - uid: 17811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-41.5 - parent: 2 -- proto: ButtonFrameCautionSecurity - entities: - - uid: 17679 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 2 -- proto: CableApcExtension - entities: - - uid: 683 - components: - - type: Transform - pos: -33.5,18.5 - parent: 2 - - uid: 766 - components: - - type: Transform - pos: -17.5,4.5 - parent: 2 - - uid: 767 - components: - - type: Transform - pos: 19.5,18.5 - parent: 2 - - uid: 768 - components: - - type: Transform - pos: 14.5,-25.5 - parent: 2 - - uid: 769 - components: - - type: Transform - pos: -31.5,-1.5 - parent: 2 - - uid: 770 - components: - - type: Transform - pos: -57.5,-3.5 - parent: 2 - - uid: 771 - components: - - type: Transform - pos: -58.5,-3.5 - parent: 2 - - uid: 772 - components: - - type: Transform - pos: -31.5,-0.5 - parent: 2 - - uid: 774 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 775 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 2 - - uid: 776 - components: - - type: Transform - pos: 3.5,34.5 - parent: 2 - - uid: 777 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 2 - - uid: 778 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 2 - - uid: 779 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 2 - - uid: 780 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 2 - - uid: 781 - components: - - type: Transform - pos: 10.5,-24.5 - parent: 2 - - uid: 782 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 2 - - uid: 783 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 2 - - uid: 784 - components: - - type: Transform - pos: 6.5,-13.5 - parent: 2 - - uid: 785 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 2 - - uid: 786 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 2 - - uid: 787 - components: - - type: Transform - pos: 16.5,-32.5 - parent: 2 - - uid: 788 - components: - - type: Transform - pos: 17.5,-32.5 - parent: 2 - - uid: 789 - components: - - type: Transform - pos: 4.5,-16.5 - parent: 2 - - uid: 790 - components: - - type: Transform - pos: 10.5,-36.5 - parent: 2 - - uid: 791 - components: - - type: Transform - pos: 18.5,-32.5 - parent: 2 - - uid: 792 - components: - - type: Transform - pos: 18.5,-29.5 - parent: 2 - - uid: 793 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - - uid: 794 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - - uid: 795 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 796 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 797 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 2 - - uid: 798 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 - - uid: 799 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 800 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 801 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 802 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 803 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 2 - - uid: 804 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 2 - - uid: 805 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 2 - - uid: 806 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - uid: 807 - components: - - type: Transform - pos: 11.5,-15.5 - parent: 2 - - uid: 808 - components: - - type: Transform - pos: 12.5,-15.5 - parent: 2 - - uid: 809 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 2 - - uid: 810 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - - uid: 811 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 2 - - uid: 812 - components: - - type: Transform - pos: 13.5,-13.5 - parent: 2 - - uid: 813 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 814 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 2 - - uid: 815 - components: - - type: Transform - pos: 10.5,-9.5 - parent: 2 - - uid: 816 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 2 - - uid: 817 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 2 - - uid: 818 - components: - - type: Transform - pos: 13.5,-9.5 - parent: 2 - - uid: 819 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 2 - - uid: 820 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 2 - - uid: 821 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 2 - - uid: 822 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 2 - - uid: 823 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 2 - - uid: 824 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 2 - - uid: 825 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 2 - - uid: 826 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 2 - - uid: 827 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - uid: 828 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 829 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 - - uid: 830 - components: - - type: Transform - pos: -19.5,7.5 - parent: 2 - - uid: 831 - components: - - type: Transform - pos: -19.5,6.5 - parent: 2 - - uid: 832 - components: - - type: Transform - pos: -19.5,8.5 - parent: 2 - - uid: 833 - components: - - type: Transform - pos: -19.5,5.5 - parent: 2 - - uid: 834 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - - uid: 835 - components: - - type: Transform - pos: -19.5,9.5 - parent: 2 - - uid: 836 - components: - - type: Transform - pos: -20.5,10.5 - parent: 2 - - uid: 837 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - - uid: 838 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 - - uid: 839 - components: - - type: Transform - pos: -20.5,13.5 - parent: 2 - - uid: 840 - components: - - type: Transform - pos: -19.5,5.5 - parent: 2 - - uid: 841 - components: - - type: Transform - pos: -19.5,5.5 - parent: 2 - - uid: 842 - components: - - type: Transform - pos: -19.5,5.5 - parent: 2 - - uid: 843 - components: - - type: Transform - pos: -18.5,5.5 - parent: 2 - - uid: 844 - components: - - type: Transform - pos: -20.5,5.5 - parent: 2 - - uid: 845 - components: - - type: Transform - pos: -33.5,0.5 - parent: 2 - - uid: 846 - components: - - type: Transform - pos: -32.5,0.5 - parent: 2 - - uid: 847 - components: - - type: Transform - pos: -31.5,0.5 - parent: 2 - - uid: 848 - components: - - type: Transform - pos: -31.5,1.5 - parent: 2 - - uid: 849 - components: - - type: Transform - pos: -31.5,2.5 - parent: 2 - - uid: 850 - components: - - type: Transform - pos: -30.5,2.5 - parent: 2 - - uid: 851 - components: - - type: Transform - pos: -29.5,2.5 - parent: 2 - - uid: 852 - components: - - type: Transform - pos: -28.5,2.5 - parent: 2 - - uid: 853 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 2 - - uid: 854 - components: - - type: Transform - pos: 20.5,-25.5 - parent: 2 - - uid: 855 - components: - - type: Transform - pos: 6.5,-36.5 - parent: 2 - - uid: 856 - components: - - type: Transform - pos: 17.5,-25.5 - parent: 2 - - uid: 857 - components: - - type: Transform - pos: 15.5,-25.5 - parent: 2 - - uid: 858 - components: - - type: Transform - pos: 14.5,-26.5 - parent: 2 - - uid: 859 - components: - - type: Transform - pos: 17.5,-26.5 - parent: 2 - - uid: 860 - components: - - type: Transform - pos: 17.5,-27.5 - parent: 2 - - uid: 861 - components: - - type: Transform - pos: 20.5,-24.5 - parent: 2 - - uid: 862 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 2 - - uid: 863 - components: - - type: Transform - pos: 15.5,-31.5 - parent: 2 - - uid: 864 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 2 - - uid: 865 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 2 - - uid: 866 - components: - - type: Transform - pos: 21.5,-29.5 - parent: 2 - - uid: 867 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 2 - - uid: 868 - components: - - type: Transform - pos: 20.5,-32.5 - parent: 2 - - uid: 869 - components: - - type: Transform - pos: 19.5,-34.5 - parent: 2 - - uid: 870 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 2 - - uid: 871 - components: - - type: Transform - pos: 21.5,-34.5 - parent: 2 - - uid: 872 - components: - - type: Transform - pos: 21.5,-31.5 - parent: 2 - - uid: 873 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 2 - - uid: 874 - components: - - type: Transform - pos: 21.5,-33.5 - parent: 2 - - uid: 875 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 2 - - uid: 876 - components: - - type: Transform - pos: -2.5,-17.5 - parent: 2 - - uid: 877 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 2 - - uid: 878 - components: - - type: Transform - pos: -8.5,-16.5 - parent: 2 - - uid: 879 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 2 - - uid: 880 - components: - - type: Transform - pos: 18.5,6.5 - parent: 2 - - uid: 881 - components: - - type: Transform - pos: 15.5,-33.5 - parent: 2 - - uid: 882 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 2 - - uid: 883 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 884 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 2 - - uid: 885 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 2 - - uid: 886 - components: - - type: Transform - pos: -13.5,-33.5 - parent: 2 - - uid: 887 - components: - - type: Transform - pos: 17.5,-28.5 - parent: 2 - - uid: 888 - components: - - type: Transform - pos: 17.5,-29.5 - parent: 2 - - uid: 889 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 2 - - uid: 890 - components: - - type: Transform - pos: 14.5,-27.5 - parent: 2 - - uid: 891 - components: - - type: Transform - pos: -43.5,40.5 - parent: 2 - - uid: 892 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 2 - - uid: 893 - components: - - type: Transform - pos: -43.5,41.5 - parent: 2 - - uid: 894 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 895 - components: - - type: Transform - pos: -19.5,34.5 - parent: 2 - - uid: 896 - components: - - type: Transform - pos: -17.5,34.5 - parent: 2 - - uid: 897 - components: - - type: Transform - pos: -16.5,34.5 - parent: 2 - - uid: 898 - components: - - type: Transform - pos: -16.5,24.5 - parent: 2 - - uid: 899 - components: - - type: Transform - pos: -2.5,25.5 - parent: 2 - - uid: 900 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - - uid: 901 - components: - - type: Transform - pos: -17.5,24.5 - parent: 2 - - uid: 902 - components: - - type: Transform - pos: -12.5,26.5 - parent: 2 - - uid: 903 - components: - - type: Transform - pos: -28.5,27.5 - parent: 2 - - uid: 904 - components: - - type: Transform - pos: -27.5,27.5 - parent: 2 - - uid: 905 - components: - - type: Transform - pos: -26.5,27.5 - parent: 2 - - uid: 906 - components: - - type: Transform - pos: -26.5,28.5 - parent: 2 - - uid: 907 - components: - - type: Transform - pos: -46.5,25.5 - parent: 2 - - uid: 908 - components: - - type: Transform - pos: -53.5,20.5 - parent: 2 - - uid: 909 - components: - - type: Transform - pos: -27.5,28.5 - parent: 2 - - uid: 910 - components: - - type: Transform - pos: -53.5,12.5 - parent: 2 - - uid: 911 - components: - - type: Transform - pos: -54.5,37.5 - parent: 2 - - uid: 912 - components: - - type: Transform - pos: -54.5,39.5 - parent: 2 - - uid: 913 - components: - - type: Transform - pos: -54.5,40.5 - parent: 2 - - uid: 914 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 2 - - uid: 915 - components: - - type: Transform - pos: 0.5,-33.5 - parent: 2 - - uid: 916 - components: - - type: Transform - pos: 1.5,-33.5 - parent: 2 - - uid: 917 - components: - - type: Transform - pos: 2.5,-33.5 - parent: 2 - - uid: 918 - components: - - type: Transform - pos: 3.5,-33.5 - parent: 2 - - uid: 919 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 2 - - uid: 920 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 2 - - uid: 921 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 2 - - uid: 922 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 2 - - uid: 923 - components: - - type: Transform - pos: 9.5,-31.5 - parent: 2 - - uid: 924 - components: - - type: Transform - pos: -18.5,34.5 - parent: 2 - - uid: 925 - components: - - type: Transform - pos: 2.5,34.5 - parent: 2 - - uid: 926 - components: - - type: Transform - pos: 1.5,34.5 - parent: 2 - - uid: 927 - components: - - type: Transform - pos: 2.5,33.5 - parent: 2 - - uid: 928 - components: - - type: Transform - pos: 2.5,35.5 - parent: 2 - - uid: 929 - components: - - type: Transform - pos: 1.5,31.5 - parent: 2 - - uid: 930 - components: - - type: Transform - pos: -0.5,31.5 - parent: 2 - - uid: 931 - components: - - type: Transform - pos: 1.5,29.5 - parent: 2 - - uid: 932 - components: - - type: Transform - pos: -0.5,29.5 - parent: 2 - - uid: 933 - components: - - type: Transform - pos: 31.5,27.5 - parent: 2 - - uid: 934 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - - uid: 935 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 - - uid: 936 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 2 - - uid: 937 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 2 - - uid: 938 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 939 - components: - - type: Transform - pos: -46.5,44.5 - parent: 2 - - uid: 940 - components: - - type: Transform - pos: 17.5,6.5 - parent: 2 - - uid: 941 - components: - - type: Transform - pos: -37.5,25.5 - parent: 2 - - uid: 942 - components: - - type: Transform - pos: -41.5,-2.5 - parent: 2 - - uid: 943 - components: - - type: Transform - pos: -6.5,3.5 - parent: 2 - - uid: 944 - components: - - type: Transform - pos: -37.5,-23.5 - parent: 2 - - uid: 945 - components: - - type: Transform - pos: -13.5,-22.5 - parent: 2 - - uid: 946 - components: - - type: Transform - pos: -62.5,32.5 - parent: 2 - - uid: 947 - components: - - type: Transform - pos: -54.5,32.5 - parent: 2 - - uid: 948 - components: - - type: Transform - pos: -53.5,32.5 - parent: 2 - - uid: 949 - components: - - type: Transform - pos: -10.5,-28.5 - parent: 2 - - uid: 950 - components: - - type: Transform - pos: -11.5,-28.5 - parent: 2 - - uid: 951 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 2 - - uid: 952 - components: - - type: Transform - pos: -46.5,45.5 - parent: 2 - - uid: 953 - components: - - type: Transform - pos: -12.5,-27.5 - parent: 2 - - uid: 954 - components: - - type: Transform - pos: -8.5,-26.5 - parent: 2 - - uid: 955 - components: - - type: Transform - pos: -8.5,-27.5 - parent: 2 - - uid: 956 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 2 - - uid: 957 - components: - - type: Transform - pos: 22.5,21.5 - parent: 2 - - uid: 958 - components: - - type: Transform - pos: -9.5,-28.5 - parent: 2 - - uid: 959 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 960 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 2 - - uid: 961 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - - uid: 962 - components: - - type: Transform - pos: -41.5,-0.5 - parent: 2 - - uid: 963 - components: - - type: Transform - pos: -41.5,0.5 - parent: 2 - - uid: 964 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - - uid: 965 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 2 - - uid: 966 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 2 - - uid: 967 - components: - - type: Transform - pos: 20.5,-28.5 - parent: 2 - - uid: 968 - components: - - type: Transform - pos: -48.5,38.5 - parent: 2 - - uid: 969 - components: - - type: Transform - pos: -48.5,37.5 - parent: 2 - - uid: 970 - components: - - type: Transform - pos: -48.5,36.5 - parent: 2 - - uid: 971 - components: - - type: Transform - pos: -48.5,39.5 - parent: 2 - - uid: 972 - components: - - type: Transform - pos: -48.5,40.5 - parent: 2 - - uid: 973 - components: - - type: Transform - pos: -49.5,36.5 - parent: 2 - - uid: 974 - components: - - type: Transform - pos: -50.5,36.5 - parent: 2 - - uid: 975 - components: - - type: Transform - pos: -51.5,36.5 - parent: 2 - - uid: 976 - components: - - type: Transform - pos: -52.5,36.5 - parent: 2 - - uid: 977 - components: - - type: Transform - pos: -53.5,36.5 - parent: 2 - - uid: 978 - components: - - type: Transform - pos: -54.5,36.5 - parent: 2 - - uid: 979 - components: - - type: Transform - pos: -55.5,36.5 - parent: 2 - - uid: 980 - components: - - type: Transform - pos: -55.5,35.5 - parent: 2 - - uid: 981 - components: - - type: Transform - pos: -55.5,34.5 - parent: 2 - - uid: 982 - components: - - type: Transform - pos: -55.5,33.5 - parent: 2 - - uid: 983 - components: - - type: Transform - pos: -55.5,32.5 - parent: 2 - - uid: 984 - components: - - type: Transform - pos: -56.5,33.5 - parent: 2 - - uid: 985 - components: - - type: Transform - pos: -57.5,33.5 - parent: 2 - - uid: 986 - components: - - type: Transform - pos: -58.5,33.5 - parent: 2 - - uid: 987 - components: - - type: Transform - pos: -59.5,33.5 - parent: 2 - - uid: 988 - components: - - type: Transform - pos: -60.5,33.5 - parent: 2 - - uid: 989 - components: - - type: Transform - pos: -61.5,33.5 - parent: 2 - - uid: 990 - components: - - type: Transform - pos: -62.5,33.5 - parent: 2 - - uid: 991 - components: - - type: Transform - pos: -49.5,35.5 - parent: 2 - - uid: 992 - components: - - type: Transform - pos: -49.5,34.5 - parent: 2 - - uid: 993 - components: - - type: Transform - pos: -49.5,33.5 - parent: 2 - - uid: 994 - components: - - type: Transform - pos: -48.5,33.5 - parent: 2 - - uid: 995 - components: - - type: Transform - pos: -46.5,32.5 - parent: 2 - - uid: 996 - components: - - type: Transform - pos: -47.5,33.5 - parent: 2 - - uid: 997 - components: - - type: Transform - pos: -46.5,33.5 - parent: 2 - - uid: 998 - components: - - type: Transform - pos: -46.5,31.5 - parent: 2 - - uid: 999 - components: - - type: Transform - pos: -46.5,30.5 - parent: 2 - - uid: 1000 - components: - - type: Transform - pos: -46.5,29.5 - parent: 2 - - uid: 1001 - components: - - type: Transform - pos: -46.5,28.5 - parent: 2 - - uid: 1002 - components: - - type: Transform - pos: -47.5,28.5 - parent: 2 - - uid: 1003 - components: - - type: Transform - pos: -48.5,28.5 - parent: 2 - - uid: 1004 - components: - - type: Transform - pos: -49.5,28.5 - parent: 2 - - uid: 1005 - components: - - type: Transform - pos: -50.5,28.5 - parent: 2 - - uid: 1006 - components: - - type: Transform - pos: -45.5,28.5 - parent: 2 - - uid: 1007 - components: - - type: Transform - pos: -44.5,28.5 - parent: 2 - - uid: 1008 - components: - - type: Transform - pos: -46.5,27.5 - parent: 2 - - uid: 1009 - components: - - type: Transform - pos: -46.5,26.5 - parent: 2 - - uid: 1010 - components: - - type: Transform - pos: -41.5,35.5 - parent: 2 - - uid: 1011 - components: - - type: Transform - pos: -41.5,34.5 - parent: 2 - - uid: 1012 - components: - - type: Transform - pos: -41.5,33.5 - parent: 2 - - uid: 1013 - components: - - type: Transform - pos: -41.5,32.5 - parent: 2 - - uid: 1014 - components: - - type: Transform - pos: -41.5,31.5 - parent: 2 - - uid: 1015 - components: - - type: Transform - pos: -41.5,30.5 - parent: 2 - - uid: 1016 - components: - - type: Transform - pos: -41.5,29.5 - parent: 2 - - uid: 1017 - components: - - type: Transform - pos: -41.5,28.5 - parent: 2 - - uid: 1018 - components: - - type: Transform - pos: -41.5,27.5 - parent: 2 - - uid: 1019 - components: - - type: Transform - pos: -41.5,26.5 - parent: 2 - - uid: 1020 - components: - - type: Transform - pos: -40.5,27.5 - parent: 2 - - uid: 1021 - components: - - type: Transform - pos: -39.5,27.5 - parent: 2 - - uid: 1022 - components: - - type: Transform - pos: -38.5,27.5 - parent: 2 - - uid: 1023 - components: - - type: Transform - pos: -38.5,28.5 - parent: 2 - - uid: 1024 - components: - - type: Transform - pos: -37.5,28.5 - parent: 2 - - uid: 1025 - components: - - type: Transform - pos: -36.5,28.5 - parent: 2 - - uid: 1026 - components: - - type: Transform - pos: -38.5,26.5 - parent: 2 - - uid: 1027 - components: - - type: Transform - pos: -37.5,26.5 - parent: 2 - - uid: 1028 - components: - - type: Transform - pos: -36.5,26.5 - parent: 2 - - uid: 1029 - components: - - type: Transform - pos: -35.5,26.5 - parent: 2 - - uid: 1030 - components: - - type: Transform - pos: -33.5,30.5 - parent: 2 - - uid: 1031 - components: - - type: Transform - pos: -32.5,30.5 - parent: 2 - - uid: 1032 - components: - - type: Transform - pos: -31.5,30.5 - parent: 2 - - uid: 1033 - components: - - type: Transform - pos: -31.5,29.5 - parent: 2 - - uid: 1034 - components: - - type: Transform - pos: -30.5,29.5 - parent: 2 - - uid: 1035 - components: - - type: Transform - pos: -29.5,29.5 - parent: 2 - - uid: 1036 - components: - - type: Transform - pos: -29.5,28.5 - parent: 2 - - uid: 1037 - components: - - type: Transform - pos: -29.5,27.5 - parent: 2 - - uid: 1038 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 - - uid: 1039 - components: - - type: Transform - pos: -29.5,25.5 - parent: 2 - - uid: 1040 - components: - - type: Transform - pos: -29.5,24.5 - parent: 2 - - uid: 1041 - components: - - type: Transform - pos: -29.5,23.5 - parent: 2 - - uid: 1042 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - - uid: 1043 - components: - - type: Transform - pos: -30.5,22.5 - parent: 2 - - uid: 1044 - components: - - type: Transform - pos: -31.5,22.5 - parent: 2 - - uid: 1045 - components: - - type: Transform - pos: -32.5,22.5 - parent: 2 - - uid: 1046 - components: - - type: Transform - pos: -28.5,22.5 - parent: 2 - - uid: 1047 - components: - - type: Transform - pos: -27.5,22.5 - parent: 2 - - uid: 1048 - components: - - type: Transform - pos: -26.5,22.5 - parent: 2 - - uid: 1049 - components: - - type: Transform - pos: -27.5,21.5 - parent: 2 - - uid: 1050 - components: - - type: Transform - pos: -27.5,20.5 - parent: 2 - - uid: 1051 - components: - - type: Transform - pos: -44.5,18.5 - parent: 2 - - uid: 1052 - components: - - type: Transform - pos: -45.5,18.5 - parent: 2 - - uid: 1053 - components: - - type: Transform - pos: -46.5,18.5 - parent: 2 - - uid: 1054 - components: - - type: Transform - pos: -46.5,19.5 - parent: 2 - - uid: 1055 - components: - - type: Transform - pos: -46.5,20.5 - parent: 2 - - uid: 1056 - components: - - type: Transform - pos: -46.5,21.5 - parent: 2 - - uid: 1057 - components: - - type: Transform - pos: -46.5,22.5 - parent: 2 - - uid: 1058 - components: - - type: Transform - pos: -46.5,23.5 - parent: 2 - - uid: 1059 - components: - - type: Transform - pos: -47.5,22.5 - parent: 2 - - uid: 1060 - components: - - type: Transform - pos: -48.5,22.5 - parent: 2 - - uid: 1061 - components: - - type: Transform - pos: -49.5,22.5 - parent: 2 - - uid: 1062 - components: - - type: Transform - pos: -49.5,21.5 - parent: 2 - - uid: 1063 - components: - - type: Transform - pos: -49.5,20.5 - parent: 2 - - uid: 1064 - components: - - type: Transform - pos: -50.5,20.5 - parent: 2 - - uid: 1065 - components: - - type: Transform - pos: -51.5,20.5 - parent: 2 - - uid: 1066 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 1067 - components: - - type: Transform - pos: -49.5,19.5 - parent: 2 - - uid: 1068 - components: - - type: Transform - pos: -49.5,18.5 - parent: 2 - - uid: 1069 - components: - - type: Transform - pos: -49.5,17.5 - parent: 2 - - uid: 1070 - components: - - type: Transform - pos: -49.5,16.5 - parent: 2 - - uid: 1071 - components: - - type: Transform - pos: -49.5,15.5 - parent: 2 - - uid: 1072 - components: - - type: Transform - pos: -49.5,14.5 - parent: 2 - - uid: 1073 - components: - - type: Transform - pos: -49.5,13.5 - parent: 2 - - uid: 1074 - components: - - type: Transform - pos: -49.5,12.5 - parent: 2 - - uid: 1075 - components: - - type: Transform - pos: -50.5,12.5 - parent: 2 - - uid: 1076 - components: - - type: Transform - pos: -51.5,12.5 - parent: 2 - - uid: 1077 - components: - - type: Transform - pos: -52.5,12.5 - parent: 2 - - uid: 1078 - components: - - type: Transform - pos: -49.5,11.5 - parent: 2 - - uid: 1079 - components: - - type: Transform - pos: -49.5,10.5 - parent: 2 - - uid: 1080 - components: - - type: Transform - pos: -46.5,11.5 - parent: 2 - - uid: 1081 - components: - - type: Transform - pos: -46.5,12.5 - parent: 2 - - uid: 1082 - components: - - type: Transform - pos: -46.5,13.5 - parent: 2 - - uid: 1083 - components: - - type: Transform - pos: -46.5,14.5 - parent: 2 - - uid: 1084 - components: - - type: Transform - pos: -46.5,15.5 - parent: 2 - - uid: 1085 - components: - - type: Transform - pos: -46.5,16.5 - parent: 2 - - uid: 1086 - components: - - type: Transform - pos: -46.5,17.5 - parent: 2 - - uid: 1087 - components: - - type: Transform - pos: -41.5,6.5 - parent: 2 - - uid: 1088 - components: - - type: Transform - pos: -47.5,10.5 - parent: 2 - - uid: 1089 - components: - - type: Transform - pos: -48.5,10.5 - parent: 2 - - uid: 1090 - components: - - type: Transform - pos: -46.5,10.5 - parent: 2 - - uid: 1091 - components: - - type: Transform - pos: -44.5,17.5 - parent: 2 - - uid: 1092 - components: - - type: Transform - pos: -43.5,17.5 - parent: 2 - - uid: 1093 - components: - - type: Transform - pos: -42.5,17.5 - parent: 2 - - uid: 1094 - components: - - type: Transform - pos: -41.5,17.5 - parent: 2 - - uid: 1095 - components: - - type: Transform - pos: -41.5,18.5 - parent: 2 - - uid: 1096 - components: - - type: Transform - pos: -41.5,19.5 - parent: 2 - - uid: 1097 - components: - - type: Transform - pos: -41.5,20.5 - parent: 2 - - uid: 1098 - components: - - type: Transform - pos: -41.5,21.5 - parent: 2 - - uid: 1099 - components: - - type: Transform - pos: -41.5,22.5 - parent: 2 - - uid: 1100 - components: - - type: Transform - pos: -41.5,23.5 - parent: 2 - - uid: 1101 - components: - - type: Transform - pos: -41.5,16.5 - parent: 2 - - uid: 1102 - components: - - type: Transform - pos: -41.5,15.5 - parent: 2 - - uid: 1103 - components: - - type: Transform - pos: -41.5,14.5 - parent: 2 - - uid: 1104 - components: - - type: Transform - pos: -41.5,13.5 - parent: 2 - - uid: 1105 - components: - - type: Transform - pos: -41.5,12.5 - parent: 2 - - uid: 1106 - components: - - type: Transform - pos: -41.5,11.5 - parent: 2 - - uid: 1107 - components: - - type: Transform - pos: -41.5,10.5 - parent: 2 - - uid: 1108 - components: - - type: Transform - pos: -35.5,16.5 - parent: 2 - - uid: 1109 - components: - - type: Transform - pos: -35.5,15.5 - parent: 2 - - uid: 1110 - components: - - type: Transform - pos: -36.5,15.5 - parent: 2 - - uid: 1111 - components: - - type: Transform - pos: -37.5,15.5 - parent: 2 - - uid: 1112 - components: - - type: Transform - pos: -37.5,16.5 - parent: 2 - - uid: 1113 - components: - - type: Transform - pos: -37.5,17.5 - parent: 2 - - uid: 1114 - components: - - type: Transform - pos: -37.5,18.5 - parent: 2 - - uid: 1115 - components: - - type: Transform - pos: -37.5,19.5 - parent: 2 - - uid: 1116 - components: - - type: Transform - pos: -34.5,16.5 - parent: 2 - - uid: 1117 - components: - - type: Transform - pos: -33.5,17.5 - parent: 2 - - uid: 1118 - components: - - type: Transform - pos: -33.5,16.5 - parent: 2 - - uid: 1120 - components: - - type: Transform - pos: -34.5,15.5 - parent: 2 - - uid: 1121 - components: - - type: Transform - pos: -33.5,15.5 - parent: 2 - - uid: 1122 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - - uid: 1123 - components: - - type: Transform - pos: -31.5,15.5 - parent: 2 - - uid: 1124 - components: - - type: Transform - pos: -31.5,16.5 - parent: 2 - - uid: 1125 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - uid: 1126 - components: - - type: Transform - pos: -31.5,18.5 - parent: 2 - - uid: 1127 - components: - - type: Transform - pos: -30.5,15.5 - parent: 2 - - uid: 1128 - components: - - type: Transform - pos: -30.5,14.5 - parent: 2 - - uid: 1129 - components: - - type: Transform - pos: -30.5,13.5 - parent: 2 - - uid: 1130 - components: - - type: Transform - pos: -30.5,12.5 - parent: 2 - - uid: 1131 - components: - - type: Transform - pos: -30.5,11.5 - parent: 2 - - uid: 1132 - components: - - type: Transform - pos: -30.5,10.5 - parent: 2 - - uid: 1133 - components: - - type: Transform - pos: -37.5,14.5 - parent: 2 - - uid: 1134 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 - - uid: 1135 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - uid: 1136 - components: - - type: Transform - pos: -37.5,11.5 - parent: 2 - - uid: 1137 - components: - - type: Transform - pos: -37.5,10.5 - parent: 2 - - uid: 1138 - components: - - type: Transform - pos: -36.5,10.5 - parent: 2 - - uid: 1139 - components: - - type: Transform - pos: -35.5,10.5 - parent: 2 - - uid: 1140 - components: - - type: Transform - pos: -28.5,14.5 - parent: 2 - - uid: 1141 - components: - - type: Transform - pos: -28.5,13.5 - parent: 2 - - uid: 1142 - components: - - type: Transform - pos: -28.5,12.5 - parent: 2 - - uid: 1143 - components: - - type: Transform - pos: -28.5,11.5 - parent: 2 - - uid: 1144 - components: - - type: Transform - pos: -29.5,15.5 - parent: 2 - - uid: 1145 - components: - - type: Transform - pos: -28.5,15.5 - parent: 2 - - uid: 1146 - components: - - type: Transform - pos: -39.5,8.5 - parent: 2 - - uid: 1147 - components: - - type: Transform - pos: -39.5,7.5 - parent: 2 - - uid: 1148 - components: - - type: Transform - pos: -46.5,5.5 - parent: 2 - - uid: 1149 - components: - - type: Transform - pos: -46.5,0.5 - parent: 2 - - uid: 1150 - components: - - type: Transform - pos: -46.5,-0.5 - parent: 2 - - uid: 1151 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - - uid: 1152 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 2 - - uid: 1153 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 2 - - uid: 1154 - components: - - type: Transform - pos: -42.5,-5.5 - parent: 2 - - uid: 1155 - components: - - type: Transform - pos: -46.5,1.5 - parent: 2 - - uid: 1156 - components: - - type: Transform - pos: -43.5,6.5 - parent: 2 - - uid: 1157 - components: - - type: Transform - pos: -44.5,6.5 - parent: 2 - - uid: 1158 - components: - - type: Transform - pos: -45.5,6.5 - parent: 2 - - uid: 1159 - components: - - type: Transform - pos: -46.5,6.5 - parent: 2 - - uid: 1160 - components: - - type: Transform - pos: -47.5,6.5 - parent: 2 - - uid: 1161 - components: - - type: Transform - pos: -48.5,6.5 - parent: 2 - - uid: 1162 - components: - - type: Transform - pos: -46.5,4.5 - parent: 2 - - uid: 1163 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - - uid: 1164 - components: - - type: Transform - pos: -46.5,2.5 - parent: 2 - - uid: 1165 - components: - - type: Transform - pos: -42.5,6.5 - parent: 2 - - uid: 1166 - components: - - type: Transform - pos: -40.5,6.5 - parent: 2 - - uid: 1167 - components: - - type: Transform - pos: -39.5,6.5 - parent: 2 - - uid: 1168 - components: - - type: Transform - pos: -37.5,6.5 - parent: 2 - - uid: 1169 - components: - - type: Transform - pos: -38.5,6.5 - parent: 2 - - uid: 1170 - components: - - type: Transform - pos: -36.5,6.5 - parent: 2 - - uid: 1171 - components: - - type: Transform - pos: -35.5,6.5 - parent: 2 - - uid: 1172 - components: - - type: Transform - pos: -34.5,6.5 - parent: 2 - - uid: 1173 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - - uid: 1174 - components: - - type: Transform - pos: -32.5,6.5 - parent: 2 - - uid: 1175 - components: - - type: Transform - pos: -28.5,6.5 - parent: 2 - - uid: 1176 - components: - - type: Transform - pos: -31.5,6.5 - parent: 2 - - uid: 1177 - components: - - type: Transform - pos: -30.5,6.5 - parent: 2 - - uid: 1178 - components: - - type: Transform - pos: -27.5,6.5 - parent: 2 - - uid: 1179 - components: - - type: Transform - pos: -29.5,6.5 - parent: 2 - - uid: 1180 - components: - - type: Transform - pos: -43.5,-5.5 - parent: 2 - - uid: 1181 - components: - - type: Transform - pos: -44.5,-5.5 - parent: 2 - - uid: 1182 - components: - - type: Transform - pos: -40.5,-5.5 - parent: 2 - - uid: 1183 - components: - - type: Transform - pos: -39.5,-5.5 - parent: 2 - - uid: 1184 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 2 - - uid: 1185 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - uid: 1186 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 2 - - uid: 1187 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 1188 - components: - - type: Transform - pos: -36.5,-10.5 - parent: 2 - - uid: 1189 - components: - - type: Transform - pos: -37.5,-10.5 - parent: 2 - - uid: 1190 - components: - - type: Transform - pos: -38.5,-10.5 - parent: 2 - - uid: 1191 - components: - - type: Transform - pos: -39.5,-10.5 - parent: 2 - - uid: 1192 - components: - - type: Transform - pos: -39.5,-11.5 - parent: 2 - - uid: 1193 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - - uid: 1194 - components: - - type: Transform - pos: -39.5,-13.5 - parent: 2 - - uid: 1195 - components: - - type: Transform - pos: -39.5,-14.5 - parent: 2 - - uid: 1196 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - uid: 1197 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 2 - - uid: 1198 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 2 - - uid: 1199 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 2 - - uid: 1200 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 2 - - uid: 1201 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - - uid: 1202 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 2 - - uid: 1203 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 2 - - uid: 1204 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 1205 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - uid: 1206 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 2 - - uid: 1207 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 2 - - uid: 1208 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 2 - - uid: 1209 - components: - - type: Transform - pos: -27.5,-8.5 - parent: 2 - - uid: 1210 - components: - - type: Transform - pos: -26.5,-8.5 - parent: 2 - - uid: 1211 - components: - - type: Transform - pos: -25.5,-8.5 - parent: 2 - - uid: 1212 - components: - - type: Transform - pos: -24.5,-8.5 - parent: 2 - - uid: 1213 - components: - - type: Transform - pos: -23.5,-8.5 - parent: 2 - - uid: 1214 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 2 - - uid: 1215 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 2 - - uid: 1216 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 2 - - uid: 1217 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 2 - - uid: 1218 - components: - - type: Transform - pos: -22.5,-5.5 - parent: 2 - - uid: 1219 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 2 - - uid: 1220 - components: - - type: Transform - pos: -22.5,-3.5 - parent: 2 - - uid: 1221 - components: - - type: Transform - pos: -29.5,-8.5 - parent: 2 - - uid: 1222 - components: - - type: Transform - pos: -30.5,-8.5 - parent: 2 - - uid: 1223 - components: - - type: Transform - pos: -31.5,-8.5 - parent: 2 - - uid: 1224 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 1225 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - uid: 1226 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 1227 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - - uid: 1228 - components: - - type: Transform - pos: -8.5,-22.5 - parent: 2 - - uid: 1229 - components: - - type: Transform - pos: -8.5,-21.5 - parent: 2 - - uid: 1230 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 2 - - uid: 1231 - components: - - type: Transform - pos: -10.5,-23.5 - parent: 2 - - uid: 1232 - components: - - type: Transform - pos: -9.5,-23.5 - parent: 2 - - uid: 1233 - components: - - type: Transform - pos: -8.5,-23.5 - parent: 2 - - uid: 1234 - components: - - type: Transform - pos: -8.5,-24.5 - parent: 2 - - uid: 1235 - components: - - type: Transform - pos: -12.5,-39.5 - parent: 2 - - uid: 1236 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 2 - - uid: 1237 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 2 - - uid: 1238 - components: - - type: Transform - pos: -12.5,-38.5 - parent: 2 - - uid: 1239 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 2 - - uid: 1240 - components: - - type: Transform - pos: -8.5,-20.5 - parent: 2 - - uid: 1241 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - uid: 1242 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - - uid: 1243 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - uid: 1244 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 2 - - uid: 1245 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 2 - - uid: 1246 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 1247 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 2 - - uid: 1248 - components: - - type: Transform - pos: -28.5,-18.5 - parent: 2 - - uid: 1249 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 - - uid: 1250 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 2 - - uid: 1251 - components: - - type: Transform - pos: -28.5,-21.5 - parent: 2 - - uid: 1252 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 2 - - uid: 1253 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 2 - - uid: 1254 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - - uid: 1255 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 2 - - uid: 1256 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 2 - - uid: 1257 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 2 - - uid: 1258 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 2 - - uid: 1259 - components: - - type: Transform - pos: -20.5,-18.5 - parent: 2 - - uid: 1260 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - - uid: 1261 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 2 - - uid: 1262 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 2 - - uid: 1263 - components: - - type: Transform - pos: -32.5,-20.5 - parent: 2 - - uid: 1264 - components: - - type: Transform - pos: -33.5,-20.5 - parent: 2 - - uid: 1265 - components: - - type: Transform - pos: -38.5,-15.5 - parent: 2 - - uid: 1266 - components: - - type: Transform - pos: -37.5,-15.5 - parent: 2 - - uid: 1267 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - uid: 1268 - components: - - type: Transform - pos: -37.5,-17.5 - parent: 2 - - uid: 1269 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 2 - - uid: 1270 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 2 - - uid: 1271 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 2 - - uid: 1272 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 2 - - uid: 1273 - components: - - type: Transform - pos: -37.5,-22.5 - parent: 2 - - uid: 1274 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - - uid: 1275 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 2 - - uid: 1276 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 2 - - uid: 1277 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 2 - - uid: 1278 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 2 - - uid: 1279 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 2 - - uid: 1280 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 1281 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 1282 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 2 - - uid: 1283 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 1284 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 - - uid: 1285 - components: - - type: Transform - pos: 5.5,-25.5 - parent: 2 - - uid: 1286 - components: - - type: Transform - pos: 9.5,-13.5 - parent: 2 - - uid: 1287 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - - uid: 1288 - components: - - type: Transform - pos: -52.5,-7.5 - parent: 2 - - uid: 1289 - components: - - type: Transform - pos: -52.5,-8.5 - parent: 2 - - uid: 1290 - components: - - type: Transform - pos: -51.5,-8.5 - parent: 2 - - uid: 1291 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 2 - - uid: 1292 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 2 - - uid: 1293 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - - uid: 1294 - components: - - type: Transform - pos: -47.5,-8.5 - parent: 2 - - uid: 1295 - components: - - type: Transform - pos: -46.5,-8.5 - parent: 2 - - uid: 1296 - components: - - type: Transform - pos: -46.5,-9.5 - parent: 2 - - uid: 1297 - components: - - type: Transform - pos: -46.5,-10.5 - parent: 2 - - uid: 1298 - components: - - type: Transform - pos: -46.5,-11.5 - parent: 2 - - uid: 1299 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 2 - - uid: 1300 - components: - - type: Transform - pos: -46.5,-13.5 - parent: 2 - - uid: 1301 - components: - - type: Transform - pos: -46.5,-14.5 - parent: 2 - - uid: 1302 - components: - - type: Transform - pos: -46.5,-7.5 - parent: 2 - - uid: 1303 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 2 - - uid: 1304 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 2 - - uid: 1305 - components: - - type: Transform - pos: -46.5,-4.5 - parent: 2 - - uid: 1306 - components: - - type: Transform - pos: -47.5,-4.5 - parent: 2 - - uid: 1307 - components: - - type: Transform - pos: -48.5,-4.5 - parent: 2 - - uid: 1308 - components: - - type: Transform - pos: -49.5,-4.5 - parent: 2 - - uid: 1309 - components: - - type: Transform - pos: -53.5,-8.5 - parent: 2 - - uid: 1310 - components: - - type: Transform - pos: -54.5,-8.5 - parent: 2 - - uid: 1311 - components: - - type: Transform - pos: -55.5,-8.5 - parent: 2 - - uid: 1312 - components: - - type: Transform - pos: -56.5,-8.5 - parent: 2 - - uid: 1313 - components: - - type: Transform - pos: -56.5,-7.5 - parent: 2 - - uid: 1314 - components: - - type: Transform - pos: -57.5,-7.5 - parent: 2 - - uid: 1315 - components: - - type: Transform - pos: -58.5,-7.5 - parent: 2 - - uid: 1316 - components: - - type: Transform - pos: -59.5,-7.5 - parent: 2 - - uid: 1317 - components: - - type: Transform - pos: -56.5,-6.5 - parent: 2 - - uid: 1318 - components: - - type: Transform - pos: -56.5,-5.5 - parent: 2 - - uid: 1319 - components: - - type: Transform - pos: -56.5,-4.5 - parent: 2 - - uid: 1320 - components: - - type: Transform - pos: -56.5,-3.5 - parent: 2 - - uid: 1321 - components: - - type: Transform - pos: -56.5,-2.5 - parent: 2 - - uid: 1322 - components: - - type: Transform - pos: -56.5,-1.5 - parent: 2 - - uid: 1323 - components: - - type: Transform - pos: -56.5,-0.5 - parent: 2 - - uid: 1324 - components: - - type: Transform - pos: -56.5,0.5 - parent: 2 - - uid: 1325 - components: - - type: Transform - pos: -57.5,0.5 - parent: 2 - - uid: 1326 - components: - - type: Transform - pos: -58.5,0.5 - parent: 2 - - uid: 1327 - components: - - type: Transform - pos: -59.5,0.5 - parent: 2 - - uid: 1328 - components: - - type: Transform - pos: -55.5,0.5 - parent: 2 - - uid: 1329 - components: - - type: Transform - pos: -54.5,0.5 - parent: 2 - - uid: 1330 - components: - - type: Transform - pos: -53.5,0.5 - parent: 2 - - uid: 1331 - components: - - type: Transform - pos: -52.5,0.5 - parent: 2 - - uid: 1332 - components: - - type: Transform - pos: -51.5,0.5 - parent: 2 - - uid: 1333 - components: - - type: Transform - pos: -50.5,0.5 - parent: 2 - - uid: 1334 - components: - - type: Transform - pos: -51.5,1.5 - parent: 2 - - uid: 1335 - components: - - type: Transform - pos: -51.5,2.5 - parent: 2 - - uid: 1336 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 2 - - uid: 1337 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 2 - - uid: 1338 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 2 - - uid: 1339 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 2 - - uid: 1340 - components: - - type: Transform - pos: -55.5,-2.5 - parent: 2 - - uid: 1341 - components: - - type: Transform - pos: -54.5,-2.5 - parent: 2 - - uid: 1342 - components: - - type: Transform - pos: -53.5,-2.5 - parent: 2 - - uid: 1343 - components: - - type: Transform - pos: -56.5,-9.5 - parent: 2 - - uid: 1344 - components: - - type: Transform - pos: -56.5,-10.5 - parent: 2 - - uid: 1345 - components: - - type: Transform - pos: -56.5,-11.5 - parent: 2 - - uid: 1346 - components: - - type: Transform - pos: -56.5,-12.5 - parent: 2 - - uid: 1347 - components: - - type: Transform - pos: -56.5,-13.5 - parent: 2 - - uid: 1348 - components: - - type: Transform - pos: -56.5,-14.5 - parent: 2 - - uid: 1349 - components: - - type: Transform - pos: -57.5,-14.5 - parent: 2 - - uid: 1350 - components: - - type: Transform - pos: -58.5,-14.5 - parent: 2 - - uid: 1351 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - uid: 1352 - components: - - type: Transform - pos: -54.5,-14.5 - parent: 2 - - uid: 1353 - components: - - type: Transform - pos: -53.5,-14.5 - parent: 2 - - uid: 1354 - components: - - type: Transform - pos: -52.5,-14.5 - parent: 2 - - uid: 1355 - components: - - type: Transform - pos: -51.5,-14.5 - parent: 2 - - uid: 1356 - components: - - type: Transform - pos: -50.5,-14.5 - parent: 2 - - uid: 1357 - components: - - type: Transform - pos: -49.5,-14.5 - parent: 2 - - uid: 1358 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 2 - - uid: 1359 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 2 - - uid: 1360 - components: - - type: Transform - pos: -58.5,-15.5 - parent: 2 - - uid: 1361 - components: - - type: Transform - pos: -49.5,-15.5 - parent: 2 - - uid: 1362 - components: - - type: Transform - pos: -29.5,-14.5 - parent: 2 - - uid: 1363 - components: - - type: Transform - pos: -30.5,-14.5 - parent: 2 - - uid: 1364 - components: - - type: Transform - pos: -31.5,-14.5 - parent: 2 - - uid: 1365 - components: - - type: Transform - pos: -39.5,-9.5 - parent: 2 - - uid: 1366 - components: - - type: Transform - pos: -35.5,-9.5 - parent: 2 - - uid: 1367 - components: - - type: Transform - pos: -40.5,-9.5 - parent: 2 - - uid: 1368 - components: - - type: Transform - pos: -41.5,-9.5 - parent: 2 - - uid: 1369 - components: - - type: Transform - pos: -42.5,-9.5 - parent: 2 - - uid: 1370 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 2 - - uid: 1371 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 2 - - uid: 1372 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 2 - - uid: 1373 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 2 - - uid: 1374 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 2 - - uid: 1375 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 - - uid: 1376 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - - uid: 1377 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 2 - - uid: 1378 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - - uid: 1379 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 2 - - uid: 1380 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 2 - - uid: 1381 - components: - - type: Transform - pos: -15.5,-12.5 - parent: 2 - - uid: 1382 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 2 - - uid: 1383 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 2 - - uid: 1384 - components: - - type: Transform - pos: -12.5,-12.5 - parent: 2 - - uid: 1385 - components: - - type: Transform - pos: -11.5,-12.5 - parent: 2 - - uid: 1386 - components: - - type: Transform - pos: -10.5,-12.5 - parent: 2 - - uid: 1387 - components: - - type: Transform - pos: -9.5,-12.5 - parent: 2 - - uid: 1388 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 2 - - uid: 1389 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 2 - - uid: 1390 - components: - - type: Transform - pos: -6.5,-12.5 - parent: 2 - - uid: 1391 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - - uid: 1392 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 2 - - uid: 1393 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 2 - - uid: 1394 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - uid: 1395 - components: - - type: Transform - pos: -8.5,-5.5 - parent: 2 - - uid: 1396 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 2 - - uid: 1397 - components: - - type: Transform - pos: -8.5,-4.5 - parent: 2 - - uid: 1398 - components: - - type: Transform - pos: -8.5,-3.5 - parent: 2 - - uid: 1399 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 2 - - uid: 1400 - components: - - type: Transform - pos: -10.5,-4.5 - parent: 2 - - uid: 1401 - components: - - type: Transform - pos: -11.5,-4.5 - parent: 2 - - uid: 1402 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 2 - - uid: 1403 - components: - - type: Transform - pos: -1.5,-12.5 - parent: 2 - - uid: 1404 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 2 - - uid: 1405 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 2 - - uid: 1406 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 2 - - uid: 1407 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 2 - - uid: 1408 - components: - - type: Transform - pos: -10.5,-8.5 - parent: 2 - - uid: 1409 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 2 - - uid: 1410 - components: - - type: Transform - pos: -12.5,-8.5 - parent: 2 - - uid: 1411 - components: - - type: Transform - pos: -8.5,-9.5 - parent: 2 - - uid: 1412 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 2 - - uid: 1413 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 2 - - uid: 1414 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 2 - - uid: 1415 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 2 - - uid: 1416 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 2 - - uid: 1417 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 1418 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 1419 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 1420 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 2 - - uid: 1421 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 - - uid: 1422 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 2 - - uid: 1423 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 2 - - uid: 1424 - components: - - type: Transform - pos: -5.5,-3.5 - parent: 2 - - uid: 1425 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 2 - - uid: 1426 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 2 - - uid: 1427 - components: - - type: Transform - pos: 1.5,2.5 - parent: 2 - - uid: 1428 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 1429 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 2 - - uid: 1430 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - uid: 1431 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - - uid: 1432 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 2 - - uid: 1433 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - - uid: 1434 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 2 - - uid: 1435 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 - - uid: 1436 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - - uid: 1437 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 2 - - uid: 1438 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 2 - - uid: 1439 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 2 - - uid: 1440 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 2 - - uid: 1441 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 2 - - uid: 1442 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 2 - - uid: 1443 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 1444 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 1445 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 2 - - uid: 1446 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 2 - - uid: 1447 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 - - uid: 1448 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 2 - - uid: 1449 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 2 - - uid: 1450 - components: - - type: Transform - pos: 5.5,1.5 - parent: 2 - - uid: 1451 - components: - - type: Transform - pos: 5.5,2.5 - parent: 2 - - uid: 1452 - components: - - type: Transform - pos: 4.5,1.5 - parent: 2 - - uid: 1453 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - - uid: 1454 - components: - - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 1455 - components: - - type: Transform - pos: 1.5,1.5 - parent: 2 - - uid: 1456 - components: - - type: Transform - pos: 1.5,3.5 - parent: 2 - - uid: 1457 - components: - - type: Transform - pos: 0.5,3.5 - parent: 2 - - uid: 1458 - components: - - type: Transform - pos: -0.5,3.5 - parent: 2 - - uid: 1459 - components: - - type: Transform - pos: -0.5,2.5 - parent: 2 - - uid: 1460 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 - - uid: 1461 - components: - - type: Transform - pos: -0.5,0.5 - parent: 2 - - uid: 1462 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 2 - - uid: 1463 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 1464 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 2 - - uid: 1465 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 2 - - uid: 1466 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - - uid: 1467 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - uid: 1468 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 2 - - uid: 1469 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - uid: 1470 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - - uid: 1471 - components: - - type: Transform - pos: 13.5,1.5 - parent: 2 - - uid: 1472 - components: - - type: Transform - pos: 5.5,0.5 - parent: 2 - - uid: 1473 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 - - uid: 1474 - components: - - type: Transform - pos: 7.5,0.5 - parent: 2 - - uid: 1475 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - - uid: 1476 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 - - uid: 1477 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 1478 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 1479 - components: - - type: Transform - pos: 12.5,0.5 - parent: 2 - - uid: 1480 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 1481 - components: - - type: Transform - pos: 14.5,0.5 - parent: 2 - - uid: 1482 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 2 - - uid: 1483 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 1484 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 1485 - components: - - type: Transform - pos: 21.5,-5.5 - parent: 2 - - uid: 1486 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 1487 - components: - - type: Transform - pos: 19.5,-5.5 - parent: 2 - - uid: 1488 - components: - - type: Transform - pos: 18.5,-5.5 - parent: 2 - - uid: 1489 - components: - - type: Transform - pos: 18.5,-4.5 - parent: 2 - - uid: 1490 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 2 - - uid: 1491 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - uid: 1492 - components: - - type: Transform - pos: 24.5,-4.5 - parent: 2 - - uid: 1493 - components: - - type: Transform - pos: 24.5,-3.5 - parent: 2 - - uid: 1494 - components: - - type: Transform - pos: 24.5,-2.5 - parent: 2 - - uid: 1495 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 2 - - uid: 1496 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 2 - - uid: 1497 - components: - - type: Transform - pos: 24.5,0.5 - parent: 2 - - uid: 1498 - components: - - type: Transform - pos: 23.5,0.5 - parent: 2 - - uid: 1499 - components: - - type: Transform - pos: 22.5,0.5 - parent: 2 - - uid: 1500 - components: - - type: Transform - pos: 21.5,0.5 - parent: 2 - - uid: 1501 - components: - - type: Transform - pos: 20.5,0.5 - parent: 2 - - uid: 1502 - components: - - type: Transform - pos: 19.5,0.5 - parent: 2 - - uid: 1503 - components: - - type: Transform - pos: 18.5,0.5 - parent: 2 - - uid: 1504 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - - uid: 1505 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 2 - - uid: 1506 - components: - - type: Transform - pos: 31.5,-8.5 - parent: 2 - - uid: 1507 - components: - - type: Transform - pos: 31.5,-9.5 - parent: 2 - - uid: 1508 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 2 - - uid: 1509 - components: - - type: Transform - pos: 31.5,-11.5 - parent: 2 - - uid: 1510 - components: - - type: Transform - pos: 32.5,-11.5 - parent: 2 - - uid: 1511 - components: - - type: Transform - pos: 33.5,-11.5 - parent: 2 - - uid: 1512 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 2 - - uid: 1513 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 2 - - uid: 1514 - components: - - type: Transform - pos: 30.5,-11.5 - parent: 2 - - uid: 1515 - components: - - type: Transform - pos: 32.5,-8.5 - parent: 2 - - uid: 1516 - components: - - type: Transform - pos: 33.5,-8.5 - parent: 2 - - uid: 1517 - components: - - type: Transform - pos: 34.5,-8.5 - parent: 2 - - uid: 1518 - components: - - type: Transform - pos: 30.5,-8.5 - parent: 2 - - uid: 1519 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 2 - - uid: 1520 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 2 - - uid: 1521 - components: - - type: Transform - pos: 31.5,-4.5 - parent: 2 - - uid: 1522 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 2 - - uid: 1523 - components: - - type: Transform - pos: 29.5,-4.5 - parent: 2 - - uid: 1524 - components: - - type: Transform - pos: 29.5,-5.5 - parent: 2 - - uid: 1525 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - - uid: 1526 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - uid: 1527 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - uid: 1528 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 2 - - uid: 1529 - components: - - type: Transform - pos: 34.5,-3.5 - parent: 2 - - uid: 1530 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - - uid: 1531 - components: - - type: Transform - pos: 32.5,-3.5 - parent: 2 - - uid: 1532 - components: - - type: Transform - pos: 31.5,-2.5 - parent: 2 - - uid: 1533 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 2 - - uid: 1534 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 2 - - uid: 1535 - components: - - type: Transform - pos: 31.5,0.5 - parent: 2 - - uid: 1536 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 1537 - components: - - type: Transform - pos: 29.5,0.5 - parent: 2 - - uid: 1538 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 1539 - components: - - type: Transform - pos: 27.5,0.5 - parent: 2 - - uid: 1540 - components: - - type: Transform - pos: 32.5,0.5 - parent: 2 - - uid: 1541 - components: - - type: Transform - pos: 33.5,0.5 - parent: 2 - - uid: 1542 - components: - - type: Transform - pos: 34.5,0.5 - parent: 2 - - uid: 1543 - components: - - type: Transform - pos: 35.5,0.5 - parent: 2 - - uid: 1544 - components: - - type: Transform - pos: 36.5,0.5 - parent: 2 - - uid: 1545 - components: - - type: Transform - pos: 37.5,0.5 - parent: 2 - - uid: 1546 - components: - - type: Transform - pos: 38.5,0.5 - parent: 2 - - uid: 1547 - components: - - type: Transform - pos: 38.5,-0.5 - parent: 2 - - uid: 1548 - components: - - type: Transform - pos: 38.5,-1.5 - parent: 2 - - uid: 1549 - components: - - type: Transform - pos: 38.5,-2.5 - parent: 2 - - uid: 1550 - components: - - type: Transform - pos: 38.5,-3.5 - parent: 2 - - uid: 1551 - components: - - type: Transform - pos: 38.5,-4.5 - parent: 2 - - uid: 1552 - components: - - type: Transform - pos: 38.5,-5.5 - parent: 2 - - uid: 1553 - components: - - type: Transform - pos: 39.5,-2.5 - parent: 2 - - uid: 1554 - components: - - type: Transform - pos: 40.5,-2.5 - parent: 2 - - uid: 1555 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 2 - - uid: 1556 - components: - - type: Transform - pos: 42.5,-2.5 - parent: 2 - - uid: 1557 - components: - - type: Transform - pos: 37.5,-5.5 - parent: 2 - - uid: 1558 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 2 - - uid: 1559 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 2 - - uid: 1560 - components: - - type: Transform - pos: 39.5,0.5 - parent: 2 - - uid: 1561 - components: - - type: Transform - pos: 38.5,9.5 - parent: 2 - - uid: 1562 - components: - - type: Transform - pos: 37.5,9.5 - parent: 2 - - uid: 1563 - components: - - type: Transform - pos: 37.5,10.5 - parent: 2 - - uid: 1564 - components: - - type: Transform - pos: 37.5,11.5 - parent: 2 - - uid: 1565 - components: - - type: Transform - pos: 36.5,11.5 - parent: 2 - - uid: 1566 - components: - - type: Transform - pos: 35.5,11.5 - parent: 2 - - uid: 1567 - components: - - type: Transform - pos: 34.5,11.5 - parent: 2 - - uid: 1568 - components: - - type: Transform - pos: 33.5,11.5 - parent: 2 - - uid: 1569 - components: - - type: Transform - pos: 32.5,11.5 - parent: 2 - - uid: 1570 - components: - - type: Transform - pos: 31.5,11.5 - parent: 2 - - uid: 1571 - components: - - type: Transform - pos: 30.5,11.5 - parent: 2 - - uid: 1572 - components: - - type: Transform - pos: 30.5,10.5 - parent: 2 - - uid: 1573 - components: - - type: Transform - pos: 30.5,9.5 - parent: 2 - - uid: 1574 - components: - - type: Transform - pos: 30.5,8.5 - parent: 2 - - uid: 1575 - components: - - type: Transform - pos: 30.5,7.5 - parent: 2 - - uid: 1576 - components: - - type: Transform - pos: 30.5,6.5 - parent: 2 - - uid: 1577 - components: - - type: Transform - pos: 30.5,5.5 - parent: 2 - - uid: 1578 - components: - - type: Transform - pos: 30.5,4.5 - parent: 2 - - uid: 1579 - components: - - type: Transform - pos: 30.5,12.5 - parent: 2 - - uid: 1580 - components: - - type: Transform - pos: 31.5,4.5 - parent: 2 - - uid: 1581 - components: - - type: Transform - pos: 32.5,4.5 - parent: 2 - - uid: 1582 - components: - - type: Transform - pos: 33.5,4.5 - parent: 2 - - uid: 1583 - components: - - type: Transform - pos: 34.5,4.5 - parent: 2 - - uid: 1584 - components: - - type: Transform - pos: 35.5,4.5 - parent: 2 - - uid: 1585 - components: - - type: Transform - pos: 36.5,4.5 - parent: 2 - - uid: 1586 - components: - - type: Transform - pos: 37.5,4.5 - parent: 2 - - uid: 1587 - components: - - type: Transform - pos: 31.5,15.5 - parent: 2 - - uid: 1588 - components: - - type: Transform - pos: 37.5,5.5 - parent: 2 - - uid: 1589 - components: - - type: Transform - pos: 37.5,6.5 - parent: 2 - - uid: 1590 - components: - - type: Transform - pos: 37.5,7.5 - parent: 2 - - uid: 1591 - components: - - type: Transform - pos: 37.5,8.5 - parent: 2 - - uid: 1592 - components: - - type: Transform - pos: 30.5,13.5 - parent: 2 - - uid: 1593 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 - - uid: 1594 - components: - - type: Transform - pos: 30.5,15.5 - parent: 2 - - uid: 1595 - components: - - type: Transform - pos: 32.5,15.5 - parent: 2 - - uid: 1596 - components: - - type: Transform - pos: 31.5,8.5 - parent: 2 - - uid: 1597 - components: - - type: Transform - pos: 36.5,8.5 - parent: 2 - - uid: 1598 - components: - - type: Transform - pos: 33.5,5.5 - parent: 2 - - uid: 1599 - components: - - type: Transform - pos: 34.5,10.5 - parent: 2 - - uid: 1600 - components: - - type: Transform - pos: 20.5,14.5 - parent: 2 - - uid: 1601 - components: - - type: Transform - pos: 21.5,14.5 - parent: 2 - - uid: 1602 - components: - - type: Transform - pos: 21.5,13.5 - parent: 2 - - uid: 1603 - components: - - type: Transform - pos: 21.5,12.5 - parent: 2 - - uid: 1604 - components: - - type: Transform - pos: 21.5,11.5 - parent: 2 - - uid: 1605 - components: - - type: Transform - pos: 21.5,10.5 - parent: 2 - - uid: 1606 - components: - - type: Transform - pos: 22.5,13.5 - parent: 2 - - uid: 1607 - components: - - type: Transform - pos: 23.5,13.5 - parent: 2 - - uid: 1608 - components: - - type: Transform - pos: 24.5,13.5 - parent: 2 - - uid: 1609 - components: - - type: Transform - pos: 25.5,13.5 - parent: 2 - - uid: 1610 - components: - - type: Transform - pos: 26.5,13.5 - parent: 2 - - uid: 1611 - components: - - type: Transform - pos: 26.5,14.5 - parent: 2 - - uid: 1612 - components: - - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 1613 - components: - - type: Transform - pos: 26.5,12.5 - parent: 2 - - uid: 1614 - components: - - type: Transform - pos: 27.5,14.5 - parent: 2 - - uid: 1615 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 - - uid: 1616 - components: - - type: Transform - pos: 22.5,14.5 - parent: 2 - - uid: 1617 - components: - - type: Transform - pos: 22.5,15.5 - parent: 2 - - uid: 1618 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 - - uid: 1619 - components: - - type: Transform - pos: 21.5,27.5 - parent: 2 - - uid: 1620 - components: - - type: Transform - pos: 21.5,26.5 - parent: 2 - - uid: 1621 - components: - - type: Transform - pos: 21.5,25.5 - parent: 2 - - uid: 1622 - components: - - type: Transform - pos: 21.5,24.5 - parent: 2 - - uid: 1623 - components: - - type: Transform - pos: 21.5,23.5 - parent: 2 - - uid: 1624 - components: - - type: Transform - pos: 21.5,22.5 - parent: 2 - - uid: 1625 - components: - - type: Transform - pos: 22.5,22.5 - parent: 2 - - uid: 1626 - components: - - type: Transform - pos: 23.5,22.5 - parent: 2 - - uid: 1627 - components: - - type: Transform - pos: 24.5,22.5 - parent: 2 - - uid: 1628 - components: - - type: Transform - pos: 25.5,22.5 - parent: 2 - - uid: 1629 - components: - - type: Transform - pos: 26.5,22.5 - parent: 2 - - uid: 1630 - components: - - type: Transform - pos: 26.5,21.5 - parent: 2 - - uid: 1631 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - uid: 1632 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - uid: 1633 - components: - - type: Transform - pos: 27.5,19.5 - parent: 2 - - uid: 1634 - components: - - type: Transform - pos: 28.5,19.5 - parent: 2 - - uid: 1635 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 1636 - components: - - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 1637 - components: - - type: Transform - pos: 28.5,22.5 - parent: 2 - - uid: 1638 - components: - - type: Transform - pos: 27.5,22.5 - parent: 2 - - uid: 1639 - components: - - type: Transform - pos: 20.5,24.5 - parent: 2 - - uid: 1640 - components: - - type: Transform - pos: 22.5,25.5 - parent: 2 - - uid: 1641 - components: - - type: Transform - pos: 23.5,25.5 - parent: 2 - - uid: 1642 - components: - - type: Transform - pos: 24.5,25.5 - parent: 2 - - uid: 1643 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - uid: 1644 - components: - - type: Transform - pos: 21.5,19.5 - parent: 2 - - uid: 1645 - components: - - type: Transform - pos: 20.5,28.5 - parent: 2 - - uid: 1646 - components: - - type: Transform - pos: 21.5,28.5 - parent: 2 - - uid: 1647 - components: - - type: Transform - pos: 19.5,28.5 - parent: 2 - - uid: 1648 - components: - - type: Transform - pos: 18.5,28.5 - parent: 2 - - uid: 1649 - components: - - type: Transform - pos: 22.5,28.5 - parent: 2 - - uid: 1650 - components: - - type: Transform - pos: 23.5,28.5 - parent: 2 - - uid: 1651 - components: - - type: Transform - pos: 24.5,28.5 - parent: 2 - - uid: 1652 - components: - - type: Transform - pos: 25.5,28.5 - parent: 2 - - uid: 1653 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 1654 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 1655 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 1656 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 1657 - components: - - type: Transform - pos: 29.5,27.5 - parent: 2 - - uid: 1658 - components: - - type: Transform - pos: 30.5,27.5 - parent: 2 - - uid: 1661 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 1662 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 1663 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 1664 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 1665 - components: - - type: Transform - pos: 35.5,18.5 - parent: 2 - - uid: 1666 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - - uid: 1667 - components: - - type: Transform - pos: 36.5,17.5 - parent: 2 - - uid: 1668 - components: - - type: Transform - pos: 36.5,16.5 - parent: 2 - - uid: 1669 - components: - - type: Transform - pos: 37.5,16.5 - parent: 2 - - uid: 1670 - components: - - type: Transform - pos: 38.5,16.5 - parent: 2 - - uid: 1671 - components: - - type: Transform - pos: 39.5,16.5 - parent: 2 - - uid: 1673 - components: - - type: Transform - pos: 41.5,9.5 - parent: 2 - - uid: 1675 - components: - - type: Transform - pos: 41.5,8.5 - parent: 2 - - uid: 1676 - components: - - type: Transform - pos: 41.5,7.5 - parent: 2 - - uid: 1677 - components: - - type: Transform - pos: 41.5,6.5 - parent: 2 - - uid: 1678 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - - uid: 1679 - components: - - type: Transform - pos: 41.5,4.5 - parent: 2 - - uid: 1680 - components: - - type: Transform - pos: 41.5,10.5 - parent: 2 - - uid: 1681 - components: - - type: Transform - pos: 41.5,11.5 - parent: 2 - - uid: 1682 - components: - - type: Transform - pos: 41.5,12.5 - parent: 2 - - uid: 1683 - components: - - type: Transform - pos: 41.5,13.5 - parent: 2 - - uid: 1684 - components: - - type: Transform - pos: 42.5,11.5 - parent: 2 - - uid: 1685 - components: - - type: Transform - pos: 43.5,11.5 - parent: 2 - - uid: 1686 - components: - - type: Transform - pos: 44.5,11.5 - parent: 2 - - uid: 1687 - components: - - type: Transform - pos: 44.5,10.5 - parent: 2 - - uid: 1688 - components: - - type: Transform - pos: 44.5,12.5 - parent: 2 - - uid: 1689 - components: - - type: Transform - pos: 40.5,13.5 - parent: 2 - - uid: 1690 - components: - - type: Transform - pos: 40.5,14.5 - parent: 2 - - uid: 1691 - components: - - type: Transform - pos: 40.5,15.5 - parent: 2 - - uid: 1692 - components: - - type: Transform - pos: 40.5,16.5 - parent: 2 - - uid: 1693 - components: - - type: Transform - pos: 13.5,8.5 - parent: 2 - - uid: 1694 - components: - - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 1695 - components: - - type: Transform - pos: 13.5,7.5 - parent: 2 - - uid: 1696 - components: - - type: Transform - pos: 12.5,7.5 - parent: 2 - - uid: 1697 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 1698 - components: - - type: Transform - pos: 10.5,7.5 - parent: 2 - - uid: 1699 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 1700 - components: - - type: Transform - pos: 8.5,7.5 - parent: 2 - - uid: 1701 - components: - - type: Transform - pos: 7.5,7.5 - parent: 2 - - uid: 1702 - components: - - type: Transform - pos: 7.5,8.5 - parent: 2 - - uid: 1703 - components: - - type: Transform - pos: 7.5,9.5 - parent: 2 - - uid: 1704 - components: - - type: Transform - pos: 7.5,10.5 - parent: 2 - - uid: 1705 - components: - - type: Transform - pos: 7.5,11.5 - parent: 2 - - uid: 1706 - components: - - type: Transform - pos: 8.5,11.5 - parent: 2 - - uid: 1707 - components: - - type: Transform - pos: 9.5,11.5 - parent: 2 - - uid: 1708 - components: - - type: Transform - pos: 10.5,11.5 - parent: 2 - - uid: 1709 - components: - - type: Transform - pos: 13.5,6.5 - parent: 2 - - uid: 1710 - components: - - type: Transform - pos: 20.5,-46.5 - parent: 2 - - uid: 1711 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - - uid: 1712 - components: - - type: Transform - pos: 12.5,5.5 - parent: 2 - - uid: 1713 - components: - - type: Transform - pos: 14.5,6.5 - parent: 2 - - uid: 1714 - components: - - type: Transform - pos: 15.5,6.5 - parent: 2 - - uid: 1715 - components: - - type: Transform - pos: 16.5,6.5 - parent: 2 - - uid: 1716 - components: - - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 1717 - components: - - type: Transform - pos: 14.5,10.5 - parent: 2 - - uid: 1718 - components: - - type: Transform - pos: 14.5,11.5 - parent: 2 - - uid: 1719 - components: - - type: Transform - pos: 19.5,-29.5 - parent: 2 - - uid: 1720 - components: - - type: Transform - pos: 15.5,11.5 - parent: 2 - - uid: 1721 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - - uid: 1722 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 - - uid: 1723 - components: - - type: Transform - pos: 18.5,11.5 - parent: 2 - - uid: 1724 - components: - - type: Transform - pos: 11.5,11.5 - parent: 2 - - uid: 1725 - components: - - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 1726 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 1727 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 1728 - components: - - type: Transform - pos: 20.5,15.5 - parent: 2 - - uid: 1729 - components: - - type: Transform - pos: 19.5,15.5 - parent: 2 - - uid: 1730 - components: - - type: Transform - pos: 18.5,15.5 - parent: 2 - - uid: 1731 - components: - - type: Transform - pos: 17.5,15.5 - parent: 2 - - uid: 1732 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 - - uid: 1733 - components: - - type: Transform - pos: 17.5,17.5 - parent: 2 - - uid: 1734 - components: - - type: Transform - pos: 17.5,18.5 - parent: 2 - - uid: 1735 - components: - - type: Transform - pos: 18.5,18.5 - parent: 2 - - uid: 1736 - components: - - type: Transform - pos: 16.5,19.5 - parent: 2 - - uid: 1737 - components: - - type: Transform - pos: 11.5,12.5 - parent: 2 - - uid: 1738 - components: - - type: Transform - pos: 11.5,13.5 - parent: 2 - - uid: 1739 - components: - - type: Transform - pos: 11.5,14.5 - parent: 2 - - uid: 1740 - components: - - type: Transform - pos: 11.5,15.5 - parent: 2 - - uid: 1741 - components: - - type: Transform - pos: 16.5,15.5 - parent: 2 - - uid: 1742 - components: - - type: Transform - pos: 12.5,15.5 - parent: 2 - - uid: 1743 - components: - - type: Transform - pos: 11.5,24.5 - parent: 2 - - uid: 1744 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 - - uid: 1745 - components: - - type: Transform - pos: 12.5,23.5 - parent: 2 - - uid: 1746 - components: - - type: Transform - pos: 12.5,22.5 - parent: 2 - - uid: 1747 - components: - - type: Transform - pos: 12.5,21.5 - parent: 2 - - uid: 1748 - components: - - type: Transform - pos: 12.5,20.5 - parent: 2 - - uid: 1749 - components: - - type: Transform - pos: 12.5,19.5 - parent: 2 - - uid: 1750 - components: - - type: Transform - pos: 13.5,19.5 - parent: 2 - - uid: 1751 - components: - - type: Transform - pos: 11.5,21.5 - parent: 2 - - uid: 1752 - components: - - type: Transform - pos: 10.5,21.5 - parent: 2 - - uid: 1753 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - - uid: 1754 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 - - uid: 1755 - components: - - type: Transform - pos: 9.5,19.5 - parent: 2 - - uid: 1756 - components: - - type: Transform - pos: 9.5,18.5 - parent: 2 - - uid: 1757 - components: - - type: Transform - pos: 12.5,25.5 - parent: 2 - - uid: 1758 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 1759 - components: - - type: Transform - pos: 14.5,25.5 - parent: 2 - - uid: 1760 - components: - - type: Transform - pos: 15.5,25.5 - parent: 2 - - uid: 1761 - components: - - type: Transform - pos: 16.5,25.5 - parent: 2 - - uid: 1762 - components: - - type: Transform - pos: 16.5,24.5 - parent: 2 - - uid: 1763 - components: - - type: Transform - pos: 11.5,25.5 - parent: 2 - - uid: 1764 - components: - - type: Transform - pos: 10.5,25.5 - parent: 2 - - uid: 1765 - components: - - type: Transform - pos: 9.5,25.5 - parent: 2 - - uid: 1766 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - - uid: 1767 - components: - - type: Transform - pos: 8.5,26.5 - parent: 2 - - uid: 1768 - components: - - type: Transform - pos: 9.5,26.5 - parent: 2 - - uid: 1769 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 1770 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - uid: 1771 - components: - - type: Transform - pos: 13.5,28.5 - parent: 2 - - uid: 1772 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 - - uid: 1773 - components: - - type: Transform - pos: 13.5,30.5 - parent: 2 - - uid: 1774 - components: - - type: Transform - pos: 12.5,30.5 - parent: 2 - - uid: 1775 - components: - - type: Transform - pos: 11.5,30.5 - parent: 2 - - uid: 1776 - components: - - type: Transform - pos: 10.5,30.5 - parent: 2 - - uid: 1777 - components: - - type: Transform - pos: 9.5,30.5 - parent: 2 - - uid: 1778 - components: - - type: Transform - pos: 8.5,30.5 - parent: 2 - - uid: 1779 - components: - - type: Transform - pos: 7.5,30.5 - parent: 2 - - uid: 1780 - components: - - type: Transform - pos: 6.5,30.5 - parent: 2 - - uid: 1781 - components: - - type: Transform - pos: 5.5,30.5 - parent: 2 - - uid: 1782 - components: - - type: Transform - pos: 14.5,28.5 - parent: 2 - - uid: 1783 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 1784 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 2 - - uid: 1785 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 2 - - uid: 1786 - components: - - type: Transform - pos: -11.5,-15.5 - parent: 2 - - uid: 1787 - components: - - type: Transform - pos: -11.5,-16.5 - parent: 2 - - uid: 1788 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 2 - - uid: 1789 - components: - - type: Transform - pos: -11.5,-18.5 - parent: 2 - - uid: 1790 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 2 - - uid: 1791 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 2 - - uid: 1792 - components: - - type: Transform - pos: -14.5,-18.5 - parent: 2 - - uid: 1793 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 1794 - components: - - type: Transform - pos: -16.5,-18.5 - parent: 2 - - uid: 1795 - components: - - type: Transform - pos: -17.5,-18.5 - parent: 2 - - uid: 1796 - components: - - type: Transform - pos: -17.5,-19.5 - parent: 2 - - uid: 1797 - components: - - type: Transform - pos: -17.5,-20.5 - parent: 2 - - uid: 1798 - components: - - type: Transform - pos: -17.5,-21.5 - parent: 2 - - uid: 1799 - components: - - type: Transform - pos: -17.5,-22.5 - parent: 2 - - uid: 1800 - components: - - type: Transform - pos: -17.5,-23.5 - parent: 2 - - uid: 1801 - components: - - type: Transform - pos: -17.5,-24.5 - parent: 2 - - uid: 1802 - components: - - type: Transform - pos: -18.5,-23.5 - parent: 2 - - uid: 1803 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 2 - - uid: 1804 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 2 - - uid: 1805 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 2 - - uid: 1806 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 2 - - uid: 1807 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - - uid: 1808 - components: - - type: Transform - pos: -24.5,-23.5 - parent: 2 - - uid: 1809 - components: - - type: Transform - pos: -24.5,-22.5 - parent: 2 - - uid: 1810 - components: - - type: Transform - pos: -24.5,-24.5 - parent: 2 - - uid: 1811 - components: - - type: Transform - pos: -21.5,-22.5 - parent: 2 - - uid: 1812 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 2 - - uid: 1813 - components: - - type: Transform - pos: -17.5,-17.5 - parent: 2 - - uid: 1814 - components: - - type: Transform - pos: -17.5,-16.5 - parent: 2 - - uid: 1815 - components: - - type: Transform - pos: -17.5,-15.5 - parent: 2 - - uid: 1816 - components: - - type: Transform - pos: -17.5,-14.5 - parent: 2 - - uid: 1817 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 2 - - uid: 1818 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 2 - - uid: 1819 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 2 - - uid: 1820 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 2 - - uid: 1821 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 2 - - uid: 1822 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 2 - - uid: 1823 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 2 - - uid: 1824 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 2 - - uid: 1825 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 2 - - uid: 1826 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 2 - - uid: 1827 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 2 - - uid: 1828 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 2 - - uid: 1829 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 2 - - uid: 1830 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 2 - - uid: 1831 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 2 - - uid: 1832 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 2 - - uid: 1833 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 2 - - uid: 1834 - components: - - type: Transform - pos: -17.5,0.5 - parent: 2 - - uid: 1835 - components: - - type: Transform - pos: -16.5,0.5 - parent: 2 - - uid: 1836 - components: - - type: Transform - pos: -15.5,0.5 - parent: 2 - - uid: 1837 - components: - - type: Transform - pos: -14.5,0.5 - parent: 2 - - uid: 1838 - components: - - type: Transform - pos: -13.5,0.5 - parent: 2 - - uid: 1839 - components: - - type: Transform - pos: -12.5,0.5 - parent: 2 - - uid: 1840 - components: - - type: Transform - pos: -18.5,0.5 - parent: 2 - - uid: 1841 - components: - - type: Transform - pos: -19.5,0.5 - parent: 2 - - uid: 1842 - components: - - type: Transform - pos: -20.5,0.5 - parent: 2 - - uid: 1843 - components: - - type: Transform - pos: -21.5,0.5 - parent: 2 - - uid: 1844 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - - uid: 1845 - components: - - type: Transform - pos: -23.5,0.5 - parent: 2 - - uid: 1846 - components: - - type: Transform - pos: -24.5,0.5 - parent: 2 - - uid: 1847 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 1848 - components: - - type: Transform - pos: -24.5,2.5 - parent: 2 - - uid: 1849 - components: - - type: Transform - pos: -5.5,3.5 - parent: 2 - - uid: 1850 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 2 - - uid: 1851 - components: - - type: Transform - pos: -4.5,4.5 - parent: 2 - - uid: 1852 - components: - - type: Transform - pos: -4.5,3.5 - parent: 2 - - uid: 1853 - components: - - type: Transform - pos: -4.5,2.5 - parent: 2 - - uid: 1854 - components: - - type: Transform - pos: -4.5,1.5 - parent: 2 - - uid: 1855 - components: - - type: Transform - pos: -4.5,0.5 - parent: 2 - - uid: 1856 - components: - - type: Transform - pos: -5.5,0.5 - parent: 2 - - uid: 1857 - components: - - type: Transform - pos: -6.5,0.5 - parent: 2 - - uid: 1858 - components: - - type: Transform - pos: -7.5,0.5 - parent: 2 - - uid: 1859 - components: - - type: Transform - pos: -8.5,0.5 - parent: 2 - - uid: 1860 - components: - - type: Transform - pos: -9.5,0.5 - parent: 2 - - uid: 1861 - components: - - type: Transform - pos: -4.5,5.5 - parent: 2 - - uid: 1862 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 - - uid: 1863 - components: - - type: Transform - pos: -4.5,7.5 - parent: 2 - - uid: 1864 - components: - - type: Transform - pos: -4.5,8.5 - parent: 2 - - uid: 1865 - components: - - type: Transform - pos: -4.5,9.5 - parent: 2 - - uid: 1866 - components: - - type: Transform - pos: -4.5,10.5 - parent: 2 - - uid: 1867 - components: - - type: Transform - pos: -4.5,11.5 - parent: 2 - - uid: 1868 - components: - - type: Transform - pos: -4.5,12.5 - parent: 2 - - uid: 1869 - components: - - type: Transform - pos: -4.5,13.5 - parent: 2 - - uid: 1870 - components: - - type: Transform - pos: -3.5,7.5 - parent: 2 - - uid: 1871 - components: - - type: Transform - pos: -2.5,7.5 - parent: 2 - - uid: 1872 - components: - - type: Transform - pos: -5.5,5.5 - parent: 2 - - uid: 1873 - components: - - type: Transform - pos: -6.5,5.5 - parent: 2 - - uid: 1874 - components: - - type: Transform - pos: -7.5,5.5 - parent: 2 - - uid: 1875 - components: - - type: Transform - pos: -8.5,5.5 - parent: 2 - - uid: 1876 - components: - - type: Transform - pos: -9.5,5.5 - parent: 2 - - uid: 1877 - components: - - type: Transform - pos: -10.5,5.5 - parent: 2 - - uid: 1878 - components: - - type: Transform - pos: -11.5,5.5 - parent: 2 - - uid: 1879 - components: - - type: Transform - pos: -12.5,5.5 - parent: 2 - - uid: 1880 - components: - - type: Transform - pos: -13.5,5.5 - parent: 2 - - uid: 1881 - components: - - type: Transform - pos: -12.5,4.5 - parent: 2 - - uid: 1882 - components: - - type: Transform - pos: -12.5,6.5 - parent: 2 - - uid: 1883 - components: - - type: Transform - pos: -14.5,5.5 - parent: 2 - - uid: 1884 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 - - uid: 1885 - components: - - type: Transform - pos: -14.5,4.5 - parent: 2 - - uid: 1886 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 1887 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 1888 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 - - uid: 1889 - components: - - type: Transform - pos: -15.5,10.5 - parent: 2 - - uid: 1890 - components: - - type: Transform - pos: -15.5,11.5 - parent: 2 - - uid: 1891 - components: - - type: Transform - pos: -15.5,12.5 - parent: 2 - - uid: 1892 - components: - - type: Transform - pos: -8.5,12.5 - parent: 2 - - uid: 1893 - components: - - type: Transform - pos: -8.5,11.5 - parent: 2 - - uid: 1894 - components: - - type: Transform - pos: -8.5,10.5 - parent: 2 - - uid: 1895 - components: - - type: Transform - pos: -8.5,9.5 - parent: 2 - - uid: 1896 - components: - - type: Transform - pos: -7.5,10.5 - parent: 2 - - uid: 1897 - components: - - type: Transform - pos: -9.5,10.5 - parent: 2 - - uid: 1898 - components: - - type: Transform - pos: -10.5,10.5 - parent: 2 - - uid: 1899 - components: - - type: Transform - pos: -11.5,10.5 - parent: 2 - - uid: 1900 - components: - - type: Transform - pos: -12.5,10.5 - parent: 2 - - uid: 1901 - components: - - type: Transform - pos: -12.5,11.5 - parent: 2 - - uid: 1902 - components: - - type: Transform - pos: -12.5,12.5 - parent: 2 - - uid: 1903 - components: - - type: Transform - pos: -12.5,13.5 - parent: 2 - - uid: 1904 - components: - - type: Transform - pos: -12.5,14.5 - parent: 2 - - uid: 1905 - components: - - type: Transform - pos: -15.5,13.5 - parent: 2 - - uid: 1906 - components: - - type: Transform - pos: -15.5,14.5 - parent: 2 - - uid: 1907 - components: - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 1908 - components: - - type: Transform - pos: -7.5,13.5 - parent: 2 - - uid: 1909 - components: - - type: Transform - pos: -7.5,14.5 - parent: 2 - - uid: 1910 - components: - - type: Transform - pos: -7.5,15.5 - parent: 2 - - uid: 1911 - components: - - type: Transform - pos: -7.5,16.5 - parent: 2 - - uid: 1912 - components: - - type: Transform - pos: -7.5,17.5 - parent: 2 - - uid: 1913 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - uid: 1914 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - - uid: 1915 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 - - uid: 1916 - components: - - type: Transform - pos: -10.5,16.5 - parent: 2 - - uid: 1917 - components: - - type: Transform - pos: -10.5,15.5 - parent: 2 - - uid: 1918 - components: - - type: Transform - pos: -11.5,15.5 - parent: 2 - - uid: 1919 - components: - - type: Transform - pos: -12.5,15.5 - parent: 2 - - uid: 1920 - components: - - type: Transform - pos: -15.5,20.5 - parent: 2 - - uid: 1921 - components: - - type: Transform - pos: -15.5,21.5 - parent: 2 - - uid: 1922 - components: - - type: Transform - pos: -14.5,21.5 - parent: 2 - - uid: 1923 - components: - - type: Transform - pos: -16.5,20.5 - parent: 2 - - uid: 1924 - components: - - type: Transform - pos: -14.5,22.5 - parent: 2 - - uid: 1925 - components: - - type: Transform - pos: -13.5,22.5 - parent: 2 - - uid: 1926 - components: - - type: Transform - pos: -16.5,18.5 - parent: 2 - - uid: 1927 - components: - - type: Transform - pos: -17.5,21.5 - parent: 2 - - uid: 1928 - components: - - type: Transform - pos: -17.5,20.5 - parent: 2 - - uid: 1929 - components: - - type: Transform - pos: -17.5,19.5 - parent: 2 - - uid: 1930 - components: - - type: Transform - pos: -17.5,18.5 - parent: 2 - - uid: 1931 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - - uid: 1932 - components: - - type: Transform - pos: -17.5,16.5 - parent: 2 - - uid: 1933 - components: - - type: Transform - pos: -18.5,16.5 - parent: 2 - - uid: 1934 - components: - - type: Transform - pos: -19.5,16.5 - parent: 2 - - uid: 1935 - components: - - type: Transform - pos: -20.5,16.5 - parent: 2 - - uid: 1936 - components: - - type: Transform - pos: -20.5,17.5 - parent: 2 - - uid: 1937 - components: - - type: Transform - pos: -20.5,18.5 - parent: 2 - - uid: 1938 - components: - - type: Transform - pos: -20.5,19.5 - parent: 2 - - uid: 1939 - components: - - type: Transform - pos: -20.5,20.5 - parent: 2 - - uid: 1940 - components: - - type: Transform - pos: -20.5,21.5 - parent: 2 - - uid: 1941 - components: - - type: Transform - pos: -15.5,18.5 - parent: 2 - - uid: 1942 - components: - - type: Transform - pos: -14.5,18.5 - parent: 2 - - uid: 1943 - components: - - type: Transform - pos: -37.5,24.5 - parent: 2 - - uid: 1944 - components: - - type: Transform - pos: -37.5,23.5 - parent: 2 - - uid: 1945 - components: - - type: Transform - pos: -36.5,23.5 - parent: 2 - - uid: 1946 - components: - - type: Transform - pos: -35.5,23.5 - parent: 2 - - uid: 1947 - components: - - type: Transform - pos: -27.5,19.5 - parent: 2 - - uid: 1948 - components: - - type: Transform - pos: -38.5,23.5 - parent: 2 - - uid: 1949 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 2 - - uid: 1950 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 2 - - uid: 1951 - components: - - type: Transform - pos: -12.5,-30.5 - parent: 2 - - uid: 1952 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 1953 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 2 - - uid: 1954 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 2 - - uid: 1955 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 2 - - uid: 1956 - components: - - type: Transform - pos: -18.5,-38.5 - parent: 2 - - uid: 1957 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 2 - - uid: 1958 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 2 - - uid: 1959 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 2 - - uid: 1960 - components: - - type: Transform - pos: -12.5,-29.5 - parent: 2 - - uid: 1961 - components: - - type: Transform - pos: -8.5,-28.5 - parent: 2 - - uid: 1962 - components: - - type: Transform - pos: -4.5,17.5 - parent: 2 - - uid: 1963 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - uid: 1964 - components: - - type: Transform - pos: -7.5,22.5 - parent: 2 - - uid: 1965 - components: - - type: Transform - pos: -6.5,22.5 - parent: 2 - - uid: 1966 - components: - - type: Transform - pos: -9.5,22.5 - parent: 2 - - uid: 1967 - components: - - type: Transform - pos: -4.5,22.5 - parent: 2 - - uid: 1968 - components: - - type: Transform - pos: -5.5,22.5 - parent: 2 - - uid: 1969 - components: - - type: Transform - pos: -9.5,24.5 - parent: 2 - - uid: 1970 - components: - - type: Transform - pos: -9.5,25.5 - parent: 2 - - uid: 1971 - components: - - type: Transform - pos: -3.5,25.5 - parent: 2 - - uid: 1972 - components: - - type: Transform - pos: -9.5,23.5 - parent: 2 - - uid: 1973 - components: - - type: Transform - pos: -7.5,26.5 - parent: 2 - - uid: 1974 - components: - - type: Transform - pos: -7.5,27.5 - parent: 2 - - uid: 1975 - components: - - type: Transform - pos: -8.5,26.5 - parent: 2 - - uid: 1976 - components: - - type: Transform - pos: -9.5,26.5 - parent: 2 - - uid: 1977 - components: - - type: Transform - pos: -6.5,26.5 - parent: 2 - - uid: 1978 - components: - - type: Transform - pos: -5.5,26.5 - parent: 2 - - uid: 1979 - components: - - type: Transform - pos: -4.5,26.5 - parent: 2 - - uid: 1980 - components: - - type: Transform - pos: -3.5,26.5 - parent: 2 - - uid: 1981 - components: - - type: Transform - pos: -3.5,24.5 - parent: 2 - - uid: 1982 - components: - - type: Transform - pos: -3.5,23.5 - parent: 2 - - uid: 1983 - components: - - type: Transform - pos: -3.5,22.5 - parent: 2 - - uid: 1984 - components: - - type: Transform - pos: -3.5,21.5 - parent: 2 - - uid: 1985 - components: - - type: Transform - pos: -3.5,20.5 - parent: 2 - - uid: 1986 - components: - - type: Transform - pos: -3.5,19.5 - parent: 2 - - uid: 1987 - components: - - type: Transform - pos: -3.5,18.5 - parent: 2 - - uid: 1988 - components: - - type: Transform - pos: -3.5,17.5 - parent: 2 - - uid: 1989 - components: - - type: Transform - pos: -22.5,29.5 - parent: 2 - - uid: 1990 - components: - - type: Transform - pos: -21.5,29.5 - parent: 2 - - uid: 1991 - components: - - type: Transform - pos: -23.5,29.5 - parent: 2 - - uid: 1992 - components: - - type: Transform - pos: -23.5,28.5 - parent: 2 - - uid: 1993 - components: - - type: Transform - pos: -23.5,27.5 - parent: 2 - - uid: 1994 - components: - - type: Transform - pos: -23.5,26.5 - parent: 2 - - uid: 1995 - components: - - type: Transform - pos: -23.5,25.5 - parent: 2 - - uid: 1996 - components: - - type: Transform - pos: -23.5,24.5 - parent: 2 - - uid: 1997 - components: - - type: Transform - pos: -23.5,23.5 - parent: 2 - - uid: 1998 - components: - - type: Transform - pos: -23.5,22.5 - parent: 2 - - uid: 1999 - components: - - type: Transform - pos: -23.5,21.5 - parent: 2 - - uid: 2000 - components: - - type: Transform - pos: -23.5,20.5 - parent: 2 - - uid: 2001 - components: - - type: Transform - pos: -22.5,26.5 - parent: 2 - - uid: 2002 - components: - - type: Transform - pos: -21.5,26.5 - parent: 2 - - uid: 2003 - components: - - type: Transform - pos: -20.5,26.5 - parent: 2 - - uid: 2004 - components: - - type: Transform - pos: -19.5,26.5 - parent: 2 - - uid: 2005 - components: - - type: Transform - pos: -18.5,26.5 - parent: 2 - - uid: 2006 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 2007 - components: - - type: Transform - pos: -16.5,26.5 - parent: 2 - - uid: 2008 - components: - - type: Transform - pos: -15.5,26.5 - parent: 2 - - uid: 2009 - components: - - type: Transform - pos: -14.5,26.5 - parent: 2 - - uid: 2010 - components: - - type: Transform - pos: -13.5,26.5 - parent: 2 - - uid: 2011 - components: - - type: Transform - pos: -23.5,30.5 - parent: 2 - - uid: 2012 - components: - - type: Transform - pos: -23.5,31.5 - parent: 2 - - uid: 2013 - components: - - type: Transform - pos: -23.5,32.5 - parent: 2 - - uid: 2014 - components: - - type: Transform - pos: -23.5,33.5 - parent: 2 - - uid: 2015 - components: - - type: Transform - pos: -23.5,34.5 - parent: 2 - - uid: 2016 - components: - - type: Transform - pos: -23.5,35.5 - parent: 2 - - uid: 2017 - components: - - type: Transform - pos: -23.5,36.5 - parent: 2 - - uid: 2018 - components: - - type: Transform - pos: -20.5,29.5 - parent: 2 - - uid: 2019 - components: - - type: Transform - pos: -19.5,29.5 - parent: 2 - - uid: 2020 - components: - - type: Transform - pos: -18.5,29.5 - parent: 2 - - uid: 2021 - components: - - type: Transform - pos: -17.5,29.5 - parent: 2 - - uid: 2022 - components: - - type: Transform - pos: -16.5,29.5 - parent: 2 - - uid: 2023 - components: - - type: Transform - pos: -15.5,29.5 - parent: 2 - - uid: 2024 - components: - - type: Transform - pos: -14.5,29.5 - parent: 2 - - uid: 2025 - components: - - type: Transform - pos: -13.5,29.5 - parent: 2 - - uid: 2026 - components: - - type: Transform - pos: -12.5,29.5 - parent: 2 - - uid: 2027 - components: - - type: Transform - pos: -11.5,29.5 - parent: 2 - - uid: 2028 - components: - - type: Transform - pos: -10.5,29.5 - parent: 2 - - uid: 2029 - components: - - type: Transform - pos: -9.5,29.5 - parent: 2 - - uid: 2030 - components: - - type: Transform - pos: -8.5,29.5 - parent: 2 - - uid: 2031 - components: - - type: Transform - pos: -19.5,30.5 - parent: 2 - - uid: 2032 - components: - - type: Transform - pos: -40.5,35.5 - parent: 2 - - uid: 2033 - components: - - type: Transform - pos: -39.5,35.5 - parent: 2 - - uid: 2034 - components: - - type: Transform - pos: -39.5,36.5 - parent: 2 - - uid: 2035 - components: - - type: Transform - pos: -39.5,37.5 - parent: 2 - - uid: 2036 - components: - - type: Transform - pos: -39.5,38.5 - parent: 2 - - uid: 2037 - components: - - type: Transform - pos: -39.5,39.5 - parent: 2 - - uid: 2038 - components: - - type: Transform - pos: -39.5,40.5 - parent: 2 - - uid: 2039 - components: - - type: Transform - pos: -39.5,41.5 - parent: 2 - - uid: 2040 - components: - - type: Transform - pos: -39.5,42.5 - parent: 2 - - uid: 2041 - components: - - type: Transform - pos: -39.5,43.5 - parent: 2 - - uid: 2042 - components: - - type: Transform - pos: -39.5,44.5 - parent: 2 - - uid: 2043 - components: - - type: Transform - pos: -40.5,42.5 - parent: 2 - - uid: 2044 - components: - - type: Transform - pos: -41.5,42.5 - parent: 2 - - uid: 2045 - components: - - type: Transform - pos: -42.5,42.5 - parent: 2 - - uid: 2046 - components: - - type: Transform - pos: -43.5,42.5 - parent: 2 - - uid: 2047 - components: - - type: Transform - pos: -43.5,43.5 - parent: 2 - - uid: 2050 - components: - - type: Transform - pos: -43.5,46.5 - parent: 2 - - uid: 2051 - components: - - type: Transform - pos: -43.5,47.5 - parent: 2 - - uid: 2052 - components: - - type: Transform - pos: -16.5,25.5 - parent: 2 - - uid: 2053 - components: - - type: Transform - pos: -44.5,46.5 - parent: 2 - - uid: 2054 - components: - - type: Transform - pos: -45.5,46.5 - parent: 2 - - uid: 2055 - components: - - type: Transform - pos: -46.5,46.5 - parent: 2 - - uid: 2056 - components: - - type: Transform - pos: -47.5,46.5 - parent: 2 - - uid: 2057 - components: - - type: Transform - pos: -48.5,46.5 - parent: 2 - - uid: 2058 - components: - - type: Transform - pos: -49.5,46.5 - parent: 2 - - uid: 2059 - components: - - type: Transform - pos: -50.5,46.5 - parent: 2 - - uid: 2060 - components: - - type: Transform - pos: -51.5,46.5 - parent: 2 - - uid: 2061 - components: - - type: Transform - pos: -51.5,47.5 - parent: 2 - - uid: 2062 - components: - - type: Transform - pos: -42.5,47.5 - parent: 2 - - uid: 2063 - components: - - type: Transform - pos: -42.5,48.5 - parent: 2 - - uid: 2064 - components: - - type: Transform - pos: -42.5,49.5 - parent: 2 - - uid: 2065 - components: - - type: Transform - pos: -42.5,50.5 - parent: 2 - - uid: 2066 - components: - - type: Transform - pos: -42.5,51.5 - parent: 2 - - uid: 2067 - components: - - type: Transform - pos: -42.5,52.5 - parent: 2 - - uid: 2068 - components: - - type: Transform - pos: -42.5,53.5 - parent: 2 - - uid: 2069 - components: - - type: Transform - pos: -42.5,54.5 - parent: 2 - - uid: 2070 - components: - - type: Transform - pos: -42.5,55.5 - parent: 2 - - uid: 2071 - components: - - type: Transform - pos: -42.5,56.5 - parent: 2 - - uid: 2072 - components: - - type: Transform - pos: -42.5,57.5 - parent: 2 - - uid: 2073 - components: - - type: Transform - pos: -42.5,58.5 - parent: 2 - - uid: 2074 - components: - - type: Transform - pos: -42.5,59.5 - parent: 2 - - uid: 2075 - components: - - type: Transform - pos: -42.5,60.5 - parent: 2 - - uid: 2076 - components: - - type: Transform - pos: -42.5,61.5 - parent: 2 - - uid: 2077 - components: - - type: Transform - pos: -42.5,62.5 - parent: 2 - - uid: 2078 - components: - - type: Transform - pos: -42.5,63.5 - parent: 2 - - uid: 2079 - components: - - type: Transform - pos: -42.5,64.5 - parent: 2 - - uid: 2080 - components: - - type: Transform - pos: -42.5,65.5 - parent: 2 - - uid: 2081 - components: - - type: Transform - pos: -42.5,66.5 - parent: 2 - - uid: 2082 - components: - - type: Transform - pos: -42.5,67.5 - parent: 2 - - uid: 2083 - components: - - type: Transform - pos: -42.5,68.5 - parent: 2 - - uid: 2084 - components: - - type: Transform - pos: -42.5,69.5 - parent: 2 - - uid: 2085 - components: - - type: Transform - pos: -41.5,47.5 - parent: 2 - - uid: 2086 - components: - - type: Transform - pos: -40.5,47.5 - parent: 2 - - uid: 2087 - components: - - type: Transform - pos: -39.5,47.5 - parent: 2 - - uid: 2088 - components: - - type: Transform - pos: -38.5,47.5 - parent: 2 - - uid: 2089 - components: - - type: Transform - pos: -37.5,47.5 - parent: 2 - - uid: 2090 - components: - - type: Transform - pos: -36.5,47.5 - parent: 2 - - uid: 2091 - components: - - type: Transform - pos: -35.5,47.5 - parent: 2 - - uid: 2092 - components: - - type: Transform - pos: -35.5,46.5 - parent: 2 - - uid: 2093 - components: - - type: Transform - pos: -35.5,45.5 - parent: 2 - - uid: 2094 - components: - - type: Transform - pos: -35.5,44.5 - parent: 2 - - uid: 2095 - components: - - type: Transform - pos: -36.5,40.5 - parent: 2 - - uid: 2096 - components: - - type: Transform - pos: -35.5,40.5 - parent: 2 - - uid: 2097 - components: - - type: Transform - pos: -32.5,31.5 - parent: 2 - - uid: 2098 - components: - - type: Transform - pos: -32.5,32.5 - parent: 2 - - uid: 2099 - components: - - type: Transform - pos: -32.5,33.5 - parent: 2 - - uid: 2100 - components: - - type: Transform - pos: -32.5,34.5 - parent: 2 - - uid: 2101 - components: - - type: Transform - pos: -32.5,35.5 - parent: 2 - - uid: 2102 - components: - - type: Transform - pos: -32.5,36.5 - parent: 2 - - uid: 2103 - components: - - type: Transform - pos: -33.5,36.5 - parent: 2 - - uid: 2104 - components: - - type: Transform - pos: -34.5,36.5 - parent: 2 - - uid: 2105 - components: - - type: Transform - pos: -35.5,36.5 - parent: 2 - - uid: 2106 - components: - - type: Transform - pos: -36.5,36.5 - parent: 2 - - uid: 2107 - components: - - type: Transform - pos: -36.5,37.5 - parent: 2 - - uid: 2108 - components: - - type: Transform - pos: -36.5,38.5 - parent: 2 - - uid: 2109 - components: - - type: Transform - pos: -36.5,39.5 - parent: 2 - - uid: 2110 - components: - - type: Transform - pos: -34.5,40.5 - parent: 2 - - uid: 2111 - components: - - type: Transform - pos: -33.5,40.5 - parent: 2 - - uid: 2112 - components: - - type: Transform - pos: -32.5,40.5 - parent: 2 - - uid: 2113 - components: - - type: Transform - pos: -31.5,40.5 - parent: 2 - - uid: 2114 - components: - - type: Transform - pos: -18.5,41.5 - parent: 2 - - uid: 2115 - components: - - type: Transform - pos: -19.5,41.5 - parent: 2 - - uid: 2116 - components: - - type: Transform - pos: -20.5,41.5 - parent: 2 - - uid: 2117 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - - uid: 2118 - components: - - type: Transform - pos: -22.5,41.5 - parent: 2 - - uid: 2119 - components: - - type: Transform - pos: -23.5,41.5 - parent: 2 - - uid: 2120 - components: - - type: Transform - pos: -24.5,41.5 - parent: 2 - - uid: 2121 - components: - - type: Transform - pos: -25.5,41.5 - parent: 2 - - uid: 2122 - components: - - type: Transform - pos: -26.5,41.5 - parent: 2 - - uid: 2123 - components: - - type: Transform - pos: -27.5,41.5 - parent: 2 - - uid: 2124 - components: - - type: Transform - pos: -23.5,40.5 - parent: 2 - - uid: 2125 - components: - - type: Transform - pos: -23.5,39.5 - parent: 2 - - uid: 2126 - components: - - type: Transform - pos: -23.5,38.5 - parent: 2 - - uid: 2127 - components: - - type: Transform - pos: -23.5,42.5 - parent: 2 - - uid: 2128 - components: - - type: Transform - pos: -0.5,20.5 - parent: 2 - - uid: 2129 - components: - - type: Transform - pos: -0.5,19.5 - parent: 2 - - uid: 2130 - components: - - type: Transform - pos: 0.5,19.5 - parent: 2 - - uid: 2131 - components: - - type: Transform - pos: -7.5,37.5 - parent: 2 - - uid: 2132 - components: - - type: Transform - pos: -7.5,38.5 - parent: 2 - - uid: 2133 - components: - - type: Transform - pos: 0.5,18.5 - parent: 2 - - uid: 2134 - components: - - type: Transform - pos: 1.5,19.5 - parent: 2 - - uid: 2135 - components: - - type: Transform - pos: -12.5,38.5 - parent: 2 - - uid: 2136 - components: - - type: Transform - pos: -13.5,38.5 - parent: 2 - - uid: 2137 - components: - - type: Transform - pos: -14.5,38.5 - parent: 2 - - uid: 2138 - components: - - type: Transform - pos: -15.5,38.5 - parent: 2 - - uid: 2139 - components: - - type: Transform - pos: -0.5,21.5 - parent: 2 - - uid: 2140 - components: - - type: Transform - pos: 1.5,20.5 - parent: 2 - - uid: 2141 - components: - - type: Transform - pos: -15.5,37.5 - parent: 2 - - uid: 2142 - components: - - type: Transform - pos: -15.5,36.5 - parent: 2 - - uid: 2143 - components: - - type: Transform - pos: -15.5,35.5 - parent: 2 - - uid: 2144 - components: - - type: Transform - pos: -15.5,34.5 - parent: 2 - - uid: 2145 - components: - - type: Transform - pos: -14.5,35.5 - parent: 2 - - uid: 2146 - components: - - type: Transform - pos: -13.5,35.5 - parent: 2 - - uid: 2147 - components: - - type: Transform - pos: -12.5,35.5 - parent: 2 - - uid: 2148 - components: - - type: Transform - pos: -11.5,35.5 - parent: 2 - - uid: 2149 - components: - - type: Transform - pos: -10.5,35.5 - parent: 2 - - uid: 2150 - components: - - type: Transform - pos: -9.5,35.5 - parent: 2 - - uid: 2151 - components: - - type: Transform - pos: -8.5,35.5 - parent: 2 - - uid: 2152 - components: - - type: Transform - pos: -7.5,35.5 - parent: 2 - - uid: 2153 - components: - - type: Transform - pos: -6.5,35.5 - parent: 2 - - uid: 2154 - components: - - type: Transform - pos: -5.5,35.5 - parent: 2 - - uid: 2155 - components: - - type: Transform - pos: -4.5,35.5 - parent: 2 - - uid: 2156 - components: - - type: Transform - pos: -4.5,34.5 - parent: 2 - - uid: 2157 - components: - - type: Transform - pos: -3.5,34.5 - parent: 2 - - uid: 2158 - components: - - type: Transform - pos: -2.5,34.5 - parent: 2 - - uid: 2159 - components: - - type: Transform - pos: -1.5,34.5 - parent: 2 - - uid: 2160 - components: - - type: Transform - pos: -0.5,34.5 - parent: 2 - - uid: 2161 - components: - - type: Transform - pos: 0.5,34.5 - parent: 2 - - uid: 2162 - components: - - type: Transform - pos: 0.5,33.5 - parent: 2 - - uid: 2163 - components: - - type: Transform - pos: 0.5,32.5 - parent: 2 - - uid: 2164 - components: - - type: Transform - pos: 0.5,31.5 - parent: 2 - - uid: 2165 - components: - - type: Transform - pos: 0.5,30.5 - parent: 2 - - uid: 2166 - components: - - type: Transform - pos: 0.5,29.5 - parent: 2 - - uid: 2167 - components: - - type: Transform - pos: -1.5,39.5 - parent: 2 - - uid: 2168 - components: - - type: Transform - pos: -0.5,39.5 - parent: 2 - - uid: 2169 - components: - - type: Transform - pos: 0.5,39.5 - parent: 2 - - uid: 2170 - components: - - type: Transform - pos: 0.5,40.5 - parent: 2 - - uid: 2171 - components: - - type: Transform - pos: -2.5,39.5 - parent: 2 - - uid: 2172 - components: - - type: Transform - pos: 0.5,41.5 - parent: 2 - - uid: 2173 - components: - - type: Transform - pos: 0.5,38.5 - parent: 2 - - uid: 2174 - components: - - type: Transform - pos: 0.5,37.5 - parent: 2 - - uid: 2175 - components: - - type: Transform - pos: 0.5,42.5 - parent: 2 - - uid: 2176 - components: - - type: Transform - pos: -7.5,39.5 - parent: 2 - - uid: 2177 - components: - - type: Transform - pos: -7.5,40.5 - parent: 2 - - uid: 2178 - components: - - type: Transform - pos: -7.5,41.5 - parent: 2 - - uid: 2179 - components: - - type: Transform - pos: -7.5,42.5 - parent: 2 - - uid: 2180 - components: - - type: Transform - pos: -7.5,43.5 - parent: 2 - - uid: 2181 - components: - - type: Transform - pos: -8.5,43.5 - parent: 2 - - uid: 2182 - components: - - type: Transform - pos: -9.5,43.5 - parent: 2 - - uid: 2183 - components: - - type: Transform - pos: -10.5,43.5 - parent: 2 - - uid: 2184 - components: - - type: Transform - pos: -11.5,43.5 - parent: 2 - - uid: 2185 - components: - - type: Transform - pos: -12.5,43.5 - parent: 2 - - uid: 2186 - components: - - type: Transform - pos: -3.5,33.5 - parent: 2 - - uid: 2187 - components: - - type: Transform - pos: -3.5,32.5 - parent: 2 - - uid: 2188 - components: - - type: Transform - pos: -3.5,31.5 - parent: 2 - - uid: 2189 - components: - - type: Transform - pos: -3.5,30.5 - parent: 2 - - uid: 2190 - components: - - type: Transform - pos: 2.5,8.5 - parent: 2 - - uid: 2191 - components: - - type: Transform - pos: 2.5,7.5 - parent: 2 - - uid: 2192 - components: - - type: Transform - pos: 1.5,7.5 - parent: 2 - - uid: 2193 - components: - - type: Transform - pos: 0.5,7.5 - parent: 2 - - uid: 2194 - components: - - type: Transform - pos: -4.5,30.5 - parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 3.5,8.5 - parent: 2 - - uid: 2196 - components: - - type: Transform - pos: 3.5,7.5 - parent: 2 - - uid: 2197 - components: - - type: Transform - pos: 0.5,28.5 - parent: 2 - - uid: 2198 - components: - - type: Transform - pos: 0.5,27.5 - parent: 2 - - uid: 2199 - components: - - type: Transform - pos: 0.5,26.5 - parent: 2 - - uid: 2200 - components: - - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 2201 - components: - - type: Transform - pos: 1.5,26.5 - parent: 2 - - uid: 2202 - components: - - type: Transform - pos: 2.5,26.5 - parent: 2 - - uid: 2203 - components: - - type: Transform - pos: 3.5,26.5 - parent: 2 - - uid: 2204 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - uid: 2205 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 2206 - components: - - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 2207 - components: - - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 2208 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 2209 - components: - - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 2210 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 2211 - components: - - type: Transform - pos: 3.5,9.5 - parent: 2 - - uid: 2212 - components: - - type: Transform - pos: 3.5,10.5 - parent: 2 - - uid: 2213 - components: - - type: Transform - pos: 3.5,11.5 - parent: 2 - - uid: 2214 - components: - - type: Transform - pos: 3.5,12.5 - parent: 2 - - uid: 2215 - components: - - type: Transform - pos: 3.5,13.5 - parent: 2 - - uid: 2216 - components: - - type: Transform - pos: 3.5,14.5 - parent: 2 - - uid: 2217 - components: - - type: Transform - pos: 2.5,14.5 - parent: 2 - - uid: 2218 - components: - - type: Transform - pos: 1.5,14.5 - parent: 2 - - uid: 2219 - components: - - type: Transform - pos: 0.5,14.5 - parent: 2 - - uid: 2220 - components: - - type: Transform - pos: -0.5,14.5 - parent: 2 - - uid: 2221 - components: - - type: Transform - pos: 4.5,14.5 - parent: 2 - - uid: 2222 - components: - - type: Transform - pos: 5.5,14.5 - parent: 2 - - uid: 2223 - components: - - type: Transform - pos: 6.5,14.5 - parent: 2 - - uid: 2224 - components: - - type: Transform - pos: 7.5,14.5 - parent: 2 - - uid: 2225 - components: - - type: Transform - pos: 6.5,15.5 - parent: 2 - - uid: 2226 - components: - - type: Transform - pos: 6.5,16.5 - parent: 2 - - uid: 2227 - components: - - type: Transform - pos: 6.5,17.5 - parent: 2 - - uid: 2228 - components: - - type: Transform - pos: 6.5,18.5 - parent: 2 - - uid: 2229 - components: - - type: Transform - pos: 6.5,19.5 - parent: 2 - - uid: 2230 - components: - - type: Transform - pos: 6.5,20.5 - parent: 2 - - uid: 2231 - components: - - type: Transform - pos: 6.5,21.5 - parent: 2 - - uid: 2232 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 - - uid: 2233 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - - uid: 2234 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 2 - - uid: 2235 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 2 - - uid: 2236 - components: - - type: Transform - pos: 14.5,-6.5 - parent: 2 - - uid: 2237 - components: - - type: Transform - pos: 19.5,-8.5 - parent: 2 - - uid: 2238 - components: - - type: Transform - pos: 18.5,-7.5 - parent: 2 - - uid: 2239 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 2 - - uid: 2240 - components: - - type: Transform - pos: 20.5,-8.5 - parent: 2 - - uid: 2241 - components: - - type: Transform - pos: 21.5,-8.5 - parent: 2 - - uid: 2242 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 2243 - components: - - type: Transform - pos: 19.5,-21.5 - parent: 2 - - uid: 2244 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 2 - - uid: 2245 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 2 - - uid: 2246 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 2 - - uid: 2247 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 2 - - uid: 2248 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 2 - - uid: 2249 - components: - - type: Transform - pos: 15.5,-20.5 - parent: 2 - - uid: 2250 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - - uid: 2251 - components: - - type: Transform - pos: 10.5,-21.5 - parent: 2 - - uid: 2252 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 2 - - uid: 2253 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 2254 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - uid: 2255 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 2 - - uid: 2256 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 2 - - uid: 2257 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 2258 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 2 - - uid: 2259 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - - uid: 2260 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - - uid: 2261 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - - uid: 2262 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 2263 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - - uid: 2264 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 2 - - uid: 2265 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 2 - - uid: 2266 - components: - - type: Transform - pos: 19.5,-15.5 - parent: 2 - - uid: 2267 - components: - - type: Transform - pos: 20.5,-15.5 - parent: 2 - - uid: 2268 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 2269 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 2 - - uid: 2270 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 2 - - uid: 2271 - components: - - type: Transform - pos: 21.5,-12.5 - parent: 2 - - uid: 2272 - components: - - type: Transform - pos: 20.5,-12.5 - parent: 2 - - uid: 2273 - components: - - type: Transform - pos: 36.5,-17.5 - parent: 2 - - uid: 2274 - components: - - type: Transform - pos: 36.5,-18.5 - parent: 2 - - uid: 2275 - components: - - type: Transform - pos: 37.5,-18.5 - parent: 2 - - uid: 2276 - components: - - type: Transform - pos: 38.5,-18.5 - parent: 2 - - uid: 2277 - components: - - type: Transform - pos: 39.5,-18.5 - parent: 2 - - uid: 2278 - components: - - type: Transform - pos: 40.5,-18.5 - parent: 2 - - uid: 2279 - components: - - type: Transform - pos: 41.5,-18.5 - parent: 2 - - uid: 2280 - components: - - type: Transform - pos: 42.5,-18.5 - parent: 2 - - uid: 2281 - components: - - type: Transform - pos: 39.5,-17.5 - parent: 2 - - uid: 2282 - components: - - type: Transform - pos: 39.5,-16.5 - parent: 2 - - uid: 2283 - components: - - type: Transform - pos: 39.5,-15.5 - parent: 2 - - uid: 2284 - components: - - type: Transform - pos: 39.5,-14.5 - parent: 2 - - uid: 2285 - components: - - type: Transform - pos: 39.5,-13.5 - parent: 2 - - uid: 2286 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 2 - - uid: 2287 - components: - - type: Transform - pos: 39.5,-11.5 - parent: 2 - - uid: 2288 - components: - - type: Transform - pos: 40.5,-10.5 - parent: 2 - - uid: 2289 - components: - - type: Transform - pos: 41.5,-10.5 - parent: 2 - - uid: 2290 - components: - - type: Transform - pos: 42.5,-10.5 - parent: 2 - - uid: 2291 - components: - - type: Transform - pos: 39.5,-19.5 - parent: 2 - - uid: 2292 - components: - - type: Transform - pos: 39.5,-20.5 - parent: 2 - - uid: 2293 - components: - - type: Transform - pos: 39.5,-21.5 - parent: 2 - - uid: 2294 - components: - - type: Transform - pos: 38.5,-21.5 - parent: 2 - - uid: 2295 - components: - - type: Transform - pos: 37.5,-21.5 - parent: 2 - - uid: 2296 - components: - - type: Transform - pos: 36.5,-21.5 - parent: 2 - - uid: 2297 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 - - uid: 2298 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 2 - - uid: 2299 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 2 - - uid: 2300 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 2 - - uid: 2301 - components: - - type: Transform - pos: 31.5,-21.5 - parent: 2 - - uid: 2302 - components: - - type: Transform - pos: 30.5,-21.5 - parent: 2 - - uid: 2303 - components: - - type: Transform - pos: 30.5,-22.5 - parent: 2 - - uid: 2304 - components: - - type: Transform - pos: 30.5,-23.5 - parent: 2 - - uid: 2305 - components: - - type: Transform - pos: 37.5,-22.5 - parent: 2 - - uid: 2306 - components: - - type: Transform - pos: 37.5,-23.5 - parent: 2 - - uid: 2307 - components: - - type: Transform - pos: 29.5,-21.5 - parent: 2 - - uid: 2308 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 2 - - uid: 2309 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - - uid: 2310 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 2 - - uid: 2311 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 2 - - uid: 2312 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 2313 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 2314 - components: - - type: Transform - pos: 45.5,11.5 - parent: 2 - - uid: 2315 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 2316 - components: - - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 2317 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - uid: 2318 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 2319 - components: - - type: Transform - pos: 50.5,11.5 - parent: 2 - - uid: 2320 - components: - - type: Transform - pos: 51.5,11.5 - parent: 2 - - uid: 2321 - components: - - type: Transform - pos: 52.5,11.5 - parent: 2 - - uid: 2322 - components: - - type: Transform - pos: 53.5,11.5 - parent: 2 - - uid: 2323 - components: - - type: Transform - pos: 54.5,11.5 - parent: 2 - - uid: 2324 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 2325 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 2326 - components: - - type: Transform - pos: 57.5,11.5 - parent: 2 - - uid: 2327 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 2328 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 2329 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 2330 - components: - - type: Transform - pos: 61.5,11.5 - parent: 2 - - uid: 2331 - components: - - type: Transform - pos: 62.5,11.5 - parent: 2 - - uid: 2332 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 2333 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 2334 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 2 - - uid: 2335 - components: - - type: Transform - pos: 31.5,-15.5 - parent: 2 - - uid: 2336 - components: - - type: Transform - pos: 32.5,-15.5 - parent: 2 - - uid: 2337 - components: - - type: Transform - pos: 33.5,-15.5 - parent: 2 - - uid: 2338 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 2 - - uid: 2339 - components: - - type: Transform - pos: 35.5,-15.5 - parent: 2 - - uid: 2340 - components: - - type: Transform - pos: 36.5,-15.5 - parent: 2 - - uid: 2341 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 2 - - uid: 2342 - components: - - type: Transform - pos: 38.5,-15.5 - parent: 2 - - uid: 2343 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 2 - - uid: 2344 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 2 - - uid: 2345 - components: - - type: Transform - pos: 26.5,-15.5 - parent: 2 - - uid: 2346 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 2 - - uid: 2347 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 2 - - uid: 2348 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 2 - - uid: 2349 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 2 - - uid: 2350 - components: - - type: Transform - pos: 25.5,-11.5 - parent: 2 - - uid: 2351 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 2352 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - - uid: 2353 - components: - - type: Transform - pos: 39.5,-5.5 - parent: 2 - - uid: 2354 - components: - - type: Transform - pos: 39.5,-6.5 - parent: 2 - - uid: 2355 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 - - uid: 2356 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 2357 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 2 - - uid: 2358 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 2 - - uid: 2359 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 2 - - uid: 2360 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 2 - - uid: 2361 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - - uid: 2362 - components: - - type: Transform - pos: -6.5,23.5 - parent: 2 - - uid: 2363 - components: - - type: Transform - pos: -6.5,24.5 - parent: 2 - - uid: 2364 - components: - - type: Transform - pos: -9.5,21.5 - parent: 2 - - uid: 2365 - components: - - type: Transform - pos: -9.5,-85.5 - parent: 2 - - uid: 2366 - components: - - type: Transform - pos: -29.5,-79.5 - parent: 2 - - uid: 2367 - components: - - type: Transform - pos: -29.5,-78.5 - parent: 2 - - uid: 2368 - components: - - type: Transform - pos: -29.5,-77.5 - parent: 2 - - uid: 2369 - components: - - type: Transform - pos: -29.5,-80.5 - parent: 2 - - uid: 2370 - components: - - type: Transform - pos: -29.5,-76.5 - parent: 2 - - uid: 2371 - components: - - type: Transform - pos: -29.5,-75.5 - parent: 2 - - uid: 2372 - components: - - type: Transform - pos: -29.5,-74.5 - parent: 2 - - uid: 2373 - components: - - type: Transform - pos: -29.5,-73.5 - parent: 2 - - uid: 2374 - components: - - type: Transform - pos: -28.5,-76.5 - parent: 2 - - uid: 2375 - components: - - type: Transform - pos: -27.5,-76.5 - parent: 2 - - uid: 2376 - components: - - type: Transform - pos: -26.5,-76.5 - parent: 2 - - uid: 2377 - components: - - type: Transform - pos: -26.5,-75.5 - parent: 2 - - uid: 2378 - components: - - type: Transform - pos: -26.5,-74.5 - parent: 2 - - uid: 2379 - components: - - type: Transform - pos: -26.5,-73.5 - parent: 2 - - uid: 2380 - components: - - type: Transform - pos: -26.5,-77.5 - parent: 2 - - uid: 2381 - components: - - type: Transform - pos: -26.5,-78.5 - parent: 2 - - uid: 2382 - components: - - type: Transform - pos: -26.5,-79.5 - parent: 2 - - uid: 2383 - components: - - type: Transform - pos: -24.5,-76.5 - parent: 2 - - uid: 2384 - components: - - type: Transform - pos: -25.5,-76.5 - parent: 2 - - uid: 2385 - components: - - type: Transform - pos: -26.5,10.5 - parent: 2 - - uid: 2386 - components: - - type: Transform - pos: -25.5,10.5 - parent: 2 - - uid: 2387 - components: - - type: Transform - pos: -23.5,-76.5 - parent: 2 - - uid: 2388 - components: - - type: Transform - pos: -22.5,-76.5 - parent: 2 - - uid: 2389 - components: - - type: Transform - pos: -21.5,-76.5 - parent: 2 - - uid: 2390 - components: - - type: Transform - pos: -20.5,-76.5 - parent: 2 - - uid: 2391 - components: - - type: Transform - pos: -19.5,-76.5 - parent: 2 - - uid: 2392 - components: - - type: Transform - pos: -2.5,-76.5 - parent: 2 - - uid: 2393 - components: - - type: Transform - pos: -23.5,5.5 - parent: 2 - - uid: 2394 - components: - - type: Transform - pos: -20.5,6.5 - parent: 2 - - uid: 2395 - components: - - type: Transform - pos: -20.5,-75.5 - parent: 2 - - uid: 2396 - components: - - type: Transform - pos: -20.5,-74.5 - parent: 2 - - uid: 2397 - components: - - type: Transform - pos: -20.5,-73.5 - parent: 2 - - uid: 2398 - components: - - type: Transform - pos: -20.5,-78.5 - parent: 2 - - uid: 2399 - components: - - type: Transform - pos: -20.5,-79.5 - parent: 2 - - uid: 2400 - components: - - type: Transform - pos: -20.5,-77.5 - parent: 2 - - uid: 2401 - components: - - type: Transform - pos: -25.5,9.5 - parent: 2 - - uid: 2402 - components: - - type: Transform - pos: -25.5,8.5 - parent: 2 - - uid: 2403 - components: - - type: Transform - pos: -25.5,7.5 - parent: 2 - - uid: 2404 - components: - - type: Transform - pos: -25.5,6.5 - parent: 2 - - uid: 2405 - components: - - type: Transform - pos: -25.5,5.5 - parent: 2 - - uid: 2406 - components: - - type: Transform - pos: -24.5,5.5 - parent: 2 - - uid: 2407 - components: - - type: Transform - pos: -21.5,5.5 - parent: 2 - - uid: 2408 - components: - - type: Transform - pos: -3.5,-76.5 - parent: 2 - - uid: 2409 - components: - - type: Transform - pos: -4.5,-76.5 - parent: 2 - - uid: 2410 - components: - - type: Transform - pos: -12.5,-76.5 - parent: 2 - - uid: 2411 - components: - - type: Transform - pos: -11.5,-76.5 - parent: 2 - - uid: 2412 - components: - - type: Transform - pos: -10.5,-76.5 - parent: 2 - - uid: 2413 - components: - - type: Transform - pos: -10.5,-75.5 - parent: 2 - - uid: 2414 - components: - - type: Transform - pos: -10.5,-74.5 - parent: 2 - - uid: 2415 - components: - - type: Transform - pos: -9.5,-74.5 - parent: 2 - - uid: 2416 - components: - - type: Transform - pos: -8.5,-74.5 - parent: 2 - - uid: 2417 - components: - - type: Transform - pos: -7.5,-74.5 - parent: 2 - - uid: 2418 - components: - - type: Transform - pos: -6.5,-74.5 - parent: 2 - - uid: 2419 - components: - - type: Transform - pos: -5.5,-74.5 - parent: 2 - - uid: 2420 - components: - - type: Transform - pos: -25.5,11.5 - parent: 2 - - uid: 2421 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - uid: 2422 - components: - - type: Transform - pos: -25.5,13.5 - parent: 2 - - uid: 2423 - components: - - type: Transform - pos: -25.5,14.5 - parent: 2 - - uid: 2424 - components: - - type: Transform - pos: -25.5,15.5 - parent: 2 - - uid: 2425 - components: - - type: Transform - pos: -25.5,16.5 - parent: 2 - - uid: 2426 - components: - - type: Transform - pos: -24.5,16.5 - parent: 2 - - uid: 2427 - components: - - type: Transform - pos: -17.5,5.5 - parent: 2 - - uid: 2428 - components: - - type: Transform - pos: -5.5,-76.5 - parent: 2 - - uid: 2429 - components: - - type: Transform - pos: -5.5,-77.5 - parent: 2 - - uid: 2430 - components: - - type: Transform - pos: -5.5,-78.5 - parent: 2 - - uid: 2431 - components: - - type: Transform - pos: -6.5,-78.5 - parent: 2 - - uid: 2432 - components: - - type: Transform - pos: -7.5,-78.5 - parent: 2 - - uid: 2433 - components: - - type: Transform - pos: -8.5,-78.5 - parent: 2 - - uid: 2434 - components: - - type: Transform - pos: -9.5,-78.5 - parent: 2 - - uid: 2435 - components: - - type: Transform - pos: -10.5,-78.5 - parent: 2 - - uid: 2436 - components: - - type: Transform - pos: -11.5,-78.5 - parent: 2 - - uid: 2437 - components: - - type: Transform - pos: -23.5,16.5 - parent: 2 - - uid: 2438 - components: - - type: Transform - pos: -11.5,-77.5 - parent: 2 - - uid: 2439 - components: - - type: Transform - pos: -18.5,6.5 - parent: 2 - - uid: 2440 - components: - - type: Transform - pos: -5.5,-75.5 - parent: 2 - - uid: 2441 - components: - - type: Transform - pos: -18.5,-72.5 - parent: 2 - - uid: 2442 - components: - - type: Transform - pos: -17.5,-72.5 - parent: 2 - - uid: 2443 - components: - - type: Transform - pos: -16.5,-72.5 - parent: 2 - - uid: 2444 - components: - - type: Transform - pos: -16.5,-73.5 - parent: 2 - - uid: 2445 - components: - - type: Transform - pos: -16.5,-74.5 - parent: 2 - - uid: 2446 - components: - - type: Transform - pos: -16.5,-75.5 - parent: 2 - - uid: 2447 - components: - - type: Transform - pos: -16.5,-76.5 - parent: 2 - - uid: 2448 - components: - - type: Transform - pos: -16.5,-77.5 - parent: 2 - - uid: 2449 - components: - - type: Transform - pos: -16.5,-78.5 - parent: 2 - - uid: 2450 - components: - - type: Transform - pos: -16.5,-79.5 - parent: 2 - - uid: 2451 - components: - - type: Transform - pos: -16.5,-80.5 - parent: 2 - - uid: 2452 - components: - - type: Transform - pos: -16.5,-81.5 - parent: 2 - - uid: 2453 - components: - - type: Transform - pos: -16.5,-82.5 - parent: 2 - - uid: 2454 - components: - - type: Transform - pos: -16.5,-83.5 - parent: 2 - - uid: 2455 - components: - - type: Transform - pos: -16.5,-84.5 - parent: 2 - - uid: 2456 - components: - - type: Transform - pos: -16.5,-85.5 - parent: 2 - - uid: 2457 - components: - - type: Transform - pos: -16.5,-86.5 - parent: 2 - - uid: 2458 - components: - - type: Transform - pos: -10.5,-86.5 - parent: 2 - - uid: 2459 - components: - - type: Transform - pos: -10.5,-85.5 - parent: 2 - - uid: 2460 - components: - - type: Transform - pos: -8.5,-85.5 - parent: 2 - - uid: 2461 - components: - - type: Transform - pos: -7.5,-85.5 - parent: 2 - - uid: 2462 - components: - - type: Transform - pos: -6.5,-85.5 - parent: 2 - - uid: 2463 - components: - - type: Transform - pos: -5.5,-85.5 - parent: 2 - - uid: 2464 - components: - - type: Transform - pos: -4.5,-85.5 - parent: 2 - - uid: 2465 - components: - - type: Transform - pos: -3.5,-85.5 - parent: 2 - - uid: 2466 - components: - - type: Transform - pos: -3.5,-84.5 - parent: 2 - - uid: 2467 - components: - - type: Transform - pos: -2.5,-84.5 - parent: 2 - - uid: 2468 - components: - - type: Transform - pos: -1.5,-84.5 - parent: 2 - - uid: 2469 - components: - - type: Transform - pos: -0.5,-84.5 - parent: 2 - - uid: 2470 - components: - - type: Transform - pos: 0.5,-84.5 - parent: 2 - - uid: 2471 - components: - - type: Transform - pos: 1.5,-84.5 - parent: 2 - - uid: 2472 - components: - - type: Transform - pos: 1.5,-83.5 - parent: 2 - - uid: 2473 - components: - - type: Transform - pos: 1.5,-82.5 - parent: 2 - - uid: 2474 - components: - - type: Transform - pos: 1.5,-81.5 - parent: 2 - - uid: 2475 - components: - - type: Transform - pos: 1.5,-80.5 - parent: 2 - - uid: 2476 - components: - - type: Transform - pos: 1.5,-79.5 - parent: 2 - - uid: 2477 - components: - - type: Transform - pos: 1.5,-78.5 - parent: 2 - - uid: 2478 - components: - - type: Transform - pos: 1.5,-77.5 - parent: 2 - - uid: 2479 - components: - - type: Transform - pos: 1.5,-76.5 - parent: 2 - - uid: 2480 - components: - - type: Transform - pos: 1.5,-75.5 - parent: 2 - - uid: 2481 - components: - - type: Transform - pos: 1.5,-74.5 - parent: 2 - - uid: 2482 - components: - - type: Transform - pos: 1.5,-73.5 - parent: 2 - - uid: 2483 - components: - - type: Transform - pos: 1.5,-72.5 - parent: 2 - - uid: 2484 - components: - - type: Transform - pos: 1.5,-71.5 - parent: 2 - - uid: 2485 - components: - - type: Transform - pos: 1.5,-70.5 - parent: 2 - - uid: 2486 - components: - - type: Transform - pos: 1.5,-69.5 - parent: 2 - - uid: 2487 - components: - - type: Transform - pos: 1.5,-68.5 - parent: 2 - - uid: 2488 - components: - - type: Transform - pos: 0.5,-68.5 - parent: 2 - - uid: 2489 - components: - - type: Transform - pos: -0.5,-68.5 - parent: 2 - - uid: 2490 - components: - - type: Transform - pos: -1.5,-68.5 - parent: 2 - - uid: 2491 - components: - - type: Transform - pos: -2.5,-68.5 - parent: 2 - - uid: 2492 - components: - - type: Transform - pos: -3.5,-68.5 - parent: 2 - - uid: 2493 - components: - - type: Transform - pos: -3.5,-67.5 - parent: 2 - - uid: 2494 - components: - - type: Transform - pos: -4.5,-67.5 - parent: 2 - - uid: 2495 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 2 - - uid: 2496 - components: - - type: Transform - pos: -6.5,-67.5 - parent: 2 - - uid: 2497 - components: - - type: Transform - pos: -7.5,-67.5 - parent: 2 - - uid: 2498 - components: - - type: Transform - pos: -8.5,-67.5 - parent: 2 - - uid: 2499 - components: - - type: Transform - pos: -9.5,-67.5 - parent: 2 - - uid: 2500 - components: - - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 2501 - components: - - type: Transform - pos: -35.5,-69.5 - parent: 2 - - uid: 2502 - components: - - type: Transform - pos: -10.5,-66.5 - parent: 2 - - uid: 2503 - components: - - type: Transform - pos: -11.5,-66.5 - parent: 2 - - uid: 2504 - components: - - type: Transform - pos: -12.5,-66.5 - parent: 2 - - uid: 2505 - components: - - type: Transform - pos: -13.5,-66.5 - parent: 2 - - uid: 2506 - components: - - type: Transform - pos: -14.5,-66.5 - parent: 2 - - uid: 2507 - components: - - type: Transform - pos: -15.5,-66.5 - parent: 2 - - uid: 2508 - components: - - type: Transform - pos: -16.5,-66.5 - parent: 2 - - uid: 2509 - components: - - type: Transform - pos: -17.5,-66.5 - parent: 2 - - uid: 2510 - components: - - type: Transform - pos: -18.5,-66.5 - parent: 2 - - uid: 2511 - components: - - type: Transform - pos: -19.5,-66.5 - parent: 2 - - uid: 2512 - components: - - type: Transform - pos: -20.5,-66.5 - parent: 2 - - uid: 2513 - components: - - type: Transform - pos: -21.5,-66.5 - parent: 2 - - uid: 2514 - components: - - type: Transform - pos: -21.5,-67.5 - parent: 2 - - uid: 2515 - components: - - type: Transform - pos: -21.5,-68.5 - parent: 2 - - uid: 2516 - components: - - type: Transform - pos: -22.5,-68.5 - parent: 2 - - uid: 2517 - components: - - type: Transform - pos: -23.5,-68.5 - parent: 2 - - uid: 2518 - components: - - type: Transform - pos: -24.5,-68.5 - parent: 2 - - uid: 2519 - components: - - type: Transform - pos: -25.5,-68.5 - parent: 2 - - uid: 2520 - components: - - type: Transform - pos: -26.5,-68.5 - parent: 2 - - uid: 2521 - components: - - type: Transform - pos: -27.5,-68.5 - parent: 2 - - uid: 2522 - components: - - type: Transform - pos: -28.5,-68.5 - parent: 2 - - uid: 2523 - components: - - type: Transform - pos: -29.5,-68.5 - parent: 2 - - uid: 2524 - components: - - type: Transform - pos: -30.5,-68.5 - parent: 2 - - uid: 2525 - components: - - type: Transform - pos: -31.5,-68.5 - parent: 2 - - uid: 2526 - components: - - type: Transform - pos: -32.5,-68.5 - parent: 2 - - uid: 2527 - components: - - type: Transform - pos: -33.5,-68.5 - parent: 2 - - uid: 2528 - components: - - type: Transform - pos: -34.5,-68.5 - parent: 2 - - uid: 2529 - components: - - type: Transform - pos: -35.5,-68.5 - parent: 2 - - uid: 2530 - components: - - type: Transform - pos: -35.5,-70.5 - parent: 2 - - uid: 2531 - components: - - type: Transform - pos: -35.5,-71.5 - parent: 2 - - uid: 2532 - components: - - type: Transform - pos: -35.5,-72.5 - parent: 2 - - uid: 2533 - components: - - type: Transform - pos: -35.5,-73.5 - parent: 2 - - uid: 2534 - components: - - type: Transform - pos: -35.5,-74.5 - parent: 2 - - uid: 2535 - components: - - type: Transform - pos: -35.5,-75.5 - parent: 2 - - uid: 2536 - components: - - type: Transform - pos: -35.5,-76.5 - parent: 2 - - uid: 2537 - components: - - type: Transform - pos: -35.5,-77.5 - parent: 2 - - uid: 2538 - components: - - type: Transform - pos: -35.5,-78.5 - parent: 2 - - uid: 2539 - components: - - type: Transform - pos: -35.5,-79.5 - parent: 2 - - uid: 2540 - components: - - type: Transform - pos: -35.5,-80.5 - parent: 2 - - uid: 2541 - components: - - type: Transform - pos: -35.5,-81.5 - parent: 2 - - uid: 2542 - components: - - type: Transform - pos: -35.5,-82.5 - parent: 2 - - uid: 2543 - components: - - type: Transform - pos: -35.5,-83.5 - parent: 2 - - uid: 2544 - components: - - type: Transform - pos: -35.5,-84.5 - parent: 2 - - uid: 2545 - components: - - type: Transform - pos: -34.5,-84.5 - parent: 2 - - uid: 2546 - components: - - type: Transform - pos: -33.5,-84.5 - parent: 2 - - uid: 2547 - components: - - type: Transform - pos: -32.5,-84.5 - parent: 2 - - uid: 2548 - components: - - type: Transform - pos: -31.5,-84.5 - parent: 2 - - uid: 2549 - components: - - type: Transform - pos: -30.5,-84.5 - parent: 2 - - uid: 2550 - components: - - type: Transform - pos: -29.5,-84.5 - parent: 2 - - uid: 2551 - components: - - type: Transform - pos: -28.5,-84.5 - parent: 2 - - uid: 2552 - components: - - type: Transform - pos: -27.5,-84.5 - parent: 2 - - uid: 2553 - components: - - type: Transform - pos: -26.5,-84.5 - parent: 2 - - uid: 2554 - components: - - type: Transform - pos: -25.5,-84.5 - parent: 2 - - uid: 2555 - components: - - type: Transform - pos: -24.5,-84.5 - parent: 2 - - uid: 2556 - components: - - type: Transform - pos: -23.5,-84.5 - parent: 2 - - uid: 2557 - components: - - type: Transform - pos: -22.5,-84.5 - parent: 2 - - uid: 2558 - components: - - type: Transform - pos: -21.5,-84.5 - parent: 2 - - uid: 2559 - components: - - type: Transform - pos: -21.5,-85.5 - parent: 2 - - uid: 2560 - components: - - type: Transform - pos: -21.5,-86.5 - parent: 2 - - uid: 2561 - components: - - type: Transform - pos: -21.5,-87.5 - parent: 2 - - uid: 2562 - components: - - type: Transform - pos: -33.5,-60.5 - parent: 2 - - uid: 2563 - components: - - type: Transform - pos: -16.5,-67.5 - parent: 2 - - uid: 2564 - components: - - type: Transform - pos: -16.5,-68.5 - parent: 2 - - uid: 2565 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 2 - - uid: 2566 - components: - - type: Transform - pos: -16.5,-70.5 - parent: 2 - - uid: 2567 - components: - - type: Transform - pos: -16.5,-71.5 - parent: 2 - - uid: 2568 - components: - - type: Transform - pos: -33.5,-67.5 - parent: 2 - - uid: 2569 - components: - - type: Transform - pos: -33.5,-66.5 - parent: 2 - - uid: 2570 - components: - - type: Transform - pos: -33.5,-65.5 - parent: 2 - - uid: 2571 - components: - - type: Transform - pos: -33.5,-64.5 - parent: 2 - - uid: 2572 - components: - - type: Transform - pos: -33.5,-63.5 - parent: 2 - - uid: 2573 - components: - - type: Transform - pos: -33.5,-62.5 - parent: 2 - - uid: 2574 - components: - - type: Transform - pos: -33.5,-61.5 - parent: 2 - - uid: 2575 - components: - - type: Transform - pos: -33.5,-59.5 - parent: 2 - - uid: 2576 - components: - - type: Transform - pos: -33.5,-58.5 - parent: 2 - - uid: 2577 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 2 - - uid: 2578 - components: - - type: Transform - pos: -33.5,-56.5 - parent: 2 - - uid: 2579 - components: - - type: Transform - pos: -33.5,-55.5 - parent: 2 - - uid: 2580 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - uid: 2581 - components: - - type: Transform - pos: -33.5,-53.5 - parent: 2 - - uid: 2582 - components: - - type: Transform - pos: -33.5,-52.5 - parent: 2 - - uid: 2583 - components: - - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 2585 - components: - - type: Transform - pos: 1.5,-67.5 - parent: 2 - - uid: 2586 - components: - - type: Transform - pos: 1.5,-66.5 - parent: 2 - - uid: 2587 - components: - - type: Transform - pos: 1.5,-65.5 - parent: 2 - - uid: 2588 - components: - - type: Transform - pos: 1.5,-64.5 - parent: 2 - - uid: 2589 - components: - - type: Transform - pos: 1.5,-63.5 - parent: 2 - - uid: 2590 - components: - - type: Transform - pos: 1.5,-62.5 - parent: 2 - - uid: 2591 - components: - - type: Transform - pos: 1.5,-61.5 - parent: 2 - - uid: 2592 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 2 - - uid: 2593 - components: - - type: Transform - pos: 1.5,-59.5 - parent: 2 - - uid: 2594 - components: - - type: Transform - pos: 1.5,-58.5 - parent: 2 - - uid: 2595 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 2 - - uid: 2596 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 2 - - uid: 2597 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 2 - - uid: 2598 - components: - - type: Transform - pos: 2.5,-37.5 - parent: 2 - - uid: 2599 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 2 - - uid: 2600 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 2 - - uid: 2601 - components: - - type: Transform - pos: -6.5,-37.5 - parent: 2 - - uid: 2602 - components: - - type: Transform - pos: -19.5,-35.5 - parent: 2 - - uid: 2603 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 2 - - uid: 2604 - components: - - type: Transform - pos: -19.5,-33.5 - parent: 2 - - uid: 2605 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 2 - - uid: 2606 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 2 - - uid: 2607 - components: - - type: Transform - pos: -19.5,-30.5 - parent: 2 - - uid: 2608 - components: - - type: Transform - pos: -20.5,-31.5 - parent: 2 - - uid: 2609 - components: - - type: Transform - pos: -21.5,-31.5 - parent: 2 - - uid: 2610 - components: - - type: Transform - pos: -22.5,-31.5 - parent: 2 - - uid: 2611 - components: - - type: Transform - pos: -22.5,-30.5 - parent: 2 - - uid: 2612 - components: - - type: Transform - pos: -22.5,-29.5 - parent: 2 - - uid: 2613 - components: - - type: Transform - pos: -22.5,-28.5 - parent: 2 - - uid: 2614 - components: - - type: Transform - pos: -19.5,-39.5 - parent: 2 - - uid: 2615 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 2 - - uid: 2616 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 2617 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 2 - - uid: 2618 - components: - - type: Transform - pos: -19.5,-43.5 - parent: 2 - - uid: 2619 - components: - - type: Transform - pos: -19.5,-44.5 - parent: 2 - - uid: 2620 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 2 - - uid: 2621 - components: - - type: Transform - pos: -19.5,-46.5 - parent: 2 - - uid: 2677 - components: - - type: Transform - pos: -11.5,-30.5 - parent: 2 - - uid: 2678 - components: - - type: Transform - pos: -11.5,-31.5 - parent: 2 - - uid: 2679 - components: - - type: Transform - pos: -8.5,-18.5 - parent: 2 - - uid: 2680 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 2 - - uid: 2681 - components: - - type: Transform - pos: -11.5,-34.5 - parent: 2 - - uid: 2682 - components: - - type: Transform - pos: -11.5,-35.5 - parent: 2 - - uid: 2683 - components: - - type: Transform - pos: -11.5,-36.5 - parent: 2 - - uid: 2684 - components: - - type: Transform - pos: -11.5,-37.5 - parent: 2 - - uid: 2685 - components: - - type: Transform - pos: -11.5,-38.5 - parent: 2 - - uid: 2686 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 2 - - uid: 2687 - components: - - type: Transform - pos: -35.5,-0.5 - parent: 2 - - uid: 2688 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - - uid: 2689 - components: - - type: Transform - pos: -11.5,-18.5 - parent: 2 - - uid: 2690 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 2 - - uid: 2691 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 2 - - uid: 2692 - components: - - type: Transform - pos: -35.5,0.5 - parent: 2 - - uid: 2693 - components: - - type: Transform - pos: -35.5,1.5 - parent: 2 - - uid: 2694 - components: - - type: Transform - pos: -35.5,2.5 - parent: 2 - - uid: 2695 - components: - - type: Transform - pos: -35.5,-2.5 - parent: 2 - - uid: 2696 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 2 - - uid: 2697 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - uid: 2698 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 2 - - uid: 2699 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - - uid: 2700 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 2 - - uid: 2701 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 2 - - uid: 2702 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 2 - - uid: 2703 - components: - - type: Transform - pos: -28.5,-0.5 - parent: 2 - - uid: 2704 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 2 - - uid: 2705 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 2 - - uid: 2706 - components: - - type: Transform - pos: 4.5,-23.5 - parent: 2 - - uid: 2707 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 2 - - uid: 2708 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - - uid: 2709 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 - - uid: 2710 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 2 - - uid: 2711 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 2 - - uid: 2712 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 2 - - uid: 2713 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 2 - - uid: 2714 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 2 - - uid: 2715 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 2 - - uid: 2716 - components: - - type: Transform - pos: -3.5,-21.5 - parent: 2 - - uid: 2717 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 2 - - uid: 2718 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - uid: 2719 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 2 - - uid: 2720 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 2 - - uid: 2721 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 2 - - uid: 2722 - components: - - type: Transform - pos: -1.5,-25.5 - parent: 2 - - uid: 2723 - components: - - type: Transform - pos: -1.5,-26.5 - parent: 2 - - uid: 2724 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 2 - - uid: 2725 - components: - - type: Transform - pos: -1.5,-28.5 - parent: 2 - - uid: 2726 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 2 - - uid: 2727 - components: - - type: Transform - pos: 10.5,-22.5 - parent: 2 - - uid: 2728 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 2 - - uid: 2729 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 2 - - uid: 2730 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 2 - - uid: 2731 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 - - uid: 2732 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 2 - - uid: 2733 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 2 - - uid: 2734 - components: - - type: Transform - pos: -18.5,-28.5 - parent: 2 - - uid: 2735 - components: - - type: Transform - pos: -18.5,-27.5 - parent: 2 - - uid: 2736 - components: - - type: Transform - pos: -22.5,-27.5 - parent: 2 - - uid: 2737 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 2 - - uid: 2738 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 2 - - uid: 2739 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 2 - - uid: 2740 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 2 - - uid: 2741 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 2 - - uid: 2742 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 2 - - uid: 2743 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 2 - - uid: 2744 - components: - - type: Transform - pos: -30.5,-27.5 - parent: 2 - - uid: 2745 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 2746 - components: - - type: Transform - pos: 19.5,6.5 - parent: 2 - - uid: 2747 - components: - - type: Transform - pos: 22.5,20.5 - parent: 2 - - uid: 2748 - components: - - type: Transform - pos: -52.5,-3.5 - parent: 2 - - uid: 2749 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - uid: 2750 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 2 - - uid: 2751 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 2 - - uid: 2752 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 2 - - uid: 2753 - components: - - type: Transform - pos: -48.5,-3.5 - parent: 2 - - uid: 2754 - components: - - type: Transform - pos: -52.5,-2.5 - parent: 2 - - uid: 2755 - components: - - type: Transform - pos: 22.5,17.5 - parent: 2 - - uid: 2756 - components: - - type: Transform - pos: 15.5,15.5 - parent: 2 - - uid: 2757 - components: - - type: Transform - pos: 19.5,5.5 - parent: 2 - - uid: 2758 - components: - - type: Transform - pos: -17.5,3.5 - parent: 2 - - uid: 2759 - components: - - type: Transform - pos: -52.5,-4.5 - parent: 2 - - uid: 2760 - components: - - type: Transform - pos: -46.5,-3.5 - parent: 2 - - uid: 2761 - components: - - type: Transform - pos: 19.5,7.5 - parent: 2 - - uid: 2762 - components: - - type: Transform - pos: 20.5,6.5 - parent: 2 - - uid: 2763 - components: - - type: Transform - pos: 19.5,4.5 - parent: 2 - - uid: 2764 - components: - - type: Transform - pos: 17.5,-8.5 - parent: 2 - - uid: 2765 - components: - - type: Transform - pos: 21.5,6.5 - parent: 2 - - uid: 2766 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 2 - - uid: 2767 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 2 - - uid: 2768 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - - uid: 2769 - components: - - type: Transform - pos: -8.5,-29.5 - parent: 2 - - uid: 2770 - components: - - type: Transform - pos: -8.5,-30.5 - parent: 2 - - uid: 2771 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 2 - - uid: 2772 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 2 - - uid: 2773 - components: - - type: Transform - pos: -6.5,-31.5 - parent: 2 - - uid: 2774 - components: - - type: Transform - pos: -5.5,-31.5 - parent: 2 - - uid: 2775 - components: - - type: Transform - pos: -4.5,-31.5 - parent: 2 - - uid: 2776 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 2 - - uid: 2777 - components: - - type: Transform - pos: -2.5,-31.5 - parent: 2 - - uid: 2778 - components: - - type: Transform - pos: -1.5,-31.5 - parent: 2 - - uid: 2779 - components: - - type: Transform - pos: -1.5,-32.5 - parent: 2 - - uid: 2780 - components: - - type: Transform - pos: -1.5,-33.5 - parent: 2 - - uid: 2781 - components: - - type: Transform - pos: -0.5,-31.5 - parent: 2 - - uid: 2782 - components: - - type: Transform - pos: -0.5,-33.5 - parent: 2 - - uid: 2783 - components: - - type: Transform - pos: 39.5,-10.5 - parent: 2 - - uid: 2784 - components: - - type: Transform - pos: 5.5,-27.5 - parent: 2 - - uid: 2785 - components: - - type: Transform - pos: 5.5,-24.5 - parent: 2 - - uid: 2786 - components: - - type: Transform - pos: 20.5,-29.5 - parent: 2 - - uid: 2787 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 2788 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 2789 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 2790 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 2 - - uid: 2791 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 2 - - uid: 2792 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 2 - - uid: 2793 - components: - - type: Transform - pos: 5.5,-13.5 - parent: 2 - - uid: 2794 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - uid: 2795 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 - - uid: 2796 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - uid: 2797 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 2798 - components: - - type: Transform - pos: -47.5,9.5 - parent: 2 - - uid: 2799 - components: - - type: Transform - pos: -18.5,-46.5 - parent: 2 - - uid: 2800 - components: - - type: Transform - pos: -17.5,-46.5 - parent: 2 - - uid: 2801 - components: - - type: Transform - pos: -17.5,-47.5 - parent: 2 - - uid: 2802 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 2 - - uid: 2803 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 2 - - uid: 2804 - components: - - type: Transform - pos: -12.5,41.5 - parent: 2 - - uid: 2805 - components: - - type: Transform - pos: -16.5,-62.5 - parent: 2 - - uid: 2806 - components: - - type: Transform - pos: -12.5,39.5 - parent: 2 - - uid: 2807 - components: - - type: Transform - pos: -35.5,28.5 - parent: 2 - - uid: 2808 - components: - - type: Transform - pos: -35.5,29.5 - parent: 2 - - uid: 2809 - components: - - type: Transform - pos: -12.5,40.5 - parent: 2 - - uid: 2810 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 2 - - uid: 2811 - components: - - type: Transform - pos: 21.5,-32.5 - parent: 2 - - uid: 2812 - components: - - type: Transform - pos: -29.5,30.5 - parent: 2 - - uid: 2813 - components: - - type: Transform - pos: -29.5,31.5 - parent: 2 - - uid: 2814 - components: - - type: Transform - pos: -16.5,-60.5 - parent: 2 - - uid: 2815 - components: - - type: Transform - pos: -16.5,-59.5 - parent: 2 - - uid: 2816 - components: - - type: Transform - pos: -16.5,-58.5 - parent: 2 - - uid: 2817 - components: - - type: Transform - pos: -16.5,-57.5 - parent: 2 - - uid: 2818 - components: - - type: Transform - pos: -16.5,-56.5 - parent: 2 - - uid: 2819 - components: - - type: Transform - pos: -16.5,-55.5 - parent: 2 - - uid: 2820 - components: - - type: Transform - pos: -16.5,-54.5 - parent: 2 - - uid: 2821 - components: - - type: Transform - pos: -16.5,-53.5 - parent: 2 - - uid: 2822 - components: - - type: Transform - pos: -16.5,-52.5 - parent: 2 - - uid: 2823 - components: - - type: Transform - pos: -16.5,-51.5 - parent: 2 - - uid: 2824 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 2 - - uid: 2825 - components: - - type: Transform - pos: -16.5,-49.5 - parent: 2 - - uid: 2826 - components: - - type: Transform - pos: -1.5,-17.5 - parent: 2 - - uid: 2827 - components: - - type: Transform - pos: -35.5,30.5 - parent: 2 - - uid: 2828 - components: - - type: Transform - pos: -46.5,43.5 - parent: 2 - - uid: 2829 - components: - - type: Transform - pos: 16.5,18.5 - parent: 2 - - uid: 2830 - components: - - type: Transform - pos: -47.5,43.5 - parent: 2 - - uid: 2831 - components: - - type: Transform - pos: -16.5,-61.5 - parent: 2 - - uid: 2832 - components: - - type: Transform - pos: -28.5,31.5 - parent: 2 - - uid: 2833 - components: - - type: Transform - pos: -30.5,31.5 - parent: 2 - - uid: 2834 - components: - - type: Transform - pos: -24.5,34.5 - parent: 2 - - uid: 2835 - components: - - type: Transform - pos: -25.5,34.5 - parent: 2 - - uid: 2836 - components: - - type: Transform - pos: -26.5,34.5 - parent: 2 - - uid: 2837 - components: - - type: Transform - pos: -27.5,34.5 - parent: 2 - - uid: 2838 - components: - - type: Transform - pos: -28.5,34.5 - parent: 2 - - uid: 2839 - components: - - type: Transform - pos: 6.5,-37.5 - parent: 2 - - uid: 2840 - components: - - type: Transform - pos: 19.5,-32.5 - parent: 2 - - uid: 2841 - components: - - type: Transform - pos: -12.5,42.5 - parent: 2 - - uid: 2842 - components: - - type: Transform - pos: -1.5,-18.5 - parent: 2 - - uid: 2843 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 2 - - uid: 2844 - components: - - type: Transform - pos: -62.5,34.5 - parent: 2 - - uid: 2845 - components: - - type: Transform - pos: -62.5,35.5 - parent: 2 - - uid: 2846 - components: - - type: Transform - pos: -62.5,36.5 - parent: 2 - - uid: 2847 - components: - - type: Transform - pos: 23.5,6.5 - parent: 2 - - uid: 2848 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 2849 - components: - - type: Transform - pos: -46.5,-15.5 - parent: 2 - - uid: 2850 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 2851 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - - uid: 2852 - components: - - type: Transform - pos: 22.5,4.5 - parent: 2 - - uid: 2853 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 - - uid: 2854 - components: - - type: Transform - pos: 18.5,4.5 - parent: 2 - - uid: 2855 - components: - - type: Transform - pos: 21.5,4.5 - parent: 2 - - uid: 2856 - components: - - type: Transform - pos: -16.5,-65.5 - parent: 2 - - uid: 2857 - components: - - type: Transform - pos: -32.5,-18.5 - parent: 2 - - uid: 2858 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - - uid: 2859 - components: - - type: Transform - pos: -41.5,-15.5 - parent: 2 - - uid: 2860 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 2 - - uid: 2861 - components: - - type: Transform - pos: -40.5,-12.5 - parent: 2 - - uid: 2862 - components: - - type: Transform - pos: -41.5,-12.5 - parent: 2 - - uid: 2863 - components: - - type: Transform - pos: -43.5,36.5 - parent: 2 - - uid: 2864 - components: - - type: Transform - pos: -44.5,36.5 - parent: 2 - - uid: 2865 - components: - - type: Transform - pos: -42.5,36.5 - parent: 2 - - uid: 2866 - components: - - type: Transform - pos: -42.5,35.5 - parent: 2 - - uid: 2867 - components: - - type: Transform - pos: -35.5,31.5 - parent: 2 - - uid: 2868 - components: - - type: Transform - pos: -35.5,32.5 - parent: 2 - - uid: 2869 - components: - - type: Transform - pos: -35.5,33.5 - parent: 2 - - uid: 2870 - components: - - type: Transform - pos: -47.5,40.5 - parent: 2 - - uid: 2871 - components: - - type: Transform - pos: 25.5,6.5 - parent: 2 - - uid: 2872 - components: - - type: Transform - pos: 31.5,26.5 - parent: 2 - - uid: 2873 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 2874 - components: - - type: Transform - pos: 31.5,24.5 - parent: 2 - - uid: 2875 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 2876 - components: - - type: Transform - pos: 19.5,19.5 - parent: 2 - - uid: 2877 - components: - - type: Transform - pos: 19.5,20.5 - parent: 2 - - uid: 2878 - components: - - type: Transform - pos: 19.5,21.5 - parent: 2 - - uid: 2879 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - - uid: 2880 - components: - - type: Transform - pos: 17.5,21.5 - parent: 2 - - uid: 2881 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - uid: 2882 - components: - - type: Transform - pos: 15.5,21.5 - parent: 2 - - uid: 2883 - components: - - type: Transform - pos: 15.5,20.5 - parent: 2 - - uid: 2884 - components: - - type: Transform - pos: 15.5,19.5 - parent: 2 - - uid: 2885 - components: - - type: Transform - pos: 26.5,6.5 - parent: 2 - - uid: 2886 - components: - - type: Transform - pos: -10.5,-22.5 - parent: 2 - - uid: 2887 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - uid: 2888 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 2 - - uid: 2889 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 2890 - components: - - type: Transform - pos: 27.5,6.5 - parent: 2 - - uid: 2891 - components: - - type: Transform - pos: 27.5,5.5 - parent: 2 - - uid: 2892 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 2893 - components: - - type: Transform - pos: 26.5,8.5 - parent: 2 - - uid: 2894 - components: - - type: Transform - pos: 27.5,4.5 - parent: 2 - - uid: 2895 - components: - - type: Transform - pos: 10.5,-34.5 - parent: 2 - - uid: 2896 - components: - - type: Transform - pos: 10.5,-33.5 - parent: 2 - - uid: 2897 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 2 - - uid: 2898 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 2 - - uid: 2899 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - uid: 2900 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 2 - - uid: 2901 - components: - - type: Transform - pos: 10.5,-41.5 - parent: 2 - - uid: 2902 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 2 - - uid: 2903 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 2 - - uid: 2904 - components: - - type: Transform - pos: 10.5,-44.5 - parent: 2 - - uid: 2905 - components: - - type: Transform - pos: 10.5,-45.5 - parent: 2 - - uid: 2906 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 2 - - uid: 2907 - components: - - type: Transform - pos: 11.5,-46.5 - parent: 2 - - uid: 2908 - components: - - type: Transform - pos: 12.5,-46.5 - parent: 2 - - uid: 2909 - components: - - type: Transform - pos: 13.5,-46.5 - parent: 2 - - uid: 2910 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 2 - - uid: 2911 - components: - - type: Transform - pos: 15.5,-46.5 - parent: 2 - - uid: 2912 - components: - - type: Transform - pos: 16.5,-46.5 - parent: 2 - - uid: 2913 - components: - - type: Transform - pos: 17.5,-46.5 - parent: 2 - - uid: 2914 - components: - - type: Transform - pos: 18.5,-46.5 - parent: 2 - - uid: 2915 - components: - - type: Transform - pos: 19.5,-46.5 - parent: 2 - - uid: 2916 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 2 - - uid: 2917 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 2 - - uid: 2918 - components: - - type: Transform - pos: 8.5,-38.5 - parent: 2 - - uid: 2919 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 2920 - components: - - type: Transform - pos: 9.5,-38.5 - parent: 2 - - uid: 2923 - components: - - type: Transform - pos: -0.5,-38.5 - parent: 2 - - uid: 2924 - components: - - type: Transform - pos: -1.5,-38.5 - parent: 2 - - uid: 2925 - components: - - type: Transform - pos: -2.5,-38.5 - parent: 2 - - uid: 2926 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 2 - - uid: 2927 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - - uid: 2928 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 2 - - uid: 2929 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 2 - - uid: 2930 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 2 - - uid: 2931 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 2 - - uid: 2932 - components: - - type: Transform - pos: -2.5,-36.5 - parent: 2 - - uid: 2933 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 2 - - uid: 2934 - components: - - type: Transform - pos: 1.5,-37.5 - parent: 2 - - uid: 2935 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 2 - - uid: 2936 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 2 - - uid: 2937 - components: - - type: Transform - pos: -1.5,-40.5 - parent: 2 - - uid: 2938 - components: - - type: Transform - pos: -1.5,-41.5 - parent: 2 - - uid: 2939 - components: - - type: Transform - pos: -1.5,-42.5 - parent: 2 - - uid: 2940 - components: - - type: Transform - pos: -1.5,-43.5 - parent: 2 - - uid: 2941 - components: - - type: Transform - pos: -1.5,-44.5 - parent: 2 - - uid: 2942 - components: - - type: Transform - pos: -1.5,-45.5 - parent: 2 - - uid: 2943 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - - uid: 2944 - components: - - type: Transform - pos: -1.5,-47.5 - parent: 2 - - uid: 2945 - components: - - type: Transform - pos: -1.5,-48.5 - parent: 2 - - uid: 2946 - components: - - type: Transform - pos: -1.5,-49.5 - parent: 2 - - uid: 2947 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 2 - - uid: 2948 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 2 - - uid: 2949 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 2 - - uid: 2950 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 2 - - uid: 2951 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - - uid: 2952 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 2 - - uid: 2953 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 2 - - uid: 2954 - components: - - type: Transform - pos: -7.5,-44.5 - parent: 2 - - uid: 2955 - components: - - type: Transform - pos: -7.5,-45.5 - parent: 2 - - uid: 2956 - components: - - type: Transform - pos: -7.5,-46.5 - parent: 2 - - uid: 2957 - components: - - type: Transform - pos: -7.5,-47.5 - parent: 2 - - uid: 2958 - components: - - type: Transform - pos: -7.5,-48.5 - parent: 2 - - uid: 2959 - components: - - type: Transform - pos: -7.5,-50.5 - parent: 2 - - uid: 2960 - components: - - type: Transform - pos: -7.5,-49.5 - parent: 2 - - uid: 2961 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 2962 - components: - - type: Transform - pos: 0.5,-51.5 - parent: 2 - - uid: 2963 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 2964 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 2965 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 2966 - components: - - type: Transform - pos: 1.5,-52.5 - parent: 2 - - uid: 2967 - components: - - type: Transform - pos: 1.5,-53.5 - parent: 2 - - uid: 2968 - components: - - type: Transform - pos: 2.5,-53.5 - parent: 2 - - uid: 2969 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 2 - - uid: 2970 - components: - - type: Transform - pos: 3.5,-52.5 - parent: 2 - - uid: 2971 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - uid: 2972 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 2 - - uid: 2973 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 2 - - uid: 2974 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 2 - - uid: 2975 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 2 - - uid: 2976 - components: - - type: Transform - pos: 3.5,-46.5 - parent: 2 - - uid: 2977 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 2 - - uid: 2978 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 2 - - uid: 2979 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 2 - - uid: 2980 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 2 - - uid: 2981 - components: - - type: Transform - pos: 3.5,-41.5 - parent: 2 - - uid: 2982 - components: - - type: Transform - pos: 3.5,-40.5 - parent: 2 - - uid: 2983 - components: - - type: Transform - pos: 4.5,-50.5 - parent: 2 - - uid: 2984 - components: - - type: Transform - pos: 5.5,-50.5 - parent: 2 - - uid: 2985 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 - - uid: 2986 - components: - - type: Transform - pos: 7.5,-50.5 - parent: 2 - - uid: 2987 - components: - - type: Transform - pos: 7.5,-48.5 - parent: 2 - - uid: 2988 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 2 - - uid: 2989 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 2 - - uid: 2990 - components: - - type: Transform - pos: 4.5,-48.5 - parent: 2 - - uid: 2991 - components: - - type: Transform - pos: 4.5,-46.5 - parent: 2 - - uid: 2992 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 2 - - uid: 2993 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 2 - - uid: 2994 - components: - - type: Transform - pos: 7.5,-46.5 - parent: 2 - - uid: 2995 - components: - - type: Transform - pos: 7.5,-46.5 - parent: 2 - - uid: 2996 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 2 - - uid: 2997 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 2 - - uid: 2998 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 2 - - uid: 2999 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 2 - - uid: 3000 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 2 - - uid: 3001 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 2 - - uid: 3002 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 2 - - uid: 3003 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 2 - - uid: 3004 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 2 - - uid: 3005 - components: - - type: Transform - pos: -8.5,-50.5 - parent: 2 - - uid: 3006 - components: - - type: Transform - pos: -8.5,-51.5 - parent: 2 - - uid: 3007 - components: - - type: Transform - pos: -7.5,-51.5 - parent: 2 - - uid: 3008 - components: - - type: Transform - pos: -6.5,-51.5 - parent: 2 - - uid: 3009 - components: - - type: Transform - pos: -5.5,-51.5 - parent: 2 - - uid: 3010 - components: - - type: Transform - pos: -4.5,-51.5 - parent: 2 - - uid: 3011 - components: - - type: Transform - pos: -3.5,-51.5 - parent: 2 - - uid: 3012 - components: - - type: Transform - pos: -2.5,-51.5 - parent: 2 - - uid: 3013 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - - uid: 3014 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 2 - - uid: 3015 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 2 - - uid: 3831 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - - uid: 4428 - components: - - type: Transform - pos: -29.5,-37.5 - parent: 2 - - uid: 4434 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 2 - - uid: 5013 - components: - - type: Transform - pos: 44.5,14.5 - parent: 2 - - uid: 5692 - components: - - type: Transform - pos: 21.5,-46.5 - parent: 2 - - uid: 6158 - components: - - type: Transform - pos: 22.5,-46.5 - parent: 2 - - uid: 7543 - components: - - type: Transform - pos: -41.5,50.5 - parent: 2 - - uid: 7718 - components: - - type: Transform - pos: -33.5,19.5 - parent: 2 - - uid: 9249 - components: - - type: Transform - pos: -31.5,19.5 - parent: 2 - - uid: 12577 - components: - - type: Transform - pos: 20.5,-47.5 - parent: 2 - - uid: 12777 - components: - - type: Transform - pos: 23.5,-46.5 - parent: 2 - - uid: 13639 - components: - - type: Transform - pos: -40.5,50.5 - parent: 2 - - uid: 13640 - components: - - type: Transform - pos: -39.5,50.5 - parent: 2 - - uid: 14347 - components: - - type: Transform - pos: -32.5,19.5 - parent: 2 - - uid: 17430 - components: - - type: Transform - pos: 20.5,-48.5 - parent: 2 - - uid: 17431 - components: - - type: Transform - pos: 20.5,-49.5 - parent: 2 - - uid: 17462 - components: - - type: Transform - pos: 44.5,13.5 - parent: 2 - - uid: 17601 - components: - - type: Transform - pos: -24.5,-45.5 - parent: 2 - - uid: 17602 - components: - - type: Transform - pos: -25.5,-45.5 - parent: 2 - - uid: 17607 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 2 - - uid: 17608 - components: - - type: Transform - pos: -26.5,-40.5 - parent: 2 - - uid: 17609 - components: - - type: Transform - pos: -26.5,-39.5 - parent: 2 - - uid: 17613 - components: - - type: Transform - pos: -28.5,-37.5 - parent: 2 - - uid: 17615 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 2 - - uid: 17616 - components: - - type: Transform - pos: -30.5,-38.5 - parent: 2 - - uid: 17617 - components: - - type: Transform - pos: -30.5,-39.5 - parent: 2 - - uid: 17618 - components: - - type: Transform - pos: -31.5,-39.5 - parent: 2 - - uid: 17619 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - - uid: 17620 - components: - - type: Transform - pos: -32.5,-38.5 - parent: 2 - - uid: 17621 - components: - - type: Transform - pos: -32.5,-37.5 - parent: 2 - - uid: 17622 - components: - - type: Transform - pos: -31.5,-37.5 - parent: 2 - - uid: 17623 - components: - - type: Transform - pos: -30.5,-37.5 - parent: 2 - - uid: 17653 - components: - - type: Transform - pos: -27.5,-37.5 - parent: 2 - - uid: 17662 - components: - - type: Transform - pos: -26.5,-37.5 - parent: 2 - - uid: 17669 - components: - - type: Transform - pos: -21.5,-38.5 - parent: 2 - - uid: 17670 - components: - - type: Transform - pos: -22.5,-38.5 - parent: 2 - - uid: 17671 - components: - - type: Transform - pos: -22.5,-37.5 - parent: 2 - - uid: 17672 - components: - - type: Transform - pos: -22.5,-39.5 - parent: 2 - - uid: 17702 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - uid: 17703 - components: - - type: Transform - pos: -26.5,-45.5 - parent: 2 - - uid: 17704 - components: - - type: Transform - pos: -28.5,-45.5 - parent: 2 - - uid: 17705 - components: - - type: Transform - pos: -29.5,-45.5 - parent: 2 - - uid: 17706 - components: - - type: Transform - pos: -30.5,-45.5 - parent: 2 - - uid: 17707 - components: - - type: Transform - pos: -31.5,-45.5 - parent: 2 - - uid: 17708 - components: - - type: Transform - pos: -31.5,-46.5 - parent: 2 - - uid: 17709 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 2 - - uid: 17710 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 2 - - uid: 17711 - components: - - type: Transform - pos: -35.5,-46.5 - parent: 2 - - uid: 17712 - components: - - type: Transform - pos: -34.5,-46.5 - parent: 2 - - uid: 17713 - components: - - type: Transform - pos: -36.5,-46.5 - parent: 2 - - uid: 17714 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 17715 - components: - - type: Transform - pos: -38.5,-46.5 - parent: 2 - - uid: 17716 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - uid: 17717 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 2 - - uid: 17718 - components: - - type: Transform - pos: -39.5,-44.5 - parent: 2 - - uid: 17719 - components: - - type: Transform - pos: -39.5,-43.5 - parent: 2 - - uid: 17720 - components: - - type: Transform - pos: -39.5,-42.5 - parent: 2 - - uid: 17721 - components: - - type: Transform - pos: -39.5,-41.5 - parent: 2 - - uid: 17722 - components: - - type: Transform - pos: -39.5,-40.5 - parent: 2 - - uid: 17723 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 17724 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - uid: 17725 - components: - - type: Transform - pos: -31.5,-44.5 - parent: 2 - - uid: 17726 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 2 - - uid: 17727 - components: - - type: Transform - pos: -39.5,-39.5 - parent: 2 - - uid: 17728 - components: - - type: Transform - pos: -39.5,-38.5 - parent: 2 - - uid: 17729 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 2 - - uid: 17730 - components: - - type: Transform - pos: -39.5,-37.5 - parent: 2 - - uid: 17731 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 2 - - uid: 17732 - components: - - type: Transform - pos: -39.5,-35.5 - parent: 2 - - uid: 17733 - components: - - type: Transform - pos: -39.5,-34.5 - parent: 2 - - uid: 17734 - components: - - type: Transform - pos: -39.5,-33.5 - parent: 2 - - uid: 17735 - components: - - type: Transform - pos: -39.5,-32.5 - parent: 2 - - uid: 17736 - components: - - type: Transform - pos: -38.5,-32.5 - parent: 2 - - uid: 17737 - components: - - type: Transform - pos: -38.5,-31.5 - parent: 2 - - uid: 17738 - components: - - type: Transform - pos: -37.5,-31.5 - parent: 2 - - uid: 17739 - components: - - type: Transform - pos: -37.5,-30.5 - parent: 2 - - uid: 17740 - components: - - type: Transform - pos: -36.5,-30.5 - parent: 2 - - uid: 17741 - components: - - type: Transform - pos: -35.5,-30.5 - parent: 2 - - uid: 17742 - components: - - type: Transform - pos: -34.5,-30.5 - parent: 2 - - uid: 17743 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 2 - - uid: 17744 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - - uid: 17745 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 17746 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - uid: 17747 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 2 - - uid: 17748 - components: - - type: Transform - pos: -28.5,-30.5 - parent: 2 - - uid: 17749 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 2 - - uid: 17750 - components: - - type: Transform - pos: -26.5,-30.5 - parent: 2 - - uid: 17751 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 2 - - uid: 17752 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 2 - - uid: 17753 - components: - - type: Transform - pos: -25.5,-32.5 - parent: 2 - - uid: 17754 - components: - - type: Transform - pos: -25.5,-33.5 - parent: 2 - - uid: 17755 - components: - - type: Transform - pos: -25.5,-34.5 - parent: 2 - - uid: 17756 - components: - - type: Transform - pos: -25.5,-35.5 - parent: 2 - - uid: 17757 - components: - - type: Transform - pos: -25.5,-36.5 - parent: 2 - - uid: 17758 - components: - - type: Transform - pos: -25.5,-37.5 - parent: 2 - - uid: 17759 - components: - - type: Transform - pos: -25.5,-38.5 - parent: 2 - - uid: 17836 - components: - - type: Transform - pos: -26.5,-42.5 - parent: 2 - - uid: 17865 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 2 - - uid: 17866 - components: - - type: Transform - pos: -25.5,-42.5 - parent: 2 - - uid: 17901 - components: - - type: Transform - pos: -40.5,-41.5 - parent: 2 - - uid: 17902 - components: - - type: Transform - pos: -41.5,-41.5 - parent: 2 - - uid: 17905 - components: - - type: Transform - pos: -39.5,-46.5 - parent: 2 - - uid: 17906 - components: - - type: Transform - pos: -40.5,-46.5 - parent: 2 - - uid: 17907 - components: - - type: Transform - pos: -41.5,-46.5 - parent: 2 - - uid: 17911 - components: - - type: Transform - pos: -25.5,-43.5 - parent: 2 -- proto: CableApcStack - entities: - - uid: 3016 - components: - - type: Transform - pos: -18.445934,-34.611988 - parent: 2 - - uid: 3017 - components: - - type: Transform - pos: -48.395123,32.474678 - parent: 2 - - uid: 3018 - components: - - type: Transform - pos: -48.582623,32.67273 - parent: 2 - - uid: 3019 - components: - - type: Transform - pos: -11.594626,-24.636341 - parent: 2 -- proto: CableApcStack1 - entities: - - uid: 3020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.609608,-13.161642 - parent: 2 - - uid: 3021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.88972664,26.43372 - parent: 2 - - uid: 3022 - components: - - type: Transform - pos: 11.112434,29.7345 - parent: 2 - - uid: 3023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.286758,28.64075 - parent: 2 - - uid: 3024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.7004,15.541313 - parent: 2 - - uid: 3025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.44294,-13.2971525 - parent: 2 -- proto: CableHV - entities: - - uid: 2628 - components: - - type: Transform - pos: -33.5,-43.5 - parent: 2 - - uid: 2638 - components: - - type: Transform - pos: -24.5,-44.5 - parent: 2 - - uid: 2639 - components: - - type: Transform - pos: -31.5,-41.5 - parent: 2 - - uid: 2640 - components: - - type: Transform - pos: -30.5,-41.5 - parent: 2 - - uid: 2642 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 2 - - uid: 2643 - components: - - type: Transform - pos: -37.5,-44.5 - parent: 2 - - uid: 2644 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 2 - - uid: 2645 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 2 - - uid: 2646 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 2 - - uid: 2647 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 2 - - uid: 2649 - components: - - type: Transform - pos: -38.5,-39.5 - parent: 2 - - uid: 2650 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 2 - - uid: 2651 - components: - - type: Transform - pos: -38.5,-35.5 - parent: 2 - - uid: 2652 - components: - - type: Transform - pos: -38.5,-33.5 - parent: 2 - - uid: 2653 - components: - - type: Transform - pos: -38.5,-32.5 - parent: 2 - - uid: 2654 - components: - - type: Transform - pos: -37.5,-32.5 - parent: 2 - - uid: 2655 - components: - - type: Transform - pos: -34.5,-30.5 - parent: 2 - - uid: 2656 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 2657 - components: - - type: Transform - pos: -31.5,-31.5 - parent: 2 - - uid: 2658 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 2660 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 2 - - uid: 2661 - components: - - type: Transform - pos: -30.5,-35.5 - parent: 2 - - uid: 2662 - components: - - type: Transform - pos: -33.5,-35.5 - parent: 2 - - uid: 2663 - components: - - type: Transform - pos: -29.5,-35.5 - parent: 2 - - uid: 2664 - components: - - type: Transform - pos: -29.5,-33.5 - parent: 2 - - uid: 2665 - components: - - type: Transform - pos: -30.5,-33.5 - parent: 2 - - uid: 2666 - components: - - type: Transform - pos: -32.5,-33.5 - parent: 2 - - uid: 2667 - components: - - type: Transform - pos: -36.5,-39.5 - parent: 2 - - uid: 2668 - components: - - type: Transform - pos: -36.5,-40.5 - parent: 2 - - uid: 2669 - components: - - type: Transform - pos: -34.5,-40.5 - parent: 2 - - uid: 2670 - components: - - type: Transform - pos: -34.5,-39.5 - parent: 2 - - uid: 2671 - components: - - type: Transform - pos: -39.5,-42.5 - parent: 2 - - uid: 2672 - components: - - type: Transform - pos: -39.5,-39.5 - parent: 2 - - uid: 3027 - components: - - type: Transform - pos: -44.5,57.5 - parent: 2 - - uid: 3028 - components: - - type: Transform - pos: -48.5,58.5 - parent: 2 - - uid: 3029 - components: - - type: Transform - pos: -47.5,58.5 - parent: 2 - - uid: 3030 - components: - - type: Transform - pos: -42.5,68.5 - parent: 2 - - uid: 3031 - components: - - type: Transform - pos: -44.5,58.5 - parent: 2 - - uid: 3032 - components: - - type: Transform - pos: -46.5,58.5 - parent: 2 - - uid: 3033 - components: - - type: Transform - pos: -42.5,67.5 - parent: 2 - - uid: 3034 - components: - - type: Transform - pos: -40.5,56.5 - parent: 2 - - uid: 3035 - components: - - type: Transform - pos: -39.5,56.5 - parent: 2 - - uid: 3036 - components: - - type: Transform - pos: -40.5,61.5 - parent: 2 - - uid: 3037 - components: - - type: Transform - pos: -41.5,61.5 - parent: 2 - - uid: 3038 - components: - - type: Transform - pos: -36.5,60.5 - parent: 2 - - uid: 3039 - components: - - type: Transform - pos: -40.5,62.5 - parent: 2 - - uid: 3040 - components: - - type: Transform - pos: -37.5,58.5 - parent: 2 - - uid: 3041 - components: - - type: Transform - pos: -35.5,58.5 - parent: 2 - - uid: 3042 - components: - - type: Transform - pos: -36.5,56.5 - parent: 2 - - uid: 3043 - components: - - type: Transform - pos: -37.5,60.5 - parent: 2 - - uid: 3044 - components: - - type: Transform - pos: -35.5,56.5 - parent: 2 - - uid: 3045 - components: - - type: Transform - pos: -39.5,56.5 - parent: 2 - - uid: 3046 - components: - - type: Transform - pos: -38.5,60.5 - parent: 2 - - uid: 3047 - components: - - type: Transform - pos: -40.5,57.5 - parent: 2 - - uid: 3048 - components: - - type: Transform - pos: -41.5,57.5 - parent: 2 - - uid: 3049 - components: - - type: Transform - pos: -42.5,58.5 - parent: 2 - - uid: 3050 - components: - - type: Transform - pos: -35.5,60.5 - parent: 2 - - uid: 3051 - components: - - type: Transform - pos: -42.5,57.5 - parent: 2 - - uid: 3052 - components: - - type: Transform - pos: -42.5,56.5 - parent: 2 - - uid: 3053 - components: - - type: Transform - pos: -42.5,55.5 - parent: 2 - - uid: 3054 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 2 - - uid: 3055 - components: - - type: Transform - pos: -42.5,54.5 - parent: 2 - - uid: 3056 - components: - - type: Transform - pos: -42.5,53.5 - parent: 2 - - uid: 3057 - components: - - type: Transform - pos: -42.5,51.5 - parent: 2 - - uid: 3058 - components: - - type: Transform - pos: -39.5,62.5 - parent: 2 - - uid: 3059 - components: - - type: Transform - pos: 45.5,12.5 - parent: 2 - - uid: 3060 - components: - - type: Transform - pos: 45.5,13.5 - parent: 2 - - uid: 3061 - components: - - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 3062 - components: - - type: Transform - pos: -36.5,58.5 - parent: 2 - - uid: 3063 - components: - - type: Transform - pos: 44.5,13.5 - parent: 2 - - uid: 3064 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 3065 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 2 - - uid: 3066 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 3067 - components: - - type: Transform - pos: -0.5,-26.5 - parent: 2 - - uid: 3068 - components: - - type: Transform - pos: 0.5,-25.5 - parent: 2 - - uid: 3069 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 2 - - uid: 3070 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - uid: 3071 - components: - - type: Transform - pos: 2.5,-26.5 - parent: 2 - - uid: 3072 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 2 - - uid: 3073 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 2 - - uid: 3074 - components: - - type: Transform - pos: -3.5,-24.5 - parent: 2 - - uid: 3075 - components: - - type: Transform - pos: -3.5,-25.5 - parent: 2 - - uid: 3076 - components: - - type: Transform - pos: -3.5,-26.5 - parent: 2 - - uid: 3077 - components: - - type: Transform - pos: -2.5,-26.5 - parent: 2 - - uid: 3078 - components: - - type: Transform - pos: -2.5,-25.5 - parent: 2 - - uid: 3079 - components: - - type: Transform - pos: -2.5,-24.5 - parent: 2 - - uid: 3080 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 2 - - uid: 3081 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 2 - - uid: 3082 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 2 - - uid: 3083 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 2 - - uid: 3084 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 2 - - uid: 3085 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 2 - - uid: 3086 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 2 - - uid: 3087 - components: - - type: Transform - pos: -1.5,-26.5 - parent: 2 - - uid: 3088 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 - - uid: 3089 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 2 - - uid: 3090 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 3091 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - - uid: 3092 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 - - uid: 3093 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 2 - - uid: 3094 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 2 - - uid: 3095 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - uid: 3096 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 2 - - uid: 3097 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 2 - - uid: 3098 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 2 - - uid: 3099 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - - uid: 3100 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 - - uid: 3101 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - uid: 3102 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 - - uid: 3103 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 2 - - uid: 3104 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 2 - - uid: 3105 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 2 - - uid: 3106 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 2 - - uid: 3107 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 3108 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 2 - - uid: 3109 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 3110 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 2 - - uid: 3111 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 2 - - uid: 3112 - components: - - type: Transform - pos: -16.5,-39.5 - parent: 2 - - uid: 3113 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 2 - - uid: 3114 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 2 - - uid: 3115 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 2 - - uid: 3116 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 2 - - uid: 3117 - components: - - type: Transform - pos: -7.5,-28.5 - parent: 2 - - uid: 3118 - components: - - type: Transform - pos: -1.5,-21.5 - parent: 2 - - uid: 3119 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 2 - - uid: 3120 - components: - - type: Transform - pos: -45.5,58.5 - parent: 2 - - uid: 3121 - components: - - type: Transform - pos: -23.5,-32.5 - parent: 2 - - uid: 3122 - components: - - type: Transform - pos: -22.5,-32.5 - parent: 2 - - uid: 3123 - components: - - type: Transform - pos: -21.5,-32.5 - parent: 2 - - uid: 3124 - components: - - type: Transform - pos: -24.5,-32.5 - parent: 2 - - uid: 3125 - components: - - type: Transform - pos: -31.5,-33.5 - parent: 2 - - uid: 3126 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 2 - - uid: 3127 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 2 - - uid: 3128 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - uid: 3129 - components: - - type: Transform - pos: -32.5,-30.5 - parent: 2 - - uid: 3130 - components: - - type: Transform - pos: -35.5,-30.5 - parent: 2 - - uid: 3131 - components: - - type: Transform - pos: -38.5,-34.5 - parent: 2 - - uid: 3132 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 2 - - uid: 3133 - components: - - type: Transform - pos: -38.5,-37.5 - parent: 2 - - uid: 3134 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 2 - - uid: 3135 - components: - - type: Transform - pos: -28.5,-30.5 - parent: 2 - - uid: 3136 - components: - - type: Transform - pos: -33.5,-30.5 - parent: 2 - - uid: 3137 - components: - - type: Transform - pos: -37.5,-46.5 - parent: 2 - - uid: 3138 - components: - - type: Transform - pos: -37.5,-31.5 - parent: 2 - - uid: 3139 - components: - - type: Transform - pos: -33.5,-41.5 - parent: 2 - - uid: 3142 - components: - - type: Transform - pos: -31.5,-46.5 - parent: 2 - - uid: 3143 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 2 - - uid: 3144 - components: - - type: Transform - pos: -20.5,-33.5 - parent: 2 - - uid: 3145 - components: - - type: Transform - pos: -20.5,-34.5 - parent: 2 - - uid: 3146 - components: - - type: Transform - pos: -19.5,-34.5 - parent: 2 - - uid: 3147 - components: - - type: Transform - pos: -19.5,-35.5 - parent: 2 - - uid: 3148 - components: - - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 3149 - components: - - type: Transform - pos: -19.5,-40.5 - parent: 2 - - uid: 3150 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 2 - - uid: 3151 - components: - - type: Transform - pos: -19.5,-42.5 - parent: 2 - - uid: 3152 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 2 - - uid: 3153 - components: - - type: Transform - pos: -20.5,-43.5 - parent: 2 - - uid: 3154 - components: - - type: Transform - pos: -20.5,-44.5 - parent: 2 - - uid: 3155 - components: - - type: Transform - pos: -26.5,-30.5 - parent: 2 - - uid: 3156 - components: - - type: Transform - pos: -25.5,-31.5 - parent: 2 - - uid: 3157 - components: - - type: Transform - pos: -32.5,-43.5 - parent: 2 - - uid: 3166 - components: - - type: Transform - pos: -32.5,-41.5 - parent: 2 - - uid: 3167 - components: - - type: Transform - pos: -25.5,-43.5 - parent: 2 - - uid: 3168 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 3170 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 2 - - uid: 3171 - components: - - type: Transform - pos: -22.5,-44.5 - parent: 2 - - uid: 3172 - components: - - type: Transform - pos: -21.5,-44.5 - parent: 2 - - uid: 3173 - components: - - type: Transform - pos: 43.5,12.5 - parent: 2 - - uid: 3174 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 2 - - uid: 3175 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 2 - - uid: 3176 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 3177 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 2 - - uid: 3178 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 2 - - uid: 3179 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 2 - - uid: 3180 - components: - - type: Transform - pos: -13.5,-33.5 - parent: 2 - - uid: 3181 - components: - - type: Transform - pos: -14.5,-33.5 - parent: 2 - - uid: 3182 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 2 - - uid: 3183 - components: - - type: Transform - pos: -16.5,-33.5 - parent: 2 - - uid: 3184 - components: - - type: Transform - pos: -17.5,-33.5 - parent: 2 - - uid: 3185 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 2 - - uid: 3186 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 2 - - uid: 3187 - components: - - type: Transform - pos: -18.5,-32.5 - parent: 2 - - uid: 3188 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 2 - - uid: 3189 - components: - - type: Transform - pos: -18.5,-30.5 - parent: 2 - - uid: 3190 - components: - - type: Transform - pos: -19.5,-30.5 - parent: 2 - - uid: 3191 - components: - - type: Transform - pos: -20.5,-30.5 - parent: 2 - - uid: 3192 - components: - - type: Transform - pos: -21.5,-30.5 - parent: 2 - - uid: 3193 - components: - - type: Transform - pos: -21.5,-29.5 - parent: 2 - - uid: 3194 - components: - - type: Transform - pos: -21.5,-28.5 - parent: 2 - - uid: 3195 - components: - - type: Transform - pos: -21.5,-27.5 - parent: 2 - - uid: 3196 - components: - - type: Transform - pos: -22.5,-27.5 - parent: 2 - - uid: 3197 - components: - - type: Transform - pos: -23.5,-27.5 - parent: 2 - - uid: 3198 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 2 - - uid: 3199 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 2 - - uid: 3200 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 2 - - uid: 3201 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 2 - - uid: 3202 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 2 - - uid: 3203 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 2 - - uid: 3204 - components: - - type: Transform - pos: -30.5,-27.5 - parent: 2 - - uid: 3205 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: -31.5,-26.5 - parent: 2 - - uid: 3207 - components: - - type: Transform - pos: -24.5,-31.5 - parent: 2 - - uid: 3208 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 2 - - uid: 3209 - components: - - type: Transform - pos: -35.5,-46.5 - parent: 2 - - uid: 3210 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 2 - - uid: 3211 - components: - - type: Transform - pos: -34.5,-46.5 - parent: 2 - - uid: 3214 - components: - - type: Transform - pos: -37.5,-38.5 - parent: 2 - - uid: 3215 - components: - - type: Transform - pos: -36.5,-38.5 - parent: 2 - - uid: 3216 - components: - - type: Transform - pos: -27.5,-30.5 - parent: 2 - - uid: 3219 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 2 - - uid: 3220 - components: - - type: Transform - pos: 40.5,11.5 - parent: 2 - - uid: 3221 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - - uid: 3222 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 2 - - uid: 3223 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - - uid: 3224 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 3225 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 3226 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 3227 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - uid: 3228 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 3229 - components: - - type: Transform - pos: 52.5,4.5 - parent: 2 - - uid: 3230 - components: - - type: Transform - pos: 52.5,5.5 - parent: 2 - - uid: 3231 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - - uid: 3232 - components: - - type: Transform - pos: 54.5,8.5 - parent: 2 - - uid: 3233 - components: - - type: Transform - pos: 54.5,7.5 - parent: 2 - - uid: 3234 - components: - - type: Transform - pos: 54.5,5.5 - parent: 2 - - uid: 3235 - components: - - type: Transform - pos: 54.5,4.5 - parent: 2 - - uid: 3236 - components: - - type: Transform - pos: 56.5,4.5 - parent: 2 - - uid: 3237 - components: - - type: Transform - pos: 56.5,6.5 - parent: 2 - - uid: 3238 - components: - - type: Transform - pos: 56.5,7.5 - parent: 2 - - uid: 3239 - components: - - type: Transform - pos: 56.5,8.5 - parent: 2 - - uid: 3240 - components: - - type: Transform - pos: 58.5,8.5 - parent: 2 - - uid: 3241 - components: - - type: Transform - pos: 58.5,6.5 - parent: 2 - - uid: 3242 - components: - - type: Transform - pos: 58.5,5.5 - parent: 2 - - uid: 3243 - components: - - type: Transform - pos: 58.5,4.5 - parent: 2 - - uid: 3244 - components: - - type: Transform - pos: 60.5,4.5 - parent: 2 - - uid: 3245 - components: - - type: Transform - pos: 60.5,7.5 - parent: 2 - - uid: 3246 - components: - - type: Transform - pos: 60.5,8.5 - parent: 2 - - uid: 3247 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 3248 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - - uid: 3249 - components: - - type: Transform - pos: 58.5,18.5 - parent: 2 - - uid: 3250 - components: - - type: Transform - pos: 58.5,14.5 - parent: 2 - - uid: 3251 - components: - - type: Transform - pos: 3.5,7.5 - parent: 2 - - uid: 3252 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - uid: 3253 - components: - - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 3254 - components: - - type: Transform - pos: 54.5,15.5 - parent: 2 - - uid: 3255 - components: - - type: Transform - pos: 54.5,14.5 - parent: 2 - - uid: 3256 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - - uid: 3257 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 3258 - components: - - type: Transform - pos: 50.5,16.5 - parent: 2 - - uid: 3259 - components: - - type: Transform - pos: -29.5,35.5 - parent: 2 - - uid: 3260 - components: - - type: Transform - pos: 51.5,14.5 - parent: 2 - - uid: 3261 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - - uid: 3262 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - - uid: 3263 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - - uid: 3264 - components: - - type: Transform - pos: 55.5,12.5 - parent: 2 - - uid: 3265 - components: - - type: Transform - pos: 59.5,13.5 - parent: 2 - - uid: 3266 - components: - - type: Transform - pos: 59.5,14.5 - parent: 2 - - uid: 3267 - components: - - type: Transform - pos: 59.5,9.5 - parent: 2 - - uid: 3268 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 - - uid: 3269 - components: - - type: Transform - pos: 61.5,11.5 - parent: 2 - - uid: 3270 - components: - - type: Transform - pos: 62.5,11.5 - parent: 2 - - uid: 3271 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 3272 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 3273 - components: - - type: Transform - pos: 52.5,11.5 - parent: 2 - - uid: 3274 - components: - - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 3275 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 3276 - components: - - type: Transform - pos: 45.5,11.5 - parent: 2 - - uid: 3277 - components: - - type: Transform - pos: -18.5,26.5 - parent: 2 - - uid: 3278 - components: - - type: Transform - pos: 51.5,8.5 - parent: 2 - - uid: 3279 - components: - - type: Transform - pos: 51.5,4.5 - parent: 2 - - uid: 3280 - components: - - type: Transform - pos: 51.5,5.5 - parent: 2 - - uid: 3281 - components: - - type: Transform - pos: 55.5,6.5 - parent: 2 - - uid: 3282 - components: - - type: Transform - pos: -30.5,40.5 - parent: 2 - - uid: 3283 - components: - - type: Transform - pos: -29.5,40.5 - parent: 2 - - uid: 3284 - components: - - type: Transform - pos: -29.5,34.5 - parent: 2 - - uid: 3285 - components: - - type: Transform - pos: -31.5,40.5 - parent: 2 - - uid: 3286 - components: - - type: Transform - pos: -42.5,49.5 - parent: 2 - - uid: 3287 - components: - - type: Transform - pos: -49.5,60.5 - parent: 2 - - uid: 3288 - components: - - type: Transform - pos: -44.5,49.5 - parent: 2 - - uid: 3289 - components: - - type: Transform - pos: -43.5,51.5 - parent: 2 - - uid: 3290 - components: - - type: Transform - pos: -44.5,50.5 - parent: 2 - - uid: 3291 - components: - - type: Transform - pos: -42.5,48.5 - parent: 2 - - uid: 3292 - components: - - type: Transform - pos: -44.5,51.5 - parent: 2 - - uid: 3293 - components: - - type: Transform - pos: -43.5,49.5 - parent: 2 - - uid: 3294 - components: - - type: Transform - pos: -42.5,52.5 - parent: 2 - - uid: 3295 - components: - - type: Transform - pos: -42.5,66.5 - parent: 2 - - uid: 3296 - components: - - type: Transform - pos: -42.5,66.5 - parent: 2 - - uid: 3297 - components: - - type: Transform - pos: -44.5,66.5 - parent: 2 - - uid: 3298 - components: - - type: Transform - pos: -45.5,66.5 - parent: 2 - - uid: 3299 - components: - - type: Transform - pos: -47.5,66.5 - parent: 2 - - uid: 3300 - components: - - type: Transform - pos: -46.5,66.5 - parent: 2 - - uid: 3301 - components: - - type: Transform - pos: -44.5,65.5 - parent: 2 - - uid: 3302 - components: - - type: Transform - pos: -43.5,65.5 - parent: 2 - - uid: 3303 - components: - - type: Transform - pos: -42.5,65.5 - parent: 2 - - uid: 3304 - components: - - type: Transform - pos: -40.5,66.5 - parent: 2 - - uid: 3305 - components: - - type: Transform - pos: -39.5,66.5 - parent: 2 - - uid: 3306 - components: - - type: Transform - pos: -38.5,66.5 - parent: 2 - - uid: 3307 - components: - - type: Transform - pos: -37.5,66.5 - parent: 2 - - uid: 3308 - components: - - type: Transform - pos: -40.5,65.5 - parent: 2 - - uid: 3309 - components: - - type: Transform - pos: -36.5,64.5 - parent: 2 - - uid: 3310 - components: - - type: Transform - pos: -37.5,64.5 - parent: 2 - - uid: 3311 - components: - - type: Transform - pos: -35.5,64.5 - parent: 2 - - uid: 3312 - components: - - type: Transform - pos: -42.5,62.5 - parent: 2 - - uid: 3313 - components: - - type: Transform - pos: -42.5,61.5 - parent: 2 - - uid: 3314 - components: - - type: Transform - pos: -42.5,60.5 - parent: 2 - - uid: 3315 - components: - - type: Transform - pos: -45.5,60.5 - parent: 2 - - uid: 3316 - components: - - type: Transform - pos: -46.5,60.5 - parent: 2 - - uid: 3317 - components: - - type: Transform - pos: -47.5,60.5 - parent: 2 - - uid: 3318 - components: - - type: Transform - pos: -48.5,60.5 - parent: 2 - - uid: 3319 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 2 - - uid: 3320 - components: - - type: Transform - pos: -29.5,39.5 - parent: 2 - - uid: 3321 - components: - - type: Transform - pos: -29.5,37.5 - parent: 2 - - uid: 3322 - components: - - type: Transform - pos: -29.5,36.5 - parent: 2 - - uid: 3323 - components: - - type: Transform - pos: -29.5,38.5 - parent: 2 - - uid: 3324 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 2 - - uid: 3325 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 2 - - uid: 3326 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 2 - - uid: 3327 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 2 - - uid: 3328 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 3329 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - uid: 3330 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 2 - - uid: 3331 - components: - - type: Transform - pos: 10.5,-20.5 - parent: 2 - - uid: 3332 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 2 - - uid: 3333 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 2 - - uid: 3334 - components: - - type: Transform - pos: 13.5,-20.5 - parent: 2 - - uid: 3335 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 2 - - uid: 3336 - components: - - type: Transform - pos: 15.5,-20.5 - parent: 2 - - uid: 3337 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 2 - - uid: 3338 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 2 - - uid: 3339 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 2 - - uid: 3340 - components: - - type: Transform - pos: 19.5,-20.5 - parent: 2 - - uid: 3341 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 3342 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 2 - - uid: 3343 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 2 - - uid: 3344 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - uid: 3345 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 2 - - uid: 3346 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - uid: 3347 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 2 - - uid: 3348 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 2 - - uid: 3349 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 2 - - uid: 3350 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 2 - - uid: 3351 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 2 - - uid: 3352 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 2 - - uid: 3353 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 2 - - uid: 3354 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - - uid: 3355 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 2 - - uid: 3356 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 2 - - uid: 3357 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 2 - - uid: 3358 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 2 - - uid: 3359 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 2 - - uid: 3360 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 2 - - uid: 3361 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - uid: 3362 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 2 - - uid: 3363 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 3364 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 3365 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 2 - - uid: 3366 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 2 - - uid: 3367 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - uid: 3368 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - - uid: 3369 - components: - - type: Transform - pos: -29.5,-9.5 - parent: 2 - - uid: 3370 - components: - - type: Transform - pos: -28.5,-18.5 - parent: 2 - - uid: 3371 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 2 - - uid: 3372 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 - - uid: 3373 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - uid: 3374 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 2 - - uid: 3375 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 2 - - uid: 3376 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 3377 - components: - - type: Transform - pos: -24.5,4.5 - parent: 2 - - uid: 3378 - components: - - type: Transform - pos: -24.5,3.5 - parent: 2 - - uid: 3379 - components: - - type: Transform - pos: -24.5,2.5 - parent: 2 - - uid: 3380 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 3381 - components: - - type: Transform - pos: -24.5,0.5 - parent: 2 - - uid: 3382 - components: - - type: Transform - pos: -24.5,-0.5 - parent: 2 - - uid: 3383 - components: - - type: Transform - pos: -25.5,-0.5 - parent: 2 - - uid: 3384 - components: - - type: Transform - pos: -26.5,-0.5 - parent: 2 - - uid: 3385 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 2 - - uid: 3386 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 2 - - uid: 3387 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 2 - - uid: 3388 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 2 - - uid: 3389 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 2 - - uid: 3390 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 2 - - uid: 3391 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - - uid: 3392 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 2 - - uid: 3393 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - - uid: 3394 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - - uid: 3395 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - - uid: 3396 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 3397 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - uid: 3398 - components: - - type: Transform - pos: -24.5,5.5 - parent: 2 - - uid: 3399 - components: - - type: Transform - pos: -24.5,6.5 - parent: 2 - - uid: 3400 - components: - - type: Transform - pos: -24.5,7.5 - parent: 2 - - uid: 3401 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - - uid: 3402 - components: - - type: Transform - pos: -24.5,9.5 - parent: 2 - - uid: 3403 - components: - - type: Transform - pos: -24.5,10.5 - parent: 2 - - uid: 3404 - components: - - type: Transform - pos: -24.5,11.5 - parent: 2 - - uid: 3405 - components: - - type: Transform - pos: -24.5,12.5 - parent: 2 - - uid: 3406 - components: - - type: Transform - pos: -24.5,13.5 - parent: 2 - - uid: 3407 - components: - - type: Transform - pos: -24.5,14.5 - parent: 2 - - uid: 3408 - components: - - type: Transform - pos: -24.5,15.5 - parent: 2 - - uid: 3409 - components: - - type: Transform - pos: -25.5,15.5 - parent: 2 - - uid: 3410 - components: - - type: Transform - pos: -26.5,15.5 - parent: 2 - - uid: 3411 - components: - - type: Transform - pos: -27.5,15.5 - parent: 2 - - uid: 3412 - components: - - type: Transform - pos: -27.5,16.5 - parent: 2 - - uid: 3413 - components: - - type: Transform - pos: -27.5,17.5 - parent: 2 - - uid: 3414 - components: - - type: Transform - pos: -27.5,18.5 - parent: 2 - - uid: 3415 - components: - - type: Transform - pos: -24.5,16.5 - parent: 2 - - uid: 3416 - components: - - type: Transform - pos: -24.5,17.5 - parent: 2 - - uid: 3417 - components: - - type: Transform - pos: -23.5,17.5 - parent: 2 - - uid: 3418 - components: - - type: Transform - pos: -22.5,17.5 - parent: 2 - - uid: 3419 - components: - - type: Transform - pos: -21.5,17.5 - parent: 2 - - uid: 3420 - components: - - type: Transform - pos: -20.5,17.5 - parent: 2 - - uid: 3421 - components: - - type: Transform - pos: -19.5,17.5 - parent: 2 - - uid: 3422 - components: - - type: Transform - pos: -18.5,17.5 - parent: 2 - - uid: 3423 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - - uid: 3424 - components: - - type: Transform - pos: -17.5,16.5 - parent: 2 - - uid: 3425 - components: - - type: Transform - pos: -17.5,15.5 - parent: 2 - - uid: 3426 - components: - - type: Transform - pos: -17.5,14.5 - parent: 2 - - uid: 3427 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - - uid: 3428 - components: - - type: Transform - pos: -27.5,19.5 - parent: 2 - - uid: 3429 - components: - - type: Transform - pos: -27.5,20.5 - parent: 2 - - uid: 3430 - components: - - type: Transform - pos: -27.5,21.5 - parent: 2 - - uid: 3431 - components: - - type: Transform - pos: -42.5,47.5 - parent: 2 - - uid: 3432 - components: - - type: Transform - pos: -47.5,44.5 - parent: 2 - - uid: 3433 - components: - - type: Transform - pos: -46.5,44.5 - parent: 2 - - uid: 3434 - components: - - type: Transform - pos: -46.5,45.5 - parent: 2 - - uid: 3435 - components: - - type: Transform - pos: -46.5,46.5 - parent: 2 - - uid: 3436 - components: - - type: Transform - pos: -45.5,46.5 - parent: 2 - - uid: 3437 - components: - - type: Transform - pos: -44.5,46.5 - parent: 2 - - uid: 3438 - components: - - type: Transform - pos: -43.5,46.5 - parent: 2 - - uid: 3439 - components: - - type: Transform - pos: -42.5,46.5 - parent: 2 - - uid: 3440 - components: - - type: Transform - pos: -41.5,46.5 - parent: 2 - - uid: 3441 - components: - - type: Transform - pos: -40.5,46.5 - parent: 2 - - uid: 3442 - components: - - type: Transform - pos: -39.5,46.5 - parent: 2 - - uid: 3443 - components: - - type: Transform - pos: -38.5,46.5 - parent: 2 - - uid: 3444 - components: - - type: Transform - pos: -37.5,46.5 - parent: 2 - - uid: 3445 - components: - - type: Transform - pos: -36.5,46.5 - parent: 2 - - uid: 3446 - components: - - type: Transform - pos: -36.5,45.5 - parent: 2 - - uid: 3447 - components: - - type: Transform - pos: -36.5,44.5 - parent: 2 - - uid: 3448 - components: - - type: Transform - pos: -36.5,43.5 - parent: 2 - - uid: 3449 - components: - - type: Transform - pos: -36.5,42.5 - parent: 2 - - uid: 3450 - components: - - type: Transform - pos: -36.5,41.5 - parent: 2 - - uid: 3451 - components: - - type: Transform - pos: -36.5,40.5 - parent: 2 - - uid: 3452 - components: - - type: Transform - pos: -33.5,40.5 - parent: 2 - - uid: 3453 - components: - - type: Transform - pos: -34.5,40.5 - parent: 2 - - uid: 3454 - components: - - type: Transform - pos: -35.5,40.5 - parent: 2 - - uid: 3455 - components: - - type: Transform - pos: -32.5,32.5 - parent: 2 - - uid: 3456 - components: - - type: Transform - pos: -32.5,33.5 - parent: 2 - - uid: 3457 - components: - - type: Transform - pos: -32.5,34.5 - parent: 2 - - uid: 3458 - components: - - type: Transform - pos: -32.5,36.5 - parent: 2 - - uid: 3459 - components: - - type: Transform - pos: -34.5,36.5 - parent: 2 - - uid: 3460 - components: - - type: Transform - pos: -32.5,31.5 - parent: 2 - - uid: 3461 - components: - - type: Transform - pos: -31.5,31.5 - parent: 2 - - uid: 3462 - components: - - type: Transform - pos: -30.5,31.5 - parent: 2 - - uid: 3463 - components: - - type: Transform - pos: -29.5,31.5 - parent: 2 - - uid: 3464 - components: - - type: Transform - pos: -29.5,30.5 - parent: 2 - - uid: 3465 - components: - - type: Transform - pos: -29.5,29.5 - parent: 2 - - uid: 3466 - components: - - type: Transform - pos: -29.5,28.5 - parent: 2 - - uid: 3467 - components: - - type: Transform - pos: -29.5,27.5 - parent: 2 - - uid: 3468 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 - - uid: 3469 - components: - - type: Transform - pos: -29.5,25.5 - parent: 2 - - uid: 3470 - components: - - type: Transform - pos: -29.5,24.5 - parent: 2 - - uid: 3471 - components: - - type: Transform - pos: -29.5,23.5 - parent: 2 - - uid: 3472 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - - uid: 3473 - components: - - type: Transform - pos: -28.5,22.5 - parent: 2 - - uid: 3474 - components: - - type: Transform - pos: -27.5,22.5 - parent: 2 - - uid: 3475 - components: - - type: Transform - pos: -28.5,34.5 - parent: 2 - - uid: 3476 - components: - - type: Transform - pos: -27.5,34.5 - parent: 2 - - uid: 3477 - components: - - type: Transform - pos: -26.5,34.5 - parent: 2 - - uid: 3478 - components: - - type: Transform - pos: -25.5,34.5 - parent: 2 - - uid: 3479 - components: - - type: Transform - pos: -24.5,34.5 - parent: 2 - - uid: 3480 - components: - - type: Transform - pos: -23.5,34.5 - parent: 2 - - uid: 3481 - components: - - type: Transform - pos: -22.5,34.5 - parent: 2 - - uid: 3482 - components: - - type: Transform - pos: -21.5,34.5 - parent: 2 - - uid: 3483 - components: - - type: Transform - pos: -20.5,34.5 - parent: 2 - - uid: 3484 - components: - - type: Transform - pos: -20.5,33.5 - parent: 2 - - uid: 3485 - components: - - type: Transform - pos: -20.5,32.5 - parent: 2 - - uid: 3486 - components: - - type: Transform - pos: -20.5,31.5 - parent: 2 - - uid: 3487 - components: - - type: Transform - pos: -20.5,30.5 - parent: 2 - - uid: 3488 - components: - - type: Transform - pos: -20.5,29.5 - parent: 2 - - uid: 3489 - components: - - type: Transform - pos: -19.5,29.5 - parent: 2 - - uid: 3490 - components: - - type: Transform - pos: -18.5,29.5 - parent: 2 - - uid: 3491 - components: - - type: Transform - pos: -17.5,29.5 - parent: 2 - - uid: 3492 - components: - - type: Transform - pos: -16.5,29.5 - parent: 2 - - uid: 3493 - components: - - type: Transform - pos: -15.5,29.5 - parent: 2 - - uid: 3494 - components: - - type: Transform - pos: -14.5,29.5 - parent: 2 - - uid: 3495 - components: - - type: Transform - pos: -14.5,30.5 - parent: 2 - - uid: 3496 - components: - - type: Transform - pos: -14.5,31.5 - parent: 2 - - uid: 3497 - components: - - type: Transform - pos: -14.5,32.5 - parent: 2 - - uid: 3498 - components: - - type: Transform - pos: -13.5,29.5 - parent: 2 - - uid: 3499 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 3500 - components: - - type: Transform - pos: -17.5,25.5 - parent: 2 - - uid: 3501 - components: - - type: Transform - pos: -17.5,24.5 - parent: 2 - - uid: 3502 - components: - - type: Transform - pos: -17.5,23.5 - parent: 2 - - uid: 3503 - components: - - type: Transform - pos: -17.5,22.5 - parent: 2 - - uid: 3504 - components: - - type: Transform - pos: -17.5,21.5 - parent: 2 - - uid: 3505 - components: - - type: Transform - pos: -17.5,20.5 - parent: 2 - - uid: 3506 - components: - - type: Transform - pos: -17.5,19.5 - parent: 2 - - uid: 3507 - components: - - type: Transform - pos: -17.5,18.5 - parent: 2 - - uid: 3508 - components: - - type: Transform - pos: -12.5,29.5 - parent: 2 - - uid: 3509 - components: - - type: Transform - pos: -12.5,30.5 - parent: 2 - - uid: 3510 - components: - - type: Transform - pos: -11.5,30.5 - parent: 2 - - uid: 3511 - components: - - type: Transform - pos: -10.5,30.5 - parent: 2 - - uid: 3512 - components: - - type: Transform - pos: -9.5,30.5 - parent: 2 - - uid: 3513 - components: - - type: Transform - pos: -8.5,30.5 - parent: 2 - - uid: 3514 - components: - - type: Transform - pos: -7.5,30.5 - parent: 2 - - uid: 3515 - components: - - type: Transform - pos: -6.5,30.5 - parent: 2 - - uid: 3516 - components: - - type: Transform - pos: -5.5,30.5 - parent: 2 - - uid: 3517 - components: - - type: Transform - pos: -4.5,30.5 - parent: 2 - - uid: 3518 - components: - - type: Transform - pos: -3.5,30.5 - parent: 2 - - uid: 3519 - components: - - type: Transform - pos: -2.5,30.5 - parent: 2 - - uid: 3520 - components: - - type: Transform - pos: -1.5,30.5 - parent: 2 - - uid: 3521 - components: - - type: Transform - pos: -0.5,30.5 - parent: 2 - - uid: 3522 - components: - - type: Transform - pos: 0.5,30.5 - parent: 2 - - uid: 3523 - components: - - type: Transform - pos: 0.5,29.5 - parent: 2 - - uid: 3524 - components: - - type: Transform - pos: 0.5,28.5 - parent: 2 - - uid: 3525 - components: - - type: Transform - pos: 0.5,27.5 - parent: 2 - - uid: 3526 - components: - - type: Transform - pos: 0.5,26.5 - parent: 2 - - uid: 3527 - components: - - type: Transform - pos: 1.5,26.5 - parent: 2 - - uid: 3528 - components: - - type: Transform - pos: 2.5,26.5 - parent: 2 - - uid: 3529 - components: - - type: Transform - pos: 3.5,26.5 - parent: 2 - - uid: 3530 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - uid: 3531 - components: - - type: Transform - pos: 5.5,26.5 - parent: 2 - - uid: 3532 - components: - - type: Transform - pos: 5.5,27.5 - parent: 2 - - uid: 3533 - components: - - type: Transform - pos: 5.5,28.5 - parent: 2 - - uid: 3534 - components: - - type: Transform - pos: 5.5,29.5 - parent: 2 - - uid: 3535 - components: - - type: Transform - pos: 6.5,29.5 - parent: 2 - - uid: 3536 - components: - - type: Transform - pos: 7.5,29.5 - parent: 2 - - uid: 3537 - components: - - type: Transform - pos: 8.5,29.5 - parent: 2 - - uid: 3538 - components: - - type: Transform - pos: 9.5,29.5 - parent: 2 - - uid: 3539 - components: - - type: Transform - pos: 10.5,29.5 - parent: 2 - - uid: 3540 - components: - - type: Transform - pos: 11.5,29.5 - parent: 2 - - uid: 3541 - components: - - type: Transform - pos: 12.5,29.5 - parent: 2 - - uid: 3542 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 - - uid: 3543 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - uid: 3544 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - - uid: 3545 - components: - - type: Transform - pos: 16.5,29.5 - parent: 2 - - uid: 3546 - components: - - type: Transform - pos: 17.5,29.5 - parent: 2 - - uid: 3547 - components: - - type: Transform - pos: 18.5,29.5 - parent: 2 - - uid: 3548 - components: - - type: Transform - pos: 19.5,29.5 - parent: 2 - - uid: 3549 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 - - uid: 3550 - components: - - type: Transform - pos: 21.5,29.5 - parent: 2 - - uid: 3551 - components: - - type: Transform - pos: 22.5,29.5 - parent: 2 - - uid: 3552 - components: - - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 3553 - components: - - type: Transform - pos: 24.5,29.5 - parent: 2 - - uid: 3554 - components: - - type: Transform - pos: 25.5,29.5 - parent: 2 - - uid: 3555 - components: - - type: Transform - pos: 26.5,29.5 - parent: 2 - - uid: 3556 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - uid: 3557 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 3558 - components: - - type: Transform - pos: 29.5,27.5 - parent: 2 - - uid: 3559 - components: - - type: Transform - pos: 30.5,27.5 - parent: 2 - - uid: 3560 - components: - - type: Transform - pos: 31.5,27.5 - parent: 2 - - uid: 3561 - components: - - type: Transform - pos: 31.5,26.5 - parent: 2 - - uid: 3562 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 3563 - components: - - type: Transform - pos: 31.5,24.5 - parent: 2 - - uid: 3564 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 3565 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - uid: 3566 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 3567 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 3568 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 3569 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 3570 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 3571 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 3572 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 3573 - components: - - type: Transform - pos: 35.5,18.5 - parent: 2 - - uid: 3574 - components: - - type: Transform - pos: 35.5,17.5 - parent: 2 - - uid: 3575 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 - - uid: 3576 - components: - - type: Transform - pos: 35.5,15.5 - parent: 2 - - uid: 3577 - components: - - type: Transform - pos: 36.5,15.5 - parent: 2 - - uid: 3578 - components: - - type: Transform - pos: 37.5,15.5 - parent: 2 - - uid: 3579 - components: - - type: Transform - pos: 38.5,15.5 - parent: 2 - - uid: 3580 - components: - - type: Transform - pos: 39.5,15.5 - parent: 2 - - uid: 3581 - components: - - type: Transform - pos: 39.5,14.5 - parent: 2 - - uid: 3582 - components: - - type: Transform - pos: 39.5,13.5 - parent: 2 - - uid: 3583 - components: - - type: Transform - pos: 39.5,12.5 - parent: 2 - - uid: 3584 - components: - - type: Transform - pos: 39.5,11.5 - parent: 2 - - uid: 3585 - components: - - type: Transform - pos: 41.5,11.5 - parent: 2 - - uid: 3586 - components: - - type: Transform - pos: 42.5,11.5 - parent: 2 - - uid: 3587 - components: - - type: Transform - pos: 43.5,11.5 - parent: 2 - - uid: 3588 - components: - - type: Transform - pos: 40.5,10.5 - parent: 2 - - uid: 3589 - components: - - type: Transform - pos: 40.5,9.5 - parent: 2 - - uid: 3590 - components: - - type: Transform - pos: 40.5,8.5 - parent: 2 - - uid: 3591 - components: - - type: Transform - pos: 40.5,7.5 - parent: 2 - - uid: 3592 - components: - - type: Transform - pos: 40.5,6.5 - parent: 2 - - uid: 3593 - components: - - type: Transform - pos: 40.5,5.5 - parent: 2 - - uid: 3594 - components: - - type: Transform - pos: 40.5,4.5 - parent: 2 - - uid: 3595 - components: - - type: Transform - pos: 40.5,3.5 - parent: 2 - - uid: 3596 - components: - - type: Transform - pos: 40.5,2.5 - parent: 2 - - uid: 3597 - components: - - type: Transform - pos: 40.5,1.5 - parent: 2 - - uid: 3598 - components: - - type: Transform - pos: 40.5,0.5 - parent: 2 - - uid: 3599 - components: - - type: Transform - pos: 39.5,0.5 - parent: 2 - - uid: 3600 - components: - - type: Transform - pos: 38.5,0.5 - parent: 2 - - uid: 3601 - components: - - type: Transform - pos: 37.5,0.5 - parent: 2 - - uid: 3602 - components: - - type: Transform - pos: 36.5,0.5 - parent: 2 - - uid: 3603 - components: - - type: Transform - pos: 35.5,0.5 - parent: 2 - - uid: 3604 - components: - - type: Transform - pos: 34.5,0.5 - parent: 2 - - uid: 3605 - components: - - type: Transform - pos: 33.5,0.5 - parent: 2 - - uid: 3606 - components: - - type: Transform - pos: 32.5,0.5 - parent: 2 - - uid: 3607 - components: - - type: Transform - pos: 31.5,0.5 - parent: 2 - - uid: 3608 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 3609 - components: - - type: Transform - pos: 29.5,0.5 - parent: 2 - - uid: 3610 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 3611 - components: - - type: Transform - pos: 27.5,0.5 - parent: 2 - - uid: 3612 - components: - - type: Transform - pos: 26.5,0.5 - parent: 2 - - uid: 3613 - components: - - type: Transform - pos: 25.5,0.5 - parent: 2 - - uid: 3614 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 2 - - uid: 3615 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - uid: 3616 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 3617 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 - - uid: 3618 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 - - uid: 3619 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 2 - - uid: 3620 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 2 - - uid: 3621 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 2 - - uid: 3622 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 2 - - uid: 3623 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - - uid: 3624 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 2 - - uid: 3625 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - uid: 3626 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 2 - - uid: 3627 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 - - uid: 3628 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 2 - - uid: 3629 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 2 - - uid: 3630 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 2 - - uid: 3631 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 2 - - uid: 3632 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 3633 - components: - - type: Transform - pos: 17.5,-18.5 - parent: 2 - - uid: 3634 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - - uid: 3635 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 3636 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - - uid: 3637 - components: - - type: Transform - pos: 17.5,-14.5 - parent: 2 - - uid: 3638 - components: - - type: Transform - pos: 17.5,-13.5 - parent: 2 - - uid: 3639 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 2 - - uid: 3640 - components: - - type: Transform - pos: 17.5,-11.5 - parent: 2 - - uid: 3641 - components: - - type: Transform - pos: 17.5,-10.5 - parent: 2 - - uid: 3642 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 2 - - uid: 3643 - components: - - type: Transform - pos: 18.5,-9.5 - parent: 2 - - uid: 3644 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 2 - - uid: 3645 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 2 - - uid: 3646 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 2 - - uid: 3647 - components: - - type: Transform - pos: 22.5,-9.5 - parent: 2 - - uid: 3648 - components: - - type: Transform - pos: 23.5,-9.5 - parent: 2 - - uid: 3649 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 2 - - uid: 3650 - components: - - type: Transform - pos: 0.5,3.5 - parent: 2 - - uid: 3651 - components: - - type: Transform - pos: 0.5,4.5 - parent: 2 - - uid: 3652 - components: - - type: Transform - pos: 0.5,5.5 - parent: 2 - - uid: 3653 - components: - - type: Transform - pos: 0.5,6.5 - parent: 2 - - uid: 3654 - components: - - type: Transform - pos: 1.5,6.5 - parent: 2 - - uid: 3655 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 3656 - components: - - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 3657 - components: - - type: Transform - pos: 3.5,9.5 - parent: 2 - - uid: 3658 - components: - - type: Transform - pos: 3.5,8.5 - parent: 2 - - uid: 3659 - components: - - type: Transform - pos: 3.5,10.5 - parent: 2 - - uid: 3660 - components: - - type: Transform - pos: 3.5,11.5 - parent: 2 - - uid: 3661 - components: - - type: Transform - pos: 3.5,12.5 - parent: 2 - - uid: 3662 - components: - - type: Transform - pos: 3.5,13.5 - parent: 2 - - uid: 3663 - components: - - type: Transform - pos: 3.5,14.5 - parent: 2 - - uid: 3664 - components: - - type: Transform - pos: 4.5,14.5 - parent: 2 - - uid: 3665 - components: - - type: Transform - pos: 5.5,14.5 - parent: 2 - - uid: 3666 - components: - - type: Transform - pos: 5.5,15.5 - parent: 2 - - uid: 3667 - components: - - type: Transform - pos: 5.5,16.5 - parent: 2 - - uid: 3668 - components: - - type: Transform - pos: 5.5,17.5 - parent: 2 - - uid: 3669 - components: - - type: Transform - pos: 5.5,18.5 - parent: 2 - - uid: 3670 - components: - - type: Transform - pos: 5.5,19.5 - parent: 2 - - uid: 3671 - components: - - type: Transform - pos: 5.5,20.5 - parent: 2 - - uid: 3672 - components: - - type: Transform - pos: 5.5,21.5 - parent: 2 - - uid: 3673 - components: - - type: Transform - pos: 5.5,22.5 - parent: 2 - - uid: 3674 - components: - - type: Transform - pos: 5.5,23.5 - parent: 2 - - uid: 3675 - components: - - type: Transform - pos: 5.5,24.5 - parent: 2 - - uid: 3676 - components: - - type: Transform - pos: 5.5,25.5 - parent: 2 - - uid: 3677 - components: - - type: Transform - pos: -36.5,36.5 - parent: 2 - - uid: 3678 - components: - - type: Transform - pos: -36.5,38.5 - parent: 2 - - uid: 3679 - components: - - type: Transform - pos: -32.5,35.5 - parent: 2 - - uid: 3680 - components: - - type: Transform - pos: -33.5,36.5 - parent: 2 - - uid: 3681 - components: - - type: Transform - pos: -35.5,36.5 - parent: 2 - - uid: 3682 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 2 - - uid: 3683 - components: - - type: Transform - pos: -36.5,39.5 - parent: 2 - - uid: 3684 - components: - - type: Transform - pos: -36.5,37.5 - parent: 2 - - uid: 3685 - components: - - type: Transform - pos: -32.5,40.5 - parent: 2 - - uid: 3689 - components: - - type: Transform - pos: -18.5,-75.5 - parent: 2 - - uid: 3690 - components: - - type: Transform - pos: -17.5,-75.5 - parent: 2 - - uid: 3693 - components: - - type: Transform - pos: -18.5,-77.5 - parent: 2 - - uid: 3695 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 2 - - uid: 3696 - components: - - type: Transform - pos: -16.5,-49.5 - parent: 2 - - uid: 3697 - components: - - type: Transform - pos: -16.5,-48.5 - parent: 2 - - uid: 3698 - components: - - type: Transform - pos: -16.5,-47.5 - parent: 2 - - uid: 3699 - components: - - type: Transform - pos: -16.5,-46.5 - parent: 2 - - uid: 3700 - components: - - type: Transform - pos: -16.5,-45.5 - parent: 2 - - uid: 3701 - components: - - type: Transform - pos: -16.5,-44.5 - parent: 2 - - uid: 3702 - components: - - type: Transform - pos: -16.5,-43.5 - parent: 2 - - uid: 3703 - components: - - type: Transform - pos: -16.5,-42.5 - parent: 2 - - uid: 3704 - components: - - type: Transform - pos: -16.5,-41.5 - parent: 2 - - uid: 3705 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 2 - - uid: 3709 - components: - - type: Transform - pos: -16.5,-65.5 - parent: 2 - - uid: 3710 - components: - - type: Transform - pos: -16.5,-66.5 - parent: 2 - - uid: 3711 - components: - - type: Transform - pos: -16.5,-67.5 - parent: 2 - - uid: 3712 - components: - - type: Transform - pos: -16.5,-68.5 - parent: 2 - - uid: 3713 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 2 - - uid: 3714 - components: - - type: Transform - pos: -16.5,-70.5 - parent: 2 - - uid: 3715 - components: - - type: Transform - pos: -16.5,-71.5 - parent: 2 - - uid: 3716 - components: - - type: Transform - pos: -16.5,-72.5 - parent: 2 - - uid: 3717 - components: - - type: Transform - pos: -16.5,-73.5 - parent: 2 - - uid: 3718 - components: - - type: Transform - pos: -16.5,-74.5 - parent: 2 - - uid: 3719 - components: - - type: Transform - pos: -16.5,-75.5 - parent: 2 - - uid: 3720 - components: - - type: Transform - pos: -16.5,-76.5 - parent: 2 - - uid: 3721 - components: - - type: Transform - pos: -16.5,-77.5 - parent: 2 - - uid: 3722 - components: - - type: Transform - pos: -16.5,-78.5 - parent: 2 - - uid: 3723 - components: - - type: Transform - pos: -16.5,-79.5 - parent: 2 - - uid: 3724 - components: - - type: Transform - pos: -16.5,-80.5 - parent: 2 - - uid: 3725 - components: - - type: Transform - pos: -15.5,-80.5 - parent: 2 - - uid: 3726 - components: - - type: Transform - pos: -14.5,-80.5 - parent: 2 - - uid: 3727 - components: - - type: Transform - pos: -14.5,-81.5 - parent: 2 - - uid: 3728 - components: - - type: Transform - pos: -16.5,-38.5 - parent: 2 - - uid: 3729 - components: - - type: Transform - pos: -14.5,-82.5 - parent: 2 - - uid: 3730 - components: - - type: Transform - pos: -16.5,-37.5 - parent: 2 - - uid: 3731 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - - uid: 3732 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - uid: 3733 - components: - - type: Transform - pos: -16.5,-34.5 - parent: 2 - - uid: 3735 - components: - - type: Transform - pos: -19.5,26.5 - parent: 2 - - uid: 3736 - components: - - type: Transform - pos: -19.5,27.5 - parent: 2 - - uid: 3737 - components: - - type: Transform - pos: -19.5,28.5 - parent: 2 - - uid: 3738 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 3739 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 2 - - uid: 3740 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - - uid: 3741 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 3742 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 2 - - uid: 3743 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 2 - - uid: 3744 - components: - - type: Transform - pos: -36.5,-29.5 - parent: 2 - - uid: 3745 - components: - - type: Transform - pos: -37.5,-29.5 - parent: 2 - - uid: 3746 - components: - - type: Transform - pos: -38.5,-28.5 - parent: 2 - - uid: 3747 - components: - - type: Transform - pos: -37.5,-28.5 - parent: 2 - - uid: 3748 - components: - - type: Transform - pos: -36.5,-28.5 - parent: 2 - - uid: 3749 - components: - - type: Transform - pos: -35.5,-28.5 - parent: 2 - - uid: 3750 - components: - - type: Transform - pos: -40.5,-32.5 - parent: 2 - - uid: 3751 - components: - - type: Transform - pos: -40.5,-33.5 - parent: 2 - - uid: 3752 - components: - - type: Transform - pos: -40.5,-34.5 - parent: 2 - - uid: 3753 - components: - - type: Transform - pos: -41.5,-32.5 - parent: 2 - - uid: 3754 - components: - - type: Transform - pos: -41.5,-33.5 - parent: 2 - - uid: 3755 - components: - - type: Transform - pos: -41.5,-34.5 - parent: 2 - - uid: 3756 - components: - - type: Transform - pos: -41.5,-31.5 - parent: 2 - - uid: 3757 - components: - - type: Transform - pos: -40.5,-37.5 - parent: 2 - - uid: 3758 - components: - - type: Transform - pos: -40.5,-38.5 - parent: 2 - - uid: 3759 - components: - - type: Transform - pos: -40.5,-39.5 - parent: 2 - - uid: 3760 - components: - - type: Transform - pos: -41.5,-37.5 - parent: 2 - - uid: 3761 - components: - - type: Transform - pos: -41.5,-38.5 - parent: 2 - - uid: 3762 - components: - - type: Transform - pos: -41.5,-39.5 - parent: 2 - - uid: 3763 - components: - - type: Transform - pos: -40.5,-42.5 - parent: 2 - - uid: 3764 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - - uid: 3765 - components: - - type: Transform - pos: -40.5,-44.5 - parent: 2 - - uid: 3766 - components: - - type: Transform - pos: -41.5,-42.5 - parent: 2 - - uid: 3767 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 3768 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - - uid: 3770 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 3771 - components: - - type: Transform - pos: -37.5,-48.5 - parent: 2 - - uid: 3772 - components: - - type: Transform - pos: -36.5,-47.5 - parent: 2 - - uid: 3773 - components: - - type: Transform - pos: -36.5,-48.5 - parent: 2 - - uid: 3774 - components: - - type: Transform - pos: -35.5,-47.5 - parent: 2 - - uid: 3775 - components: - - type: Transform - pos: -35.5,-48.5 - parent: 2 - - uid: 3776 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 2 - - uid: 3777 - components: - - type: Transform - pos: -32.5,-48.5 - parent: 2 - - uid: 3778 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 3779 - components: - - type: Transform - pos: -31.5,-48.5 - parent: 2 - - uid: 3780 - components: - - type: Transform - pos: -31.5,-47.5 - parent: 2 - - uid: 3781 - components: - - type: Transform - pos: -28.5,-47.5 - parent: 2 - - uid: 3782 - components: - - type: Transform - pos: -28.5,-48.5 - parent: 2 - - uid: 3783 - components: - - type: Transform - pos: -27.5,-47.5 - parent: 2 - - uid: 3784 - components: - - type: Transform - pos: -27.5,-48.5 - parent: 2 - - uid: 3785 - components: - - type: Transform - pos: -26.5,-47.5 - parent: 2 - - uid: 3786 - components: - - type: Transform - pos: -26.5,-48.5 - parent: 2 - - uid: 3787 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 2 - - uid: 3788 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 3815 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 2 - - uid: 3822 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 2 - - uid: 3887 - components: - - type: Transform - pos: -36.5,-37.5 - parent: 2 - - uid: 3891 - components: - - type: Transform - pos: -25.5,-45.5 - parent: 2 - - uid: 3899 - components: - - type: Transform - pos: -34.5,-37.5 - parent: 2 - - uid: 3900 - components: - - type: Transform - pos: -34.5,-36.5 - parent: 2 - - uid: 3903 - components: - - type: Transform - pos: -26.5,-46.5 - parent: 2 - - uid: 3907 - components: - - type: Transform - pos: -39.5,-33.5 - parent: 2 - - uid: 3912 - components: - - type: Transform - pos: -28.5,-46.5 - parent: 2 - - uid: 3913 - components: - - type: Transform - pos: -29.5,-46.5 - parent: 2 - - uid: 3914 - components: - - type: Transform - pos: -29.5,-41.5 - parent: 2 - - uid: 3915 - components: - - type: Transform - pos: -30.5,-43.5 - parent: 2 - - uid: 3916 - components: - - type: Transform - pos: -29.5,-43.5 - parent: 2 - - uid: 3918 - components: - - type: Transform - pos: -26.5,-45.5 - parent: 2 - - uid: 3921 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 2 - - uid: 3923 - components: - - type: Transform - pos: -38.5,-43.5 - parent: 2 - - uid: 4999 - components: - - type: Transform - pos: -31.5,-44.5 - parent: 2 - - uid: 5002 - components: - - type: Transform - pos: -35.5,-40.5 - parent: 2 - - uid: 6185 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 2 - - uid: 6248 - components: - - type: Transform - pos: -30.5,-46.5 - parent: 2 - - uid: 6250 - components: - - type: Transform - pos: -29.5,-42.5 - parent: 2 - - uid: 6263 - components: - - type: Transform - pos: -13.5,-82.5 - parent: 2 - - uid: 7254 - components: - - type: Transform - pos: -36.5,-36.5 - parent: 2 - - uid: 7256 - components: - - type: Transform - pos: -36.5,-31.5 - parent: 2 - - uid: 7259 - components: - - type: Transform - pos: -26.5,-40.5 - parent: 2 - - uid: 9756 - components: - - type: Transform - pos: -17.5,-77.5 - parent: 2 - - uid: 11958 - components: - - type: Transform - pos: -13.5,-81.5 - parent: 2 - - uid: 12006 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 2 - - uid: 12011 - components: - - type: Transform - pos: -27.5,-40.5 - parent: 2 - - uid: 12077 - components: - - type: Transform - pos: -31.5,-45.5 - parent: 2 - - uid: 12089 - components: - - type: Transform - pos: -33.5,-33.5 - parent: 2 - - uid: 12567 - components: - - type: Transform - pos: -17.5,-71.5 - parent: 2 - - uid: 12738 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 2 - - uid: 12972 - components: - - type: Transform - pos: -36.5,-30.5 - parent: 2 - - uid: 13119 - components: - - type: Transform - pos: -18.5,-71.5 - parent: 2 - - uid: 17435 - components: - - type: Transform - pos: -15.5,-71.5 - parent: 2 - - uid: 17436 - components: - - type: Transform - pos: -14.5,-71.5 - parent: 2 - - uid: 17437 - components: - - type: Transform - pos: -13.5,-71.5 - parent: 2 - - uid: 17504 - components: - - type: Transform - pos: -29.5,-34.5 - parent: 2 - - uid: 17547 - components: - - type: Transform - pos: -35.5,-36.5 - parent: 2 - - uid: 17598 - components: - - type: Transform - pos: -33.5,-34.5 - parent: 2 - - uid: 17635 - components: - - type: Transform - pos: -25.5,-42.5 - parent: 2 - - uid: 17673 - components: - - type: Transform - pos: -19.5,-39.5 - parent: 2 - - uid: 17674 - components: - - type: Transform - pos: -19.5,-38.5 - parent: 2 - - uid: 17675 - components: - - type: Transform - pos: -19.5,-37.5 - parent: 2 - - uid: 17695 - components: - - type: Transform - pos: -28.5,-40.5 - parent: 2 - - uid: 17696 - components: - - type: Transform - pos: -28.5,-39.5 - parent: 2 -- proto: CableHVStack - entities: - - uid: 3789 - components: - - type: Transform - pos: -18.524075,-34.377613 - parent: 2 - - uid: 3790 - components: - - type: Transform - pos: -10.552959,-24.292353 - parent: 2 -- proto: CableHVStack1 - entities: - - uid: 3791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.34298,14.683756 - parent: 2 - - uid: 3792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.502434,7.3422384 - parent: 2 - - uid: 3793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.76011,8.709426 - parent: 2 - - uid: 3794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.60476,4.3734884 - parent: 2 - - uid: 3795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.04197,11.697707 - parent: 2 - - uid: 3796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.40011,7.6742697 - parent: 2 - - uid: 3797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.02577,18.472818 - parent: 2 - - uid: 3798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.16713,57.640255 - parent: 2 - - uid: 3799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.10015,61.878536 - parent: 2 - - uid: 3800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.394104,61.116817 - parent: 2 - - uid: 3801 - components: - - type: Transform - pos: -36.089542,60.436928 - parent: 2 - - uid: 3802 - components: - - type: Transform - pos: -46.93643,65.10828 - parent: 2 - - uid: 3803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.632244,65.98718 - parent: 2 - - uid: 3804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.683334,64.776245 - parent: 2 - - uid: 3805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.858845,66.04578 - parent: 2 - - uid: 3806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.84024,60.710365 - parent: 2 - - uid: 3807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.2421,61.823647 - parent: 2 - - uid: 3808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.066284,58.220463 - parent: 2 - - uid: 3809 - components: - - type: Transform - pos: -34.95652,56.404057 - parent: 2 - - uid: 3810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.461636,57.654057 - parent: 2 - - uid: 3811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.447212,57.614994 - parent: 2 - - uid: 3824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.478298,34.047295 - parent: 2 - - uid: 3825 - components: - - type: Transform - pos: -30.648613,41.426968 - parent: 2 - - uid: 3826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.1075325,29.80727 - parent: 2 - - uid: 3827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.544165,30.27602 - parent: 2 -- proto: CableHVStack10 - entities: - - uid: 3828 - components: - - type: Transform - pos: 45.414303,9.464138 - parent: 2 - - uid: 3829 - components: - - type: Transform - pos: -44.48516,49.352608 - parent: 2 -- proto: CableMV - entities: - - uid: 61 - components: - - type: Transform - pos: -42.5,50.5 - parent: 2 - - uid: 1674 - components: - - type: Transform - pos: -42.5,47.5 - parent: 2 - - uid: 2048 - components: - - type: Transform - pos: -42.5,48.5 - parent: 2 - - uid: 2049 - components: - - type: Transform - pos: 29.5,27.5 - parent: 2 - - uid: 2625 - components: - - type: Transform - pos: -29.5,-30.5 - parent: 2 - - uid: 2636 - components: - - type: Transform - pos: -30.5,-30.5 - parent: 2 - - uid: 3830 - components: - - type: Transform - pos: -64.5,-4.5 - parent: 2 - - uid: 3832 - components: - - type: Transform - pos: -15.5,-36.5 - parent: 2 - - uid: 3833 - components: - - type: Transform - pos: -13.5,-33.5 - parent: 2 - - uid: 3834 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 2 - - uid: 3835 - components: - - type: Transform - pos: -15.5,-33.5 - parent: 2 - - uid: 3836 - components: - - type: Transform - pos: -15.5,-34.5 - parent: 2 - - uid: 3837 - components: - - type: Transform - pos: -15.5,-35.5 - parent: 2 - - uid: 3838 - components: - - type: Transform - pos: -14.5,-33.5 - parent: 2 - - uid: 3839 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 2 - - uid: 3840 - components: - - type: Transform - pos: -11.5,-33.5 - parent: 2 - - uid: 3841 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 2 - - uid: 3842 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 3843 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - - uid: 3844 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - - uid: 3845 - components: - - type: Transform - pos: -7.5,3.5 - parent: 2 - - uid: 3846 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 2 - - uid: 3847 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - - uid: 3848 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 2 - - uid: 3849 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 2 - - uid: 3850 - components: - - type: Transform - pos: -4.5,-22.5 - parent: 2 - - uid: 3851 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 - - uid: 3852 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 2 - - uid: 3853 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 2 - - uid: 3854 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 3855 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 2 - - uid: 3856 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 3857 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 3858 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 2 - - uid: 3859 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 - - uid: 3860 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - - uid: 3861 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 2 - - uid: 3862 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 2 - - uid: 3863 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 3864 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 2 - - uid: 3865 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 2 - - uid: 3866 - components: - - type: Transform - pos: -4.5,-13.5 - parent: 2 - - uid: 3867 - components: - - type: Transform - pos: -5.5,-13.5 - parent: 2 - - uid: 3868 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 2 - - uid: 3869 - components: - - type: Transform - pos: -7.5,-13.5 - parent: 2 - - uid: 3870 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 2 - - uid: 3871 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 2 - - uid: 3872 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 3873 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 2 - - uid: 3874 - components: - - type: Transform - pos: 1.5,1.5 - parent: 2 - - uid: 3875 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 2 - - uid: 3876 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 - - uid: 3877 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 2 - - uid: 3878 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 2 - - uid: 3879 - components: - - type: Transform - pos: -0.5,0.5 - parent: 2 - - uid: 3880 - components: - - type: Transform - pos: 26.5,-22.5 - parent: 2 - - uid: 3881 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 2 - - uid: 3882 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 2 - - uid: 3883 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 3884 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - uid: 3885 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 3886 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 2 - - uid: 3892 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 2 - - uid: 3895 - components: - - type: Transform - pos: -31.5,-26.5 - parent: 2 - - uid: 3896 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 3897 - components: - - type: Transform - pos: -31.5,-28.5 - parent: 2 - - uid: 3905 - components: - - type: Transform - pos: -31.5,-29.5 - parent: 2 - - uid: 3924 - components: - - type: Transform - pos: 18.5,-21.5 - parent: 2 - - uid: 3925 - components: - - type: Transform - pos: 20.5,-23.5 - parent: 2 - - uid: 3926 - components: - - type: Transform - pos: -63.5,-6.5 - parent: 2 - - uid: 3927 - components: - - type: Transform - pos: -64.5,-8.5 - parent: 2 - - uid: 3928 - components: - - type: Transform - pos: -17.5,-76.5 - parent: 2 - - uid: 3929 - components: - - type: Transform - pos: -11.5,39.5 - parent: 2 - - uid: 3930 - components: - - type: Transform - pos: -6.5,3.5 - parent: 2 - - uid: 3931 - components: - - type: Transform - pos: 28.5,26.5 - parent: 2 - - uid: 3932 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 3933 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 3934 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 2 - - uid: 3935 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 3936 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 3937 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 3938 - components: - - type: Transform - pos: 4.5,-13.5 - parent: 2 - - uid: 3939 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 2 - - uid: 3940 - components: - - type: Transform - pos: -33.5,36.5 - parent: 2 - - uid: 3941 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 3942 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 2 - - uid: 3943 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 2 - - uid: 3944 - components: - - type: Transform - pos: -8.5,39.5 - parent: 2 - - uid: 3945 - components: - - type: Transform - pos: -10.5,39.5 - parent: 2 - - uid: 3946 - components: - - type: Transform - pos: -32.5,35.5 - parent: 2 - - uid: 3947 - components: - - type: Transform - pos: -32.5,36.5 - parent: 2 - - uid: 3948 - components: - - type: Transform - pos: -47.5,44.5 - parent: 2 - - uid: 3949 - components: - - type: Transform - pos: -32.5,34.5 - parent: 2 - - uid: 3950 - components: - - type: Transform - pos: -32.5,32.5 - parent: 2 - - uid: 3951 - components: - - type: Transform - pos: -32.5,31.5 - parent: 2 - - uid: 3952 - components: - - type: Transform - pos: -32.5,30.5 - parent: 2 - - uid: 3953 - components: - - type: Transform - pos: -22.5,34.5 - parent: 2 - - uid: 3954 - components: - - type: Transform - pos: -32.5,33.5 - parent: 2 - - uid: 3955 - components: - - type: Transform - pos: -46.5,44.5 - parent: 2 - - uid: 3956 - components: - - type: Transform - pos: -46.5,45.5 - parent: 2 - - uid: 3957 - components: - - type: Transform - pos: -46.5,46.5 - parent: 2 - - uid: 3958 - components: - - type: Transform - pos: -45.5,46.5 - parent: 2 - - uid: 3959 - components: - - type: Transform - pos: -44.5,46.5 - parent: 2 - - uid: 3960 - components: - - type: Transform - pos: -43.5,46.5 - parent: 2 - - uid: 3961 - components: - - type: Transform - pos: -42.5,46.5 - parent: 2 - - uid: 3962 - components: - - type: Transform - pos: -41.5,46.5 - parent: 2 - - uid: 3963 - components: - - type: Transform - pos: -40.5,46.5 - parent: 2 - - uid: 3964 - components: - - type: Transform - pos: -39.5,46.5 - parent: 2 - - uid: 3965 - components: - - type: Transform - pos: -38.5,46.5 - parent: 2 - - uid: 3966 - components: - - type: Transform - pos: -37.5,46.5 - parent: 2 - - uid: 3967 - components: - - type: Transform - pos: -36.5,46.5 - parent: 2 - - uid: 3968 - components: - - type: Transform - pos: -36.5,46.5 - parent: 2 - - uid: 3969 - components: - - type: Transform - pos: -36.5,45.5 - parent: 2 - - uid: 3970 - components: - - type: Transform - pos: -36.5,44.5 - parent: 2 - - uid: 3971 - components: - - type: Transform - pos: -36.5,43.5 - parent: 2 - - uid: 3972 - components: - - type: Transform - pos: -36.5,42.5 - parent: 2 - - uid: 3973 - components: - - type: Transform - pos: -36.5,41.5 - parent: 2 - - uid: 3974 - components: - - type: Transform - pos: -19.5,10.5 - parent: 2 - - uid: 3975 - components: - - type: Transform - pos: -20.5,10.5 - parent: 2 - - uid: 3976 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - - uid: 3977 - components: - - type: Transform - pos: -43.5,33.5 - parent: 2 - - uid: 3978 - components: - - type: Transform - pos: -39.5,40.5 - parent: 2 - - uid: 3979 - components: - - type: Transform - pos: -39.5,39.5 - parent: 2 - - uid: 3980 - components: - - type: Transform - pos: -39.5,38.5 - parent: 2 - - uid: 3981 - components: - - type: Transform - pos: -39.5,37.5 - parent: 2 - - uid: 3982 - components: - - type: Transform - pos: -39.5,36.5 - parent: 2 - - uid: 3983 - components: - - type: Transform - pos: -39.5,35.5 - parent: 2 - - uid: 3984 - components: - - type: Transform - pos: -39.5,34.5 - parent: 2 - - uid: 3985 - components: - - type: Transform - pos: -40.5,34.5 - parent: 2 - - uid: 3986 - components: - - type: Transform - pos: -41.5,34.5 - parent: 2 - - uid: 3987 - components: - - type: Transform - pos: -41.5,35.5 - parent: 2 - - uid: 3988 - components: - - type: Transform - pos: -42.5,34.5 - parent: 2 - - uid: 3989 - components: - - type: Transform - pos: -48.5,37.5 - parent: 2 - - uid: 3990 - components: - - type: Transform - pos: -42.5,33.5 - parent: 2 - - uid: 3991 - components: - - type: Transform - pos: -44.5,33.5 - parent: 2 - - uid: 3992 - components: - - type: Transform - pos: -45.5,33.5 - parent: 2 - - uid: 3993 - components: - - type: Transform - pos: -46.5,33.5 - parent: 2 - - uid: 3994 - components: - - type: Transform - pos: -47.5,33.5 - parent: 2 - - uid: 3995 - components: - - type: Transform - pos: -17.5,14.5 - parent: 2 - - uid: 3996 - components: - - type: Transform - pos: -47.5,34.5 - parent: 2 - - uid: 3997 - components: - - type: Transform - pos: -47.5,35.5 - parent: 2 - - uid: 3998 - components: - - type: Transform - pos: -47.5,36.5 - parent: 2 - - uid: 3999 - components: - - type: Transform - pos: -47.5,37.5 - parent: 2 - - uid: 4000 - components: - - type: Transform - pos: -48.5,38.5 - parent: 2 - - uid: 4001 - components: - - type: Transform - pos: -17.5,15.5 - parent: 2 - - uid: 4002 - components: - - type: Transform - pos: -18.5,14.5 - parent: 2 - - uid: 4003 - components: - - type: Transform - pos: -17.5,16.5 - parent: 2 - - uid: 4004 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - - uid: 4005 - components: - - type: Transform - pos: -18.5,17.5 - parent: 2 - - uid: 4006 - components: - - type: Transform - pos: -19.5,17.5 - parent: 2 - - uid: 4007 - components: - - type: Transform - pos: -20.5,17.5 - parent: 2 - - uid: 4008 - components: - - type: Transform - pos: -21.5,17.5 - parent: 2 - - uid: 4009 - components: - - type: Transform - pos: -22.5,17.5 - parent: 2 - - uid: 4010 - components: - - type: Transform - pos: -23.5,17.5 - parent: 2 - - uid: 4011 - components: - - type: Transform - pos: -24.5,17.5 - parent: 2 - - uid: 4012 - components: - - type: Transform - pos: -24.5,16.5 - parent: 2 - - uid: 4013 - components: - - type: Transform - pos: -24.5,15.5 - parent: 2 - - uid: 4014 - components: - - type: Transform - pos: -25.5,15.5 - parent: 2 - - uid: 4015 - components: - - type: Transform - pos: -26.5,15.5 - parent: 2 - - uid: 4016 - components: - - type: Transform - pos: -27.5,15.5 - parent: 2 - - uid: 4017 - components: - - type: Transform - pos: -28.5,15.5 - parent: 2 - - uid: 4018 - components: - - type: Transform - pos: -29.5,15.5 - parent: 2 - - uid: 4019 - components: - - type: Transform - pos: -30.5,15.5 - parent: 2 - - uid: 4020 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - - uid: 4021 - components: - - type: Transform - pos: -33.5,15.5 - parent: 2 - - uid: 4022 - components: - - type: Transform - pos: -34.5,15.5 - parent: 2 - - uid: 4023 - components: - - type: Transform - pos: -35.5,15.5 - parent: 2 - - uid: 4024 - components: - - type: Transform - pos: -35.5,16.5 - parent: 2 - - uid: 4025 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 - - uid: 4026 - components: - - type: Transform - pos: -15.5,17.5 - parent: 2 - - uid: 4027 - components: - - type: Transform - pos: -14.5,17.5 - parent: 2 - - uid: 4028 - components: - - type: Transform - pos: -13.5,17.5 - parent: 2 - - uid: 4029 - components: - - type: Transform - pos: -12.5,17.5 - parent: 2 - - uid: 4030 - components: - - type: Transform - pos: -11.5,17.5 - parent: 2 - - uid: 4031 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - uid: 4032 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - - uid: 4033 - components: - - type: Transform - pos: -9.5,18.5 - parent: 2 - - uid: 4034 - components: - - type: Transform - pos: -8.5,18.5 - parent: 2 - - uid: 4035 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - - uid: 4036 - components: - - type: Transform - pos: -8.5,16.5 - parent: 2 - - uid: 4037 - components: - - type: Transform - pos: -8.5,15.5 - parent: 2 - - uid: 4038 - components: - - type: Transform - pos: -7.5,15.5 - parent: 2 - - uid: 4039 - components: - - type: Transform - pos: -7.5,14.5 - parent: 2 - - uid: 4040 - components: - - type: Transform - pos: -7.5,13.5 - parent: 2 - - uid: 4041 - components: - - type: Transform - pos: -43.5,45.5 - parent: 2 - - uid: 4042 - components: - - type: Transform - pos: -8.5,12.5 - parent: 2 - - uid: 4043 - components: - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 4044 - components: - - type: Transform - pos: -8.5,11.5 - parent: 2 - - uid: 4045 - components: - - type: Transform - pos: -8.5,10.5 - parent: 2 - - uid: 4046 - components: - - type: Transform - pos: -43.5,44.5 - parent: 2 - - uid: 4047 - components: - - type: Transform - pos: -43.5,43.5 - parent: 2 - - uid: 4048 - components: - - type: Transform - pos: -43.5,42.5 - parent: 2 - - uid: 4049 - components: - - type: Transform - pos: -43.5,41.5 - parent: 2 - - uid: 4050 - components: - - type: Transform - pos: -43.5,40.5 - parent: 2 - - uid: 4051 - components: - - type: Transform - pos: -42.5,40.5 - parent: 2 - - uid: 4052 - components: - - type: Transform - pos: -41.5,40.5 - parent: 2 - - uid: 4053 - components: - - type: Transform - pos: -40.5,40.5 - parent: 2 - - uid: 4054 - components: - - type: Transform - pos: -9.5,10.5 - parent: 2 - - uid: 4055 - components: - - type: Transform - pos: -10.5,10.5 - parent: 2 - - uid: 4056 - components: - - type: Transform - pos: -11.5,10.5 - parent: 2 - - uid: 4057 - components: - - type: Transform - pos: -12.5,10.5 - parent: 2 - - uid: 4058 - components: - - type: Transform - pos: -13.5,10.5 - parent: 2 - - uid: 4059 - components: - - type: Transform - pos: -14.5,10.5 - parent: 2 - - uid: 4060 - components: - - type: Transform - pos: -15.5,10.5 - parent: 2 - - uid: 4061 - components: - - type: Transform - pos: -16.5,10.5 - parent: 2 - - uid: 4062 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - uid: 4063 - components: - - type: Transform - pos: -18.5,10.5 - parent: 2 - - uid: 4064 - components: - - type: Transform - pos: -18.5,9.5 - parent: 2 - - uid: 4065 - components: - - type: Transform - pos: -18.5,8.5 - parent: 2 - - uid: 4066 - components: - - type: Transform - pos: -19.5,8.5 - parent: 2 - - uid: 4067 - components: - - type: Transform - pos: -20.5,12.5 - parent: 2 - - uid: 4068 - components: - - type: Transform - pos: -20.5,13.5 - parent: 2 - - uid: 4069 - components: - - type: Transform - pos: -20.5,14.5 - parent: 2 - - uid: 4070 - components: - - type: Transform - pos: -20.5,15.5 - parent: 2 - - uid: 4071 - components: - - type: Transform - pos: -20.5,16.5 - parent: 2 - - uid: 4072 - components: - - type: Transform - pos: -36.5,40.5 - parent: 2 - - uid: 4073 - components: - - type: Transform - pos: -36.5,39.5 - parent: 2 - - uid: 4074 - components: - - type: Transform - pos: -36.5,37.5 - parent: 2 - - uid: 4075 - components: - - type: Transform - pos: -33.5,30.5 - parent: 2 - - uid: 4076 - components: - - type: Transform - pos: -36.5,15.5 - parent: 2 - - uid: 4077 - components: - - type: Transform - pos: -37.5,15.5 - parent: 2 - - uid: 4078 - components: - - type: Transform - pos: -38.5,15.5 - parent: 2 - - uid: 4079 - components: - - type: Transform - pos: -39.5,15.5 - parent: 2 - - uid: 4080 - components: - - type: Transform - pos: -40.5,15.5 - parent: 2 - - uid: 4081 - components: - - type: Transform - pos: -41.5,15.5 - parent: 2 - - uid: 4082 - components: - - type: Transform - pos: -42.5,15.5 - parent: 2 - - uid: 4083 - components: - - type: Transform - pos: -43.5,15.5 - parent: 2 - - uid: 4084 - components: - - type: Transform - pos: -44.5,15.5 - parent: 2 - - uid: 4085 - components: - - type: Transform - pos: -45.5,15.5 - parent: 2 - - uid: 4086 - components: - - type: Transform - pos: -45.5,16.5 - parent: 2 - - uid: 4087 - components: - - type: Transform - pos: -45.5,17.5 - parent: 2 - - uid: 4088 - components: - - type: Transform - pos: -45.5,18.5 - parent: 2 - - uid: 4089 - components: - - type: Transform - pos: -44.5,18.5 - parent: 2 - - uid: 4090 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 4091 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - uid: 4092 - components: - - type: Transform - pos: 26.5,29.5 - parent: 2 - - uid: 4093 - components: - - type: Transform - pos: 25.5,29.5 - parent: 2 - - uid: 4094 - components: - - type: Transform - pos: 24.5,29.5 - parent: 2 - - uid: 4095 - components: - - type: Transform - pos: 23.5,29.5 - parent: 2 - - uid: 4096 - components: - - type: Transform - pos: 22.5,29.5 - parent: 2 - - uid: 4097 - components: - - type: Transform - pos: 21.5,25.5 - parent: 2 - - uid: 4098 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 - - uid: 4099 - components: - - type: Transform - pos: 19.5,29.5 - parent: 2 - - uid: 4100 - components: - - type: Transform - pos: 18.5,29.5 - parent: 2 - - uid: 4101 - components: - - type: Transform - pos: 17.5,29.5 - parent: 2 - - uid: 4102 - components: - - type: Transform - pos: 16.5,29.5 - parent: 2 - - uid: 4103 - components: - - type: Transform - pos: 15.5,29.5 - parent: 2 - - uid: 4104 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - uid: 4105 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 - - uid: 4106 - components: - - type: Transform - pos: 13.5,28.5 - parent: 2 - - uid: 4107 - components: - - type: Transform - pos: 13.5,27.5 - parent: 2 - - uid: 4108 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 4109 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 4110 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 4111 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 - - uid: 4112 - components: - - type: Transform - pos: 11.5,24.5 - parent: 2 - - uid: 4113 - components: - - type: Transform - pos: 21.5,27.5 - parent: 2 - - uid: 4114 - components: - - type: Transform - pos: 21.5,28.5 - parent: 2 - - uid: 4115 - components: - - type: Transform - pos: 21.5,29.5 - parent: 2 - - uid: 4116 - components: - - type: Transform - pos: 21.5,26.5 - parent: 2 - - uid: 4117 - components: - - type: Transform - pos: 21.5,24.5 - parent: 2 - - uid: 4118 - components: - - type: Transform - pos: 21.5,23.5 - parent: 2 - - uid: 4119 - components: - - type: Transform - pos: 21.5,22.5 - parent: 2 - - uid: 4120 - components: - - type: Transform - pos: 21.5,21.5 - parent: 2 - - uid: 4121 - components: - - type: Transform - pos: 21.5,19.5 - parent: 2 - - uid: 4122 - components: - - type: Transform - pos: 21.5,18.5 - parent: 2 - - uid: 4123 - components: - - type: Transform - pos: 21.5,17.5 - parent: 2 - - uid: 4124 - components: - - type: Transform - pos: 21.5,16.5 - parent: 2 - - uid: 4125 - components: - - type: Transform - pos: 21.5,15.5 - parent: 2 - - uid: 4126 - components: - - type: Transform - pos: 21.5,14.5 - parent: 2 - - uid: 4127 - components: - - type: Transform - pos: 20.5,14.5 - parent: 2 - - uid: 4128 - components: - - type: Transform - pos: 20.5,16.5 - parent: 2 - - uid: 4129 - components: - - type: Transform - pos: 19.5,16.5 - parent: 2 - - uid: 4130 - components: - - type: Transform - pos: 18.5,16.5 - parent: 2 - - uid: 4131 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 - - uid: 4132 - components: - - type: Transform - pos: 16.5,16.5 - parent: 2 - - uid: 4133 - components: - - type: Transform - pos: 15.5,16.5 - parent: 2 - - uid: 4134 - components: - - type: Transform - pos: 14.5,16.5 - parent: 2 - - uid: 4135 - components: - - type: Transform - pos: 13.5,16.5 - parent: 2 - - uid: 4136 - components: - - type: Transform - pos: 13.5,17.5 - parent: 2 - - uid: 4137 - components: - - type: Transform - pos: 13.5,18.5 - parent: 2 - - uid: 4138 - components: - - type: Transform - pos: 13.5,20.5 - parent: 2 - - uid: 4139 - components: - - type: Transform - pos: 13.5,21.5 - parent: 2 - - uid: 4140 - components: - - type: Transform - pos: 13.5,22.5 - parent: 2 - - uid: 4141 - components: - - type: Transform - pos: -16.5,19.5 - parent: 2 - - uid: 4142 - components: - - type: Transform - pos: -16.5,20.5 - parent: 2 - - uid: 4143 - components: - - type: Transform - pos: -15.5,20.5 - parent: 2 - - uid: 4144 - components: - - type: Transform - pos: -17.5,19.5 - parent: 2 - - uid: 4145 - components: - - type: Transform - pos: -17.5,18.5 - parent: 2 - - uid: 4146 - components: - - type: Transform - pos: -14.5,31.5 - parent: 2 - - uid: 4147 - components: - - type: Transform - pos: -14.5,30.5 - parent: 2 - - uid: 4148 - components: - - type: Transform - pos: -14.5,29.5 - parent: 2 - - uid: 4149 - components: - - type: Transform - pos: -13.5,29.5 - parent: 2 - - uid: 4150 - components: - - type: Transform - pos: -13.5,26.5 - parent: 2 - - uid: 4151 - components: - - type: Transform - pos: -12.5,26.5 - parent: 2 - - uid: 4152 - components: - - type: Transform - pos: -11.5,26.5 - parent: 2 - - uid: 4153 - components: - - type: Transform - pos: -10.5,26.5 - parent: 2 - - uid: 4154 - components: - - type: Transform - pos: -9.5,26.5 - parent: 2 - - uid: 4155 - components: - - type: Transform - pos: -8.5,26.5 - parent: 2 - - uid: 4156 - components: - - type: Transform - pos: -7.5,26.5 - parent: 2 - - uid: 4157 - components: - - type: Transform - pos: -7.5,27.5 - parent: 2 - - uid: 4158 - components: - - type: Transform - pos: -14.5,32.5 - parent: 2 - - uid: 4159 - components: - - type: Transform - pos: -15.5,29.5 - parent: 2 - - uid: 4160 - components: - - type: Transform - pos: -16.5,29.5 - parent: 2 - - uid: 4161 - components: - - type: Transform - pos: -17.5,29.5 - parent: 2 - - uid: 4162 - components: - - type: Transform - pos: -18.5,29.5 - parent: 2 - - uid: 4163 - components: - - type: Transform - pos: -19.5,29.5 - parent: 2 - - uid: 4164 - components: - - type: Transform - pos: -20.5,29.5 - parent: 2 - - uid: 4165 - components: - - type: Transform - pos: -20.5,30.5 - parent: 2 - - uid: 4166 - components: - - type: Transform - pos: -20.5,31.5 - parent: 2 - - uid: 4167 - components: - - type: Transform - pos: -20.5,32.5 - parent: 2 - - uid: 4168 - components: - - type: Transform - pos: -20.5,33.5 - parent: 2 - - uid: 4169 - components: - - type: Transform - pos: -19.5,33.5 - parent: 2 - - uid: 4170 - components: - - type: Transform - pos: -18.5,33.5 - parent: 2 - - uid: 4171 - components: - - type: Transform - pos: -17.5,33.5 - parent: 2 - - uid: 4172 - components: - - type: Transform - pos: -16.5,33.5 - parent: 2 - - uid: 4173 - components: - - type: Transform - pos: -16.5,34.5 - parent: 2 - - uid: 4174 - components: - - type: Transform - pos: -15.5,34.5 - parent: 2 - - uid: 4175 - components: - - type: Transform - pos: -14.5,34.5 - parent: 2 - - uid: 4176 - components: - - type: Transform - pos: -14.5,35.5 - parent: 2 - - uid: 4177 - components: - - type: Transform - pos: -14.5,36.5 - parent: 2 - - uid: 4178 - components: - - type: Transform - pos: -14.5,37.5 - parent: 2 - - uid: 4179 - components: - - type: Transform - pos: -14.5,38.5 - parent: 2 - - uid: 4180 - components: - - type: Transform - pos: -13.5,38.5 - parent: 2 - - uid: 4181 - components: - - type: Transform - pos: -12.5,38.5 - parent: 2 - - uid: 4182 - components: - - type: Transform - pos: -7.5,38.5 - parent: 2 - - uid: 4183 - components: - - type: Transform - pos: -6.5,38.5 - parent: 2 - - uid: 4184 - components: - - type: Transform - pos: -4.5,38.5 - parent: 2 - - uid: 4185 - components: - - type: Transform - pos: -3.5,38.5 - parent: 2 - - uid: 4186 - components: - - type: Transform - pos: -2.5,38.5 - parent: 2 - - uid: 4187 - components: - - type: Transform - pos: -3.5,36.5 - parent: 2 - - uid: 4188 - components: - - type: Transform - pos: -3.5,37.5 - parent: 2 - - uid: 4189 - components: - - type: Transform - pos: -2.5,39.5 - parent: 2 - - uid: 4190 - components: - - type: Transform - pos: -3.5,35.5 - parent: 2 - - uid: 4191 - components: - - type: Transform - pos: -3.5,34.5 - parent: 2 - - uid: 4192 - components: - - type: Transform - pos: -3.5,33.5 - parent: 2 - - uid: 4193 - components: - - type: Transform - pos: -3.5,32.5 - parent: 2 - - uid: 4194 - components: - - type: Transform - pos: -3.5,31.5 - parent: 2 - - uid: 4195 - components: - - type: Transform - pos: -3.5,30.5 - parent: 2 - - uid: 4196 - components: - - type: Transform - pos: -4.5,30.5 - parent: 2 - - uid: 4197 - components: - - type: Transform - pos: -5.5,30.5 - parent: 2 - - uid: 4198 - components: - - type: Transform - pos: -6.5,30.5 - parent: 2 - - uid: 4199 - components: - - type: Transform - pos: -7.5,30.5 - parent: 2 - - uid: 4200 - components: - - type: Transform - pos: -8.5,30.5 - parent: 2 - - uid: 4201 - components: - - type: Transform - pos: -9.5,30.5 - parent: 2 - - uid: 4202 - components: - - type: Transform - pos: -10.5,30.5 - parent: 2 - - uid: 4203 - components: - - type: Transform - pos: -11.5,30.5 - parent: 2 - - uid: 4204 - components: - - type: Transform - pos: -12.5,30.5 - parent: 2 - - uid: 4205 - components: - - type: Transform - pos: -12.5,29.5 - parent: 2 - - uid: 4206 - components: - - type: Transform - pos: -8.5,-12.5 - parent: 2 - - uid: 4207 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 2 - - uid: 4208 - components: - - type: Transform - pos: -8.5,-10.5 - parent: 2 - - uid: 4209 - components: - - type: Transform - pos: -8.5,-9.5 - parent: 2 - - uid: 4210 - components: - - type: Transform - pos: -8.5,-8.5 - parent: 2 - - uid: 4211 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 2 - - uid: 4212 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - uid: 4213 - components: - - type: Transform - pos: -9.5,-6.5 - parent: 2 - - uid: 4214 - components: - - type: Transform - pos: -10.5,-6.5 - parent: 2 - - uid: 4215 - components: - - type: Transform - pos: -7.5,5.5 - parent: 2 - - uid: 4216 - components: - - type: Transform - pos: -7.5,6.5 - parent: 2 - - uid: 4217 - components: - - type: Transform - pos: -8.5,6.5 - parent: 2 - - uid: 4218 - components: - - type: Transform - pos: -9.5,6.5 - parent: 2 - - uid: 4219 - components: - - type: Transform - pos: -10.5,6.5 - parent: 2 - - uid: 4220 - components: - - type: Transform - pos: -11.5,6.5 - parent: 2 - - uid: 4221 - components: - - type: Transform - pos: -12.5,6.5 - parent: 2 - - uid: 4222 - components: - - type: Transform - pos: -13.5,6.5 - parent: 2 - - uid: 4223 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 - - uid: 4224 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - uid: 4225 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - - uid: 4226 - components: - - type: Transform - pos: -14.5,9.5 - parent: 2 - - uid: 4227 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 4228 - components: - - type: Transform - pos: -35.5,0.5 - parent: 2 - - uid: 4229 - components: - - type: Transform - pos: -35.5,-0.5 - parent: 2 - - uid: 4230 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - - uid: 4231 - components: - - type: Transform - pos: -35.5,-2.5 - parent: 2 - - uid: 4232 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 2 - - uid: 4233 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - uid: 4234 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 2 - - uid: 4235 - components: - - type: Transform - pos: -32.5,-3.5 - parent: 2 - - uid: 4236 - components: - - type: Transform - pos: -32.5,-4.5 - parent: 2 - - uid: 4237 - components: - - type: Transform - pos: -32.5,-5.5 - parent: 2 - - uid: 4238 - components: - - type: Transform - pos: -32.5,-6.5 - parent: 2 - - uid: 4239 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - uid: 4240 - components: - - type: Transform - pos: -32.5,-8.5 - parent: 2 - - uid: 4241 - components: - - type: Transform - pos: -32.5,-9.5 - parent: 2 - - uid: 4242 - components: - - type: Transform - pos: -31.5,-9.5 - parent: 2 - - uid: 4243 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - uid: 4244 - components: - - type: Transform - pos: -29.5,-9.5 - parent: 2 - - uid: 4245 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - uid: 4246 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 2 - - uid: 4247 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - uid: 4248 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - - uid: 4249 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - uid: 4250 - components: - - type: Transform - pos: -28.5,-14.5 - parent: 2 - - uid: 4251 - components: - - type: Transform - pos: -28.5,-15.5 - parent: 2 - - uid: 4252 - components: - - type: Transform - pos: -28.5,-16.5 - parent: 2 - - uid: 4253 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 2 - - uid: 4254 - components: - - type: Transform - pos: -28.5,-18.5 - parent: 2 - - uid: 4255 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 - - uid: 4256 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 2 - - uid: 4257 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - - uid: 4258 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 2 - - uid: 4259 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 2 - - uid: 4260 - components: - - type: Transform - pos: -31.5,-19.5 - parent: 2 - - uid: 4261 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 2 - - uid: 4262 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 2 - - uid: 4263 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 2 - - uid: 4264 - components: - - type: Transform - pos: -32.5,-20.5 - parent: 2 - - uid: 4265 - components: - - type: Transform - pos: -33.5,-20.5 - parent: 2 - - uid: 4266 - components: - - type: Transform - pos: -34.5,-20.5 - parent: 2 - - uid: 4267 - components: - - type: Transform - pos: -35.5,-20.5 - parent: 2 - - uid: 4268 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 2 - - uid: 4269 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 2 - - uid: 4270 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - - uid: 4271 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 2 - - uid: 4272 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 2 - - uid: 4273 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 2 - - uid: 4274 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 2 - - uid: 4275 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 2 - - uid: 4276 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 4277 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 4278 - components: - - type: Transform - pos: -44.5,-18.5 - parent: 2 - - uid: 4279 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 4280 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 - - uid: 4281 - components: - - type: Transform - pos: -46.5,-17.5 - parent: 2 - - uid: 4282 - components: - - type: Transform - pos: -46.5,-16.5 - parent: 2 - - uid: 4283 - components: - - type: Transform - pos: -46.5,-15.5 - parent: 2 - - uid: 4284 - components: - - type: Transform - pos: -46.5,-14.5 - parent: 2 - - uid: 4285 - components: - - type: Transform - pos: -46.5,-13.5 - parent: 2 - - uid: 4286 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 2 - - uid: 4287 - components: - - type: Transform - pos: -46.5,-11.5 - parent: 2 - - uid: 4288 - components: - - type: Transform - pos: -46.5,-10.5 - parent: 2 - - uid: 4289 - components: - - type: Transform - pos: -46.5,-9.5 - parent: 2 - - uid: 4290 - components: - - type: Transform - pos: -46.5,-8.5 - parent: 2 - - uid: 4291 - components: - - type: Transform - pos: -47.5,-8.5 - parent: 2 - - uid: 4292 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - - uid: 4293 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 2 - - uid: 4294 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 2 - - uid: 4295 - components: - - type: Transform - pos: -51.5,-8.5 - parent: 2 - - uid: 4296 - components: - - type: Transform - pos: -52.5,-8.5 - parent: 2 - - uid: 4297 - components: - - type: Transform - pos: -52.5,-7.5 - parent: 2 - - uid: 4298 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 2 - - uid: 4299 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 2 - - uid: 4300 - components: - - type: Transform - pos: -43.5,-8.5 - parent: 2 - - uid: 4301 - components: - - type: Transform - pos: -42.5,-8.5 - parent: 2 - - uid: 4302 - components: - - type: Transform - pos: -41.5,-8.5 - parent: 2 - - uid: 4303 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 2 - - uid: 4304 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 2 - - uid: 4305 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - - uid: 4306 - components: - - type: Transform - pos: -37.5,-8.5 - parent: 2 - - uid: 4307 - components: - - type: Transform - pos: -37.5,-9.5 - parent: 2 - - uid: 4308 - components: - - type: Transform - pos: -37.5,-10.5 - parent: 2 - - uid: 4309 - components: - - type: Transform - pos: -37.5,-11.5 - parent: 2 - - uid: 4310 - components: - - type: Transform - pos: -36.5,-11.5 - parent: 2 - - uid: 4311 - components: - - type: Transform - pos: -35.5,-11.5 - parent: 2 - - uid: 4312 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 4313 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - - uid: 4314 - components: - - type: Transform - pos: -35.5,-8.5 - parent: 2 - - uid: 4315 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 4316 - components: - - type: Transform - pos: -37.5,-7.5 - parent: 2 - - uid: 4317 - components: - - type: Transform - pos: -37.5,-6.5 - parent: 2 - - uid: 4318 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - uid: 4319 - components: - - type: Transform - pos: -38.5,-5.5 - parent: 2 - - uid: 4320 - components: - - type: Transform - pos: -39.5,-5.5 - parent: 2 - - uid: 4321 - components: - - type: Transform - pos: -40.5,-5.5 - parent: 2 - - uid: 4322 - components: - - type: Transform - pos: -41.5,-5.5 - parent: 2 - - uid: 4323 - components: - - type: Transform - pos: -41.5,-4.5 - parent: 2 - - uid: 4324 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - - uid: 4325 - components: - - type: Transform - pos: -41.5,-2.5 - parent: 2 - - uid: 4326 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - - uid: 4327 - components: - - type: Transform - pos: -40.5,-1.5 - parent: 2 - - uid: 4328 - components: - - type: Transform - pos: -39.5,-1.5 - parent: 2 - - uid: 4329 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 4330 - components: - - type: Transform - pos: -27.5,-10.5 - parent: 2 - - uid: 4331 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 - - uid: 4332 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 2 - - uid: 4333 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 2 - - uid: 4334 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - - uid: 4335 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - uid: 4336 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 2 - - uid: 4337 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 4338 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 2 - - uid: 4339 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 2 - - uid: 4340 - components: - - type: Transform - pos: 25.5,-13.5 - parent: 2 - - uid: 4341 - components: - - type: Transform - pos: 25.5,-14.5 - parent: 2 - - uid: 4342 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 2 - - uid: 4343 - components: - - type: Transform - pos: 25.5,-11.5 - parent: 2 - - uid: 4344 - components: - - type: Transform - pos: 25.5,-10.5 - parent: 2 - - uid: 4345 - components: - - type: Transform - pos: 25.5,-9.5 - parent: 2 - - uid: 4346 - components: - - type: Transform - pos: 25.5,-8.5 - parent: 2 - - uid: 4347 - components: - - type: Transform - pos: 25.5,-7.5 - parent: 2 - - uid: 4348 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 2 - - uid: 4349 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 - - uid: 4350 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - - uid: 4351 - components: - - type: Transform - pos: 25.5,-3.5 - parent: 2 - - uid: 4352 - components: - - type: Transform - pos: 25.5,-2.5 - parent: 2 - - uid: 4353 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 2 - - uid: 4354 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 2 - - uid: 4355 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 2 - - uid: 4356 - components: - - type: Transform - pos: 27.5,-0.5 - parent: 2 - - uid: 4357 - components: - - type: Transform - pos: 28.5,-0.5 - parent: 2 - - uid: 4358 - components: - - type: Transform - pos: 29.5,-0.5 - parent: 2 - - uid: 4359 - components: - - type: Transform - pos: 30.5,-0.5 - parent: 2 - - uid: 4360 - components: - - type: Transform - pos: 31.5,-0.5 - parent: 2 - - uid: 4361 - components: - - type: Transform - pos: 30.5,27.5 - parent: 2 - - uid: 4362 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 2 - - uid: 4363 - components: - - type: Transform - pos: 31.5,-2.5 - parent: 2 - - uid: 4364 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 2 - - uid: 4365 - components: - - type: Transform - pos: 31.5,-4.5 - parent: 2 - - uid: 4366 - components: - - type: Transform - pos: 31.5,-5.5 - parent: 2 - - uid: 4367 - components: - - type: Transform - pos: 31.5,-6.5 - parent: 2 - - uid: 4368 - components: - - type: Transform - pos: 31.5,-7.5 - parent: 2 - - uid: 4369 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - uid: 4370 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 2 - - uid: 4371 - components: - - type: Transform - pos: 22.5,-20.5 - parent: 2 - - uid: 4372 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 4373 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 2 - - uid: 4374 - components: - - type: Transform - pos: 19.5,-21.5 - parent: 2 - - uid: 4375 - components: - - type: Transform - pos: 31.5,27.5 - parent: 2 - - uid: 4376 - components: - - type: Transform - pos: 31.5,26.5 - parent: 2 - - uid: 4377 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - uid: 4378 - components: - - type: Transform - pos: 31.5,24.5 - parent: 2 - - uid: 4379 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - - uid: 4380 - components: - - type: Transform - pos: 31.5,22.5 - parent: 2 - - uid: 4381 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - uid: 4382 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 4383 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 4384 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 4385 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 4386 - components: - - type: Transform - pos: 33.5,18.5 - parent: 2 - - uid: 4387 - components: - - type: Transform - pos: 34.5,18.5 - parent: 2 - - uid: 4388 - components: - - type: Transform - pos: 35.5,18.5 - parent: 2 - - uid: 4389 - components: - - type: Transform - pos: -39.5,50.5 - parent: 2 - - uid: 4390 - components: - - type: Transform - pos: 38.5,9.5 - parent: 2 - - uid: 4391 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - uid: 4392 - components: - - type: Transform - pos: 23.5,-5.5 - parent: 2 - - uid: 4393 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 4395 - components: - - type: Transform - pos: -15.5,-37.5 - parent: 2 - - uid: 4396 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - uid: 4397 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 2 - - uid: 4398 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 2 - - uid: 4399 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 2 - - uid: 4400 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 - - uid: 4401 - components: - - type: Transform - pos: 3.5,-23.5 - parent: 2 - - uid: 4402 - components: - - type: Transform - pos: 4.5,-23.5 - parent: 2 - - uid: 4403 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 2 - - uid: 4404 - components: - - type: Transform - pos: 26.5,-16.5 - parent: 2 - - uid: 4405 - components: - - type: Transform - pos: 27.5,-16.5 - parent: 2 - - uid: 4406 - components: - - type: Transform - pos: 28.5,-16.5 - parent: 2 - - uid: 4407 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 4408 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 2 - - uid: 4409 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - - uid: 4410 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 2 - - uid: 4411 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 2 - - uid: 4412 - components: - - type: Transform - pos: 30.5,-20.5 - parent: 2 - - uid: 4413 - components: - - type: Transform - pos: 31.5,-20.5 - parent: 2 - - uid: 4414 - components: - - type: Transform - pos: 32.5,-20.5 - parent: 2 - - uid: 4415 - components: - - type: Transform - pos: 33.5,-20.5 - parent: 2 - - uid: 4416 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 2 - - uid: 4417 - components: - - type: Transform - pos: 35.5,-20.5 - parent: 2 - - uid: 4418 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 2 - - uid: 4419 - components: - - type: Transform - pos: 36.5,-19.5 - parent: 2 - - uid: 4420 - components: - - type: Transform - pos: 36.5,-17.5 - parent: 2 - - uid: 4421 - components: - - type: Transform - pos: 36.5,-18.5 - parent: 2 - - uid: 4422 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 2 - - uid: 4423 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 2 - - uid: 4424 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 2 - - uid: 4425 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 2 - - uid: 4426 - components: - - type: Transform - pos: -8.5,-25.5 - parent: 2 - - uid: 4427 - components: - - type: Transform - pos: -8.5,-33.5 - parent: 2 - - uid: 4429 - components: - - type: Transform - pos: -15.5,-38.5 - parent: 2 - - uid: 4431 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 2 - - uid: 4435 - components: - - type: Transform - pos: -7.5,-33.5 - parent: 2 - - uid: 4436 - components: - - type: Transform - pos: -6.5,-33.5 - parent: 2 - - uid: 4437 - components: - - type: Transform - pos: -6.5,-34.5 - parent: 2 - - uid: 4438 - components: - - type: Transform - pos: -6.5,-35.5 - parent: 2 - - uid: 4439 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 2 - - uid: 4440 - components: - - type: Transform - pos: -6.5,-37.5 - parent: 2 - - uid: 4441 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 2 - - uid: 4442 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 2 - - uid: 4443 - components: - - type: Transform - pos: -7.5,-28.5 - parent: 2 - - uid: 4444 - components: - - type: Transform - pos: -7.5,-29.5 - parent: 2 - - uid: 4445 - components: - - type: Transform - pos: -7.5,-30.5 - parent: 2 - - uid: 4446 - components: - - type: Transform - pos: -7.5,-31.5 - parent: 2 - - uid: 4447 - components: - - type: Transform - pos: -7.5,-32.5 - parent: 2 - - uid: 4448 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 2 - - uid: 4449 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 2 - - uid: 4450 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 - - uid: 4451 - components: - - type: Transform - pos: 2.5,1.5 - parent: 2 - - uid: 4452 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - - uid: 4453 - components: - - type: Transform - pos: 4.5,1.5 - parent: 2 - - uid: 4454 - components: - - type: Transform - pos: 5.5,1.5 - parent: 2 - - uid: 4455 - components: - - type: Transform - pos: 5.5,2.5 - parent: 2 - - uid: 4456 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - uid: 4457 - components: - - type: Transform - pos: 0.5,3.5 - parent: 2 - - uid: 4458 - components: - - type: Transform - pos: 0.5,4.5 - parent: 2 - - uid: 4459 - components: - - type: Transform - pos: 0.5,5.5 - parent: 2 - - uid: 4460 - components: - - type: Transform - pos: 0.5,6.5 - parent: 2 - - uid: 4461 - components: - - type: Transform - pos: 0.5,7.5 - parent: 2 - - uid: 4462 - components: - - type: Transform - pos: 1.5,7.5 - parent: 2 - - uid: 4463 - components: - - type: Transform - pos: 2.5,7.5 - parent: 2 - - uid: 4464 - components: - - type: Transform - pos: 2.5,8.5 - parent: 2 - - uid: 4465 - components: - - type: Transform - pos: 12.5,16.5 - parent: 2 - - uid: 4466 - components: - - type: Transform - pos: 11.5,16.5 - parent: 2 - - uid: 4467 - components: - - type: Transform - pos: 11.5,15.5 - parent: 2 - - uid: 4468 - components: - - type: Transform - pos: 11.5,14.5 - parent: 2 - - uid: 4469 - components: - - type: Transform - pos: 11.5,13.5 - parent: 2 - - uid: 4470 - components: - - type: Transform - pos: 11.5,12.5 - parent: 2 - - uid: 4471 - components: - - type: Transform - pos: 11.5,11.5 - parent: 2 - - uid: 4472 - components: - - type: Transform - pos: 11.5,10.5 - parent: 2 - - uid: 4473 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 4474 - components: - - type: Transform - pos: 11.5,8.5 - parent: 2 - - uid: 4475 - components: - - type: Transform - pos: 12.5,8.5 - parent: 2 - - uid: 4476 - components: - - type: Transform - pos: 13.5,8.5 - parent: 2 - - uid: 4477 - components: - - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 4478 - components: - - type: Transform - pos: -9.5,-13.5 - parent: 2 - - uid: 4479 - components: - - type: Transform - pos: -10.5,-13.5 - parent: 2 - - uid: 4480 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 2 - - uid: 4481 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 4482 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 4483 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 4484 - components: - - type: Transform - pos: -15.5,-13.5 - parent: 2 - - uid: 4485 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 2 - - uid: 4486 - components: - - type: Transform - pos: -16.5,-13.5 - parent: 2 - - uid: 4487 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 2 - - uid: 4488 - components: - - type: Transform - pos: -16.5,-11.5 - parent: 2 - - uid: 4489 - components: - - type: Transform - pos: -16.5,-10.5 - parent: 2 - - uid: 4490 - components: - - type: Transform - pos: -16.5,-9.5 - parent: 2 - - uid: 4491 - components: - - type: Transform - pos: -16.5,-8.5 - parent: 2 - - uid: 4492 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 2 - - uid: 4493 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 2 - - uid: 4494 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 2 - - uid: 4495 - components: - - type: Transform - pos: -16.5,-4.5 - parent: 2 - - uid: 4496 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 2 - - uid: 4497 - components: - - type: Transform - pos: -16.5,-2.5 - parent: 2 - - uid: 4498 - components: - - type: Transform - pos: -15.5,-2.5 - parent: 2 - - uid: 4499 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 2 - - uid: 4500 - components: - - type: Transform - pos: -35.5,36.5 - parent: 2 - - uid: 4501 - components: - - type: Transform - pos: -34.5,36.5 - parent: 2 - - uid: 4502 - components: - - type: Transform - pos: -36.5,36.5 - parent: 2 - - uid: 4503 - components: - - type: Transform - pos: -36.5,38.5 - parent: 2 - - uid: 4504 - components: - - type: Transform - pos: -36.5,0.5 - parent: 2 - - uid: 4505 - components: - - type: Transform - pos: -36.5,1.5 - parent: 2 - - uid: 4506 - components: - - type: Transform - pos: -36.5,2.5 - parent: 2 - - uid: 4507 - components: - - type: Transform - pos: -36.5,3.5 - parent: 2 - - uid: 4508 - components: - - type: Transform - pos: -36.5,4.5 - parent: 2 - - uid: 4509 - components: - - type: Transform - pos: -36.5,5.5 - parent: 2 - - uid: 4510 - components: - - type: Transform - pos: -36.5,6.5 - parent: 2 - - uid: 4511 - components: - - type: Transform - pos: -37.5,6.5 - parent: 2 - - uid: 4512 - components: - - type: Transform - pos: -38.5,6.5 - parent: 2 - - uid: 4513 - components: - - type: Transform - pos: -39.5,7.5 - parent: 2 - - uid: 4514 - components: - - type: Transform - pos: -39.5,8.5 - parent: 2 - - uid: 4515 - components: - - type: Transform - pos: -39.5,6.5 - parent: 2 - - uid: 4516 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 4517 - components: - - type: Transform - pos: -53.5,-8.5 - parent: 2 - - uid: 4518 - components: - - type: Transform - pos: -54.5,-8.5 - parent: 2 - - uid: 4519 - components: - - type: Transform - pos: -55.5,-8.5 - parent: 2 - - uid: 4520 - components: - - type: Transform - pos: -56.5,-8.5 - parent: 2 - - uid: 4521 - components: - - type: Transform - pos: -56.5,-7.5 - parent: 2 - - uid: 4522 - components: - - type: Transform - pos: -57.5,-7.5 - parent: 2 - - uid: 4523 - components: - - type: Transform - pos: -58.5,-7.5 - parent: 2 - - uid: 4524 - components: - - type: Transform - pos: -59.5,-7.5 - parent: 2 - - uid: 4525 - components: - - type: Transform - pos: -60.5,-7.5 - parent: 2 - - uid: 4526 - components: - - type: Transform - pos: -61.5,-7.5 - parent: 2 - - uid: 4527 - components: - - type: Transform - pos: -62.5,-7.5 - parent: 2 - - uid: 4528 - components: - - type: Transform - pos: -63.5,-7.5 - parent: 2 - - uid: 4529 - components: - - type: Transform - pos: -64.5,-7.5 - parent: 2 - - uid: 4530 - components: - - type: Transform - pos: -64.5,-7.5 - parent: 2 - - uid: 4531 - components: - - type: Transform - pos: -65.5,-7.5 - parent: 2 - - uid: 4532 - components: - - type: Transform - pos: -65.5,-8.5 - parent: 2 - - uid: 4533 - components: - - type: Transform - pos: -65.5,-9.5 - parent: 2 - - uid: 4534 - components: - - type: Transform - pos: -65.5,-10.5 - parent: 2 - - uid: 4535 - components: - - type: Transform - pos: -64.5,-10.5 - parent: 2 - - uid: 4536 - components: - - type: Transform - pos: -63.5,-10.5 - parent: 2 - - uid: 4537 - components: - - type: Transform - pos: -63.5,-11.5 - parent: 2 - - uid: 4538 - components: - - type: Transform - pos: -63.5,-12.5 - parent: 2 - - uid: 4539 - components: - - type: Transform - pos: -63.5,-13.5 - parent: 2 - - uid: 4540 - components: - - type: Transform - pos: -63.5,-14.5 - parent: 2 - - uid: 4541 - components: - - type: Transform - pos: -63.5,-15.5 - parent: 2 - - uid: 4542 - components: - - type: Transform - pos: -63.5,-16.5 - parent: 2 - - uid: 4543 - components: - - type: Transform - pos: -63.5,-17.5 - parent: 2 - - uid: 4544 - components: - - type: Transform - pos: -64.5,-17.5 - parent: 2 - - uid: 4545 - components: - - type: Transform - pos: -65.5,-17.5 - parent: 2 - - uid: 4546 - components: - - type: Transform - pos: -65.5,-16.5 - parent: 2 - - uid: 4547 - components: - - type: Transform - pos: -65.5,-15.5 - parent: 2 - - uid: 4548 - components: - - type: Transform - pos: -65.5,-14.5 - parent: 2 - - uid: 4549 - components: - - type: Transform - pos: -65.5,-13.5 - parent: 2 - - uid: 4550 - components: - - type: Transform - pos: -65.5,-12.5 - parent: 2 - - uid: 4551 - components: - - type: Transform - pos: -65.5,-11.5 - parent: 2 - - uid: 4552 - components: - - type: Transform - pos: -66.5,-7.5 - parent: 2 - - uid: 4553 - components: - - type: Transform - pos: -66.5,-10.5 - parent: 2 - - uid: 4554 - components: - - type: Transform - pos: -67.5,-10.5 - parent: 2 - - uid: 4555 - components: - - type: Transform - pos: -67.5,-11.5 - parent: 2 - - uid: 4556 - components: - - type: Transform - pos: -67.5,-12.5 - parent: 2 - - uid: 4557 - components: - - type: Transform - pos: -67.5,-13.5 - parent: 2 - - uid: 4558 - components: - - type: Transform - pos: -67.5,-14.5 - parent: 2 - - uid: 4559 - components: - - type: Transform - pos: -66.5,-14.5 - parent: 2 - - uid: 4560 - components: - - type: Transform - pos: -66.5,-6.5 - parent: 2 - - uid: 4561 - components: - - type: Transform - pos: -66.5,-5.5 - parent: 2 - - uid: 4562 - components: - - type: Transform - pos: -66.5,-4.5 - parent: 2 - - uid: 4563 - components: - - type: Transform - pos: -66.5,-3.5 - parent: 2 - - uid: 4564 - components: - - type: Transform - pos: -66.5,-2.5 - parent: 2 - - uid: 4565 - components: - - type: Transform - pos: -66.5,-1.5 - parent: 2 - - uid: 4566 - components: - - type: Transform - pos: -66.5,-0.5 - parent: 2 - - uid: 4567 - components: - - type: Transform - pos: -66.5,0.5 - parent: 2 - - uid: 4568 - components: - - type: Transform - pos: -66.5,1.5 - parent: 2 - - uid: 4569 - components: - - type: Transform - pos: -61.5,-23.5 - parent: 2 - - uid: 4570 - components: - - type: Transform - pos: -65.5,1.5 - parent: 2 - - uid: 4571 - components: - - type: Transform - pos: -65.5,2.5 - parent: 2 - - uid: 4572 - components: - - type: Transform - pos: -65.5,3.5 - parent: 2 - - uid: 4573 - components: - - type: Transform - pos: -65.5,4.5 - parent: 2 - - uid: 4574 - components: - - type: Transform - pos: -65.5,5.5 - parent: 2 - - uid: 4575 - components: - - type: Transform - pos: -65.5,6.5 - parent: 2 - - uid: 4576 - components: - - type: Transform - pos: -65.5,-1.5 - parent: 2 - - uid: 4577 - components: - - type: Transform - pos: -65.5,-4.5 - parent: 2 - - uid: 4578 - components: - - type: Transform - pos: -64.5,-5.5 - parent: 2 - - uid: 4579 - components: - - type: Transform - pos: -64.5,-6.5 - parent: 2 - - uid: 4580 - components: - - type: Transform - pos: -55.5,4.5 - parent: 2 - - uid: 4581 - components: - - type: Transform - pos: -63.5,-4.5 - parent: 2 - - uid: 4582 - components: - - type: Transform - pos: -63.5,-3.5 - parent: 2 - - uid: 4583 - components: - - type: Transform - pos: -63.5,-2.5 - parent: 2 - - uid: 4584 - components: - - type: Transform - pos: -63.5,-1.5 - parent: 2 - - uid: 4585 - components: - - type: Transform - pos: -63.5,-0.5 - parent: 2 - - uid: 4586 - components: - - type: Transform - pos: -63.5,0.5 - parent: 2 - - uid: 4587 - components: - - type: Transform - pos: -63.5,1.5 - parent: 2 - - uid: 4588 - components: - - type: Transform - pos: -63.5,2.5 - parent: 2 - - uid: 4589 - components: - - type: Transform - pos: -63.5,3.5 - parent: 2 - - uid: 4590 - components: - - type: Transform - pos: -63.5,4.5 - parent: 2 - - uid: 4591 - components: - - type: Transform - pos: -63.5,5.5 - parent: 2 - - uid: 4592 - components: - - type: Transform - pos: -63.5,6.5 - parent: 2 - - uid: 4593 - components: - - type: Transform - pos: -64.5,6.5 - parent: 2 - - uid: 4594 - components: - - type: Transform - pos: -64.5,2.5 - parent: 2 - - uid: 4595 - components: - - type: Transform - pos: -62.5,5.5 - parent: 2 - - uid: 4596 - components: - - type: Transform - pos: -62.5,6.5 - parent: 2 - - uid: 4597 - components: - - type: Transform - pos: -61.5,5.5 - parent: 2 - - uid: 4598 - components: - - type: Transform - pos: -61.5,6.5 - parent: 2 - - uid: 4599 - components: - - type: Transform - pos: -60.5,5.5 - parent: 2 - - uid: 4600 - components: - - type: Transform - pos: -60.5,6.5 - parent: 2 - - uid: 4601 - components: - - type: Transform - pos: -59.5,5.5 - parent: 2 - - uid: 4602 - components: - - type: Transform - pos: -59.5,6.5 - parent: 2 - - uid: 4603 - components: - - type: Transform - pos: -58.5,5.5 - parent: 2 - - uid: 4604 - components: - - type: Transform - pos: -58.5,6.5 - parent: 2 - - uid: 4605 - components: - - type: Transform - pos: -57.5,5.5 - parent: 2 - - uid: 4606 - components: - - type: Transform - pos: -57.5,6.5 - parent: 2 - - uid: 4607 - components: - - type: Transform - pos: -56.5,5.5 - parent: 2 - - uid: 4608 - components: - - type: Transform - pos: -56.5,6.5 - parent: 2 - - uid: 4609 - components: - - type: Transform - pos: -55.5,5.5 - parent: 2 - - uid: 4610 - components: - - type: Transform - pos: -55.5,6.5 - parent: 2 - - uid: 4611 - components: - - type: Transform - pos: -54.5,5.5 - parent: 2 - - uid: 4612 - components: - - type: Transform - pos: -54.5,6.5 - parent: 2 - - uid: 4613 - components: - - type: Transform - pos: -53.5,5.5 - parent: 2 - - uid: 4614 - components: - - type: Transform - pos: -53.5,6.5 - parent: 2 - - uid: 4615 - components: - - type: Transform - pos: -52.5,7.5 - parent: 2 - - uid: 4616 - components: - - type: Transform - pos: -55.5,3.5 - parent: 2 - - uid: 4617 - components: - - type: Transform - pos: -55.5,2.5 - parent: 2 - - uid: 4618 - components: - - type: Transform - pos: -55.5,1.5 - parent: 2 - - uid: 4619 - components: - - type: Transform - pos: -55.5,0.5 - parent: 2 - - uid: 4620 - components: - - type: Transform - pos: -55.5,-0.5 - parent: 2 - - uid: 4621 - components: - - type: Transform - pos: -55.5,-1.5 - parent: 2 - - uid: 4622 - components: - - type: Transform - pos: -55.5,-2.5 - parent: 2 - - uid: 4623 - components: - - type: Transform - pos: -55.5,-3.5 - parent: 2 - - uid: 4624 - components: - - type: Transform - pos: -55.5,-4.5 - parent: 2 - - uid: 4625 - components: - - type: Transform - pos: -55.5,-5.5 - parent: 2 - - uid: 4626 - components: - - type: Transform - pos: -55.5,-6.5 - parent: 2 - - uid: 4627 - components: - - type: Transform - pos: -55.5,-7.5 - parent: 2 - - uid: 4628 - components: - - type: Transform - pos: -55.5,-9.5 - parent: 2 - - uid: 4629 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - - uid: 4630 - components: - - type: Transform - pos: -55.5,-11.5 - parent: 2 - - uid: 4631 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 2 - - uid: 4632 - components: - - type: Transform - pos: -55.5,-13.5 - parent: 2 - - uid: 4633 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - uid: 4634 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 2 - - uid: 4635 - components: - - type: Transform - pos: -55.5,-16.5 - parent: 2 - - uid: 4636 - components: - - type: Transform - pos: -55.5,-17.5 - parent: 2 - - uid: 4637 - components: - - type: Transform - pos: -55.5,-18.5 - parent: 2 - - uid: 4638 - components: - - type: Transform - pos: -55.5,-19.5 - parent: 2 - - uid: 4639 - components: - - type: Transform - pos: -55.5,-20.5 - parent: 2 - - uid: 4640 - components: - - type: Transform - pos: -55.5,-21.5 - parent: 2 - - uid: 4641 - components: - - type: Transform - pos: -56.5,-21.5 - parent: 2 - - uid: 4642 - components: - - type: Transform - pos: -57.5,-21.5 - parent: 2 - - uid: 4643 - components: - - type: Transform - pos: -58.5,-21.5 - parent: 2 - - uid: 4644 - components: - - type: Transform - pos: -59.5,-21.5 - parent: 2 - - uid: 4645 - components: - - type: Transform - pos: -59.5,-20.5 - parent: 2 - - uid: 4646 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 2 - - uid: 4647 - components: - - type: Transform - pos: -61.5,-20.5 - parent: 2 - - uid: 4648 - components: - - type: Transform - pos: -62.5,-20.5 - parent: 2 - - uid: 4649 - components: - - type: Transform - pos: -63.5,-20.5 - parent: 2 - - uid: 4650 - components: - - type: Transform - pos: -64.5,-19.5 - parent: 2 - - uid: 4651 - components: - - type: Transform - pos: -64.5,-18.5 - parent: 2 - - uid: 4652 - components: - - type: Transform - pos: -62.5,-18.5 - parent: 2 - - uid: 4653 - components: - - type: Transform - pos: -62.5,-19.5 - parent: 2 - - uid: 4654 - components: - - type: Transform - pos: -62.5,-17.5 - parent: 2 - - uid: 4655 - components: - - type: Transform - pos: -63.5,-21.5 - parent: 2 - - uid: 4656 - components: - - type: Transform - pos: -63.5,-22.5 - parent: 2 - - uid: 4657 - components: - - type: Transform - pos: -62.5,-22.5 - parent: 2 - - uid: 4658 - components: - - type: Transform - pos: -61.5,-22.5 - parent: 2 - - uid: 4659 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 4660 - components: - - type: Transform - pos: -60.5,-23.5 - parent: 2 - - uid: 4661 - components: - - type: Transform - pos: -59.5,-23.5 - parent: 2 - - uid: 4662 - components: - - type: Transform - pos: -58.5,-23.5 - parent: 2 - - uid: 4663 - components: - - type: Transform - pos: -57.5,-23.5 - parent: 2 - - uid: 4664 - components: - - type: Transform - pos: -56.5,-23.5 - parent: 2 - - uid: 4665 - components: - - type: Transform - pos: -55.5,-23.5 - parent: 2 - - uid: 4666 - components: - - type: Transform - pos: -54.5,-23.5 - parent: 2 - - uid: 4667 - components: - - type: Transform - pos: -53.5,-23.5 - parent: 2 - - uid: 4668 - components: - - type: Transform - pos: -52.5,-20.5 - parent: 2 - - uid: 4669 - components: - - type: Transform - pos: -59.5,-22.5 - parent: 2 - - uid: 4670 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 2 - - uid: 4671 - components: - - type: Transform - pos: -53.5,-22.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - pos: -53.5,-21.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: -53.5,-20.5 - parent: 2 - - uid: 4674 - components: - - type: Transform - pos: -54.5,-21.5 - parent: 2 - - uid: 4675 - components: - - type: Transform - pos: -51.5,-20.5 - parent: 2 - - uid: 4676 - components: - - type: Transform - pos: -50.5,-20.5 - parent: 2 - - uid: 4677 - components: - - type: Transform - pos: -50.5,-21.5 - parent: 2 - - uid: 4678 - components: - - type: Transform - pos: -50.5,-22.5 - parent: 2 - - uid: 4679 - components: - - type: Transform - pos: -51.5,-22.5 - parent: 2 - - uid: 4680 - components: - - type: Transform - pos: -52.5,-22.5 - parent: 2 - - uid: 4681 - components: - - type: Transform - pos: -50.5,-23.5 - parent: 2 - - uid: 4682 - components: - - type: Transform - pos: -49.5,-23.5 - parent: 2 - - uid: 4683 - components: - - type: Transform - pos: -48.5,-23.5 - parent: 2 - - uid: 4684 - components: - - type: Transform - pos: -47.5,-23.5 - parent: 2 - - uid: 4685 - components: - - type: Transform - pos: -46.5,-23.5 - parent: 2 - - uid: 4686 - components: - - type: Transform - pos: -45.5,-23.5 - parent: 2 - - uid: 4687 - components: - - type: Transform - pos: -44.5,-23.5 - parent: 2 - - uid: 4688 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: -46.5,-21.5 - parent: 2 - - uid: 4690 - components: - - type: Transform - pos: -47.5,-21.5 - parent: 2 - - uid: 4691 - components: - - type: Transform - pos: -48.5,-21.5 - parent: 2 - - uid: 4692 - components: - - type: Transform - pos: -49.5,-21.5 - parent: 2 - - uid: 4693 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 2 - - uid: 4694 - components: - - type: Transform - pos: -7.5,37.5 - parent: 2 - - uid: 4695 - components: - - type: Transform - pos: -15.5,-80.5 - parent: 2 - - uid: 4696 - components: - - type: Transform - pos: -16.5,-80.5 - parent: 2 - - uid: 4697 - components: - - type: Transform - pos: -16.5,-79.5 - parent: 2 - - uid: 4698 - components: - - type: Transform - pos: -16.5,-78.5 - parent: 2 - - uid: 4699 - components: - - type: Transform - pos: -16.5,-77.5 - parent: 2 - - uid: 4700 - components: - - type: Transform - pos: -16.5,-76.5 - parent: 2 - - uid: 4701 - components: - - type: Transform - pos: -16.5,-75.5 - parent: 2 - - uid: 4702 - components: - - type: Transform - pos: -16.5,-74.5 - parent: 2 - - uid: 4703 - components: - - type: Transform - pos: -16.5,-73.5 - parent: 2 - - uid: 4704 - components: - - type: Transform - pos: -16.5,-72.5 - parent: 2 - - uid: 4705 - components: - - type: Transform - pos: -17.5,-72.5 - parent: 2 - - uid: 4706 - components: - - type: Transform - pos: -18.5,-72.5 - parent: 2 - - uid: 4707 - components: - - type: Transform - pos: -11.5,-75.5 - parent: 2 - - uid: 4708 - components: - - type: Transform - pos: -14.5,-80.5 - parent: 2 - - uid: 4709 - components: - - type: Transform - pos: -15.5,-76.5 - parent: 2 - - uid: 4710 - components: - - type: Transform - pos: -14.5,-76.5 - parent: 2 - - uid: 4711 - components: - - type: Transform - pos: -13.5,-76.5 - parent: 2 - - uid: 4712 - components: - - type: Transform - pos: -12.5,-76.5 - parent: 2 - - uid: 4713 - components: - - type: Transform - pos: -11.5,-76.5 - parent: 2 - - uid: 4714 - components: - - type: Transform - pos: -11.5,-74.5 - parent: 2 - - uid: 4715 - components: - - type: Transform - pos: -10.5,-74.5 - parent: 2 - - uid: 4716 - components: - - type: Transform - pos: -9.5,-74.5 - parent: 2 - - uid: 4717 - components: - - type: Transform - pos: -8.5,-74.5 - parent: 2 - - uid: 4718 - components: - - type: Transform - pos: -7.5,-74.5 - parent: 2 - - uid: 4719 - components: - - type: Transform - pos: -6.5,-74.5 - parent: 2 - - uid: 4720 - components: - - type: Transform - pos: -5.5,-74.5 - parent: 2 - - uid: 4721 - components: - - type: Transform - pos: -4.5,-74.5 - parent: 2 - - uid: 4722 - components: - - type: Transform - pos: -4.5,-75.5 - parent: 2 - - uid: 4723 - components: - - type: Transform - pos: -4.5,-76.5 - parent: 2 - - uid: 4724 - components: - - type: Transform - pos: -3.5,-76.5 - parent: 2 - - uid: 4725 - components: - - type: Transform - pos: -2.5,-76.5 - parent: 2 - - uid: 4726 - components: - - type: Transform - pos: -18.5,-76.5 - parent: 2 - - uid: 4727 - components: - - type: Transform - pos: -19.5,-76.5 - parent: 2 - - uid: 4728 - components: - - type: Transform - pos: -20.5,-76.5 - parent: 2 - - uid: 4729 - components: - - type: Transform - pos: -21.5,-76.5 - parent: 2 - - uid: 4730 - components: - - type: Transform - pos: -22.5,-76.5 - parent: 2 - - uid: 4731 - components: - - type: Transform - pos: -23.5,-76.5 - parent: 2 - - uid: 4732 - components: - - type: Transform - pos: -24.5,-76.5 - parent: 2 - - uid: 4733 - components: - - type: Transform - pos: -25.5,-76.5 - parent: 2 - - uid: 4734 - components: - - type: Transform - pos: -26.5,-76.5 - parent: 2 - - uid: 4735 - components: - - type: Transform - pos: -27.5,-76.5 - parent: 2 - - uid: 4736 - components: - - type: Transform - pos: -28.5,-76.5 - parent: 2 - - uid: 4737 - components: - - type: Transform - pos: -29.5,-76.5 - parent: 2 - - uid: 4738 - components: - - type: Transform - pos: -29.5,-77.5 - parent: 2 - - uid: 4739 - components: - - type: Transform - pos: -29.5,-78.5 - parent: 2 - - uid: 4740 - components: - - type: Transform - pos: -29.5,-79.5 - parent: 2 - - uid: 4741 - components: - - type: Transform - pos: -29.5,-80.5 - parent: 2 - - uid: 4742 - components: - - type: Transform - pos: 22.5,19.5 - parent: 2 - - uid: 4743 - components: - - type: Transform - pos: 22.5,20.5 - parent: 2 - - uid: 4744 - components: - - type: Transform - pos: 22.5,21.5 - parent: 2 - - uid: 4745 - components: - - type: Transform - pos: -19.5,28.5 - parent: 2 - - uid: 4746 - components: - - type: Transform - pos: -19.5,27.5 - parent: 2 - - uid: 4747 - components: - - type: Transform - pos: -19.5,26.5 - parent: 2 - - uid: 4748 - components: - - type: Transform - pos: -18.5,26.5 - parent: 2 - - uid: 4749 - components: - - type: Transform - pos: -17.5,26.5 - parent: 2 - - uid: 4750 - components: - - type: Transform - pos: -16.5,26.5 - parent: 2 - - uid: 4751 - components: - - type: Transform - pos: -15.5,26.5 - parent: 2 - - uid: 4752 - components: - - type: Transform - pos: -14.5,26.5 - parent: 2 - - uid: 4753 - components: - - type: Transform - pos: -21.5,29.5 - parent: 2 - - uid: 4754 - components: - - type: Transform - pos: -21.5,33.5 - parent: 2 - - uid: 4755 - components: - - type: Transform - pos: -22.5,33.5 - parent: 2 - - uid: 4756 - components: - - type: Transform - pos: -22.5,35.5 - parent: 2 - - uid: 4757 - components: - - type: Transform - pos: -22.5,36.5 - parent: 2 - - uid: 4758 - components: - - type: Transform - pos: -22.5,37.5 - parent: 2 - - uid: 4759 - components: - - type: Transform - pos: -22.5,38.5 - parent: 2 - - uid: 4760 - components: - - type: Transform - pos: -22.5,39.5 - parent: 2 - - uid: 4761 - components: - - type: Transform - pos: -22.5,40.5 - parent: 2 - - uid: 4762 - components: - - type: Transform - pos: -22.5,41.5 - parent: 2 - - uid: 4763 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - - uid: 4764 - components: - - type: Transform - pos: -20.5,41.5 - parent: 2 - - uid: 4765 - components: - - type: Transform - pos: -19.5,41.5 - parent: 2 - - uid: 4766 - components: - - type: Transform - pos: -18.5,41.5 - parent: 2 - - uid: 4767 - components: - - type: Transform - pos: -2.5,19.5 - parent: 2 - - uid: 4768 - components: - - type: Transform - pos: -3.5,29.5 - parent: 2 - - uid: 4769 - components: - - type: Transform - pos: -3.5,28.5 - parent: 2 - - uid: 4770 - components: - - type: Transform - pos: -3.5,27.5 - parent: 2 - - uid: 4771 - components: - - type: Transform - pos: -3.5,26.5 - parent: 2 - - uid: 4772 - components: - - type: Transform - pos: -3.5,25.5 - parent: 2 - - uid: 4773 - components: - - type: Transform - pos: -3.5,24.5 - parent: 2 - - uid: 4774 - components: - - type: Transform - pos: -3.5,23.5 - parent: 2 - - uid: 4775 - components: - - type: Transform - pos: -3.5,22.5 - parent: 2 - - uid: 4776 - components: - - type: Transform - pos: -3.5,21.5 - parent: 2 - - uid: 4777 - components: - - type: Transform - pos: -3.5,20.5 - parent: 2 - - uid: 4778 - components: - - type: Transform - pos: -3.5,19.5 - parent: 2 - - uid: 4779 - components: - - type: Transform - pos: -1.5,19.5 - parent: 2 - - uid: 4780 - components: - - type: Transform - pos: -0.5,19.5 - parent: 2 - - uid: 4781 - components: - - type: Transform - pos: -0.5,20.5 - parent: 2 - - uid: 4782 - components: - - type: Transform - pos: -0.5,21.5 - parent: 2 - - uid: 4783 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 2 - - uid: 4784 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 2 - - uid: 4785 - components: - - type: Transform - pos: -25.5,14.5 - parent: 2 - - uid: 4786 - components: - - type: Transform - pos: -25.5,13.5 - parent: 2 - - uid: 4787 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - uid: 4788 - components: - - type: Transform - pos: -25.5,11.5 - parent: 2 - - uid: 4789 - components: - - type: Transform - pos: -25.5,10.5 - parent: 2 - - uid: 4790 - components: - - type: Transform - pos: -26.5,10.5 - parent: 2 - - uid: 4791 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 2 - - uid: 4792 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - - uid: 4793 - components: - - type: Transform - pos: -63.5,-9.5 - parent: 2 - - uid: 4794 - components: - - type: Transform - pos: -63.5,-8.5 - parent: 2 - - uid: 4795 - components: - - type: Transform - pos: 2.5,-72.5 - parent: 2 - - uid: 4796 - components: - - type: Transform - pos: -36.5,-82.5 - parent: 2 - - uid: 4797 - components: - - type: Transform - pos: -36.5,-71.5 - parent: 2 - - uid: 4798 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 2 - - uid: 4799 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - - uid: 4800 - components: - - type: Transform - pos: 13.5,19.5 - parent: 2 - - uid: 4801 - components: - - type: Transform - pos: -9.5,39.5 - parent: 2 - - uid: 4802 - components: - - type: Transform - pos: -7.5,-87.5 - parent: 2 - - uid: 4803 - components: - - type: Transform - pos: -67.5,-9.5 - parent: 2 - - uid: 4804 - components: - - type: Transform - pos: -33.5,-8.5 - parent: 2 - - uid: 4805 - components: - - type: Transform - pos: -67.5,-7.5 - parent: 2 - - uid: 4806 - components: - - type: Transform - pos: -67.5,-8.5 - parent: 2 - - uid: 4807 - components: - - type: Transform - pos: -5.5,38.5 - parent: 2 - - uid: 4808 - components: - - type: Transform - pos: -60.5,-3.5 - parent: 2 - - uid: 4809 - components: - - type: Transform - pos: -61.5,-3.5 - parent: 2 - - uid: 4810 - components: - - type: Transform - pos: -61.5,-4.5 - parent: 2 - - uid: 4811 - components: - - type: Transform - pos: -62.5,-4.5 - parent: 2 - - uid: 4812 - components: - - type: Transform - pos: -7.5,39.5 - parent: 2 - - uid: 4813 - components: - - type: Transform - pos: -63.5,-5.5 - parent: 2 - - uid: 4814 - components: - - type: Transform - pos: -16.5,-71.5 - parent: 2 - - uid: 4815 - components: - - type: Transform - pos: -16.5,-70.5 - parent: 2 - - uid: 4816 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 2 - - uid: 4817 - components: - - type: Transform - pos: -16.5,-68.5 - parent: 2 - - uid: 4818 - components: - - type: Transform - pos: -16.5,-67.5 - parent: 2 - - uid: 4819 - components: - - type: Transform - pos: -16.5,-66.5 - parent: 2 - - uid: 4820 - components: - - type: Transform - pos: -16.5,-65.5 - parent: 2 - - uid: 4821 - components: - - type: Transform - pos: -16.5,-64.5 - parent: 2 - - uid: 4822 - components: - - type: Transform - pos: -17.5,-64.5 - parent: 2 - - uid: 4823 - components: - - type: Transform - pos: -18.5,-64.5 - parent: 2 - - uid: 4824 - components: - - type: Transform - pos: -19.5,-64.5 - parent: 2 - - uid: 4825 - components: - - type: Transform - pos: -20.5,-64.5 - parent: 2 - - uid: 4826 - components: - - type: Transform - pos: -21.5,-64.5 - parent: 2 - - uid: 4827 - components: - - type: Transform - pos: -22.5,-64.5 - parent: 2 - - uid: 4828 - components: - - type: Transform - pos: -22.5,-65.5 - parent: 2 - - uid: 4829 - components: - - type: Transform - pos: -23.5,-65.5 - parent: 2 - - uid: 4830 - components: - - type: Transform - pos: -24.5,-65.5 - parent: 2 - - uid: 4831 - components: - - type: Transform - pos: -25.5,-65.5 - parent: 2 - - uid: 4832 - components: - - type: Transform - pos: -26.5,-65.5 - parent: 2 - - uid: 4833 - components: - - type: Transform - pos: -26.5,-66.5 - parent: 2 - - uid: 4834 - components: - - type: Transform - pos: -27.5,-66.5 - parent: 2 - - uid: 4835 - components: - - type: Transform - pos: -28.5,-66.5 - parent: 2 - - uid: 4836 - components: - - type: Transform - pos: -29.5,-66.5 - parent: 2 - - uid: 4837 - components: - - type: Transform - pos: -30.5,-66.5 - parent: 2 - - uid: 4838 - components: - - type: Transform - pos: -31.5,-66.5 - parent: 2 - - uid: 4839 - components: - - type: Transform - pos: -32.5,-66.5 - parent: 2 - - uid: 4840 - components: - - type: Transform - pos: -33.5,-66.5 - parent: 2 - - uid: 4841 - components: - - type: Transform - pos: -33.5,-67.5 - parent: 2 - - uid: 4842 - components: - - type: Transform - pos: -34.5,-67.5 - parent: 2 - - uid: 4843 - components: - - type: Transform - pos: -35.5,-67.5 - parent: 2 - - uid: 4844 - components: - - type: Transform - pos: -35.5,-66.5 - parent: 2 - - uid: 4845 - components: - - type: Transform - pos: -36.5,-66.5 - parent: 2 - - uid: 4846 - components: - - type: Transform - pos: -37.5,-66.5 - parent: 2 - - uid: 4847 - components: - - type: Transform - pos: -37.5,-67.5 - parent: 2 - - uid: 4848 - components: - - type: Transform - pos: -37.5,-68.5 - parent: 2 - - uid: 4849 - components: - - type: Transform - pos: -37.5,-69.5 - parent: 2 - - uid: 4850 - components: - - type: Transform - pos: -37.5,-70.5 - parent: 2 - - uid: 4851 - components: - - type: Transform - pos: -37.5,-71.5 - parent: 2 - - uid: 4852 - components: - - type: Transform - pos: -37.5,-72.5 - parent: 2 - - uid: 4853 - components: - - type: Transform - pos: -38.5,-72.5 - parent: 2 - - uid: 4854 - components: - - type: Transform - pos: -39.5,-72.5 - parent: 2 - - uid: 4855 - components: - - type: Transform - pos: -39.5,-73.5 - parent: 2 - - uid: 4856 - components: - - type: Transform - pos: -39.5,-74.5 - parent: 2 - - uid: 4857 - components: - - type: Transform - pos: -39.5,-75.5 - parent: 2 - - uid: 4858 - components: - - type: Transform - pos: -39.5,-76.5 - parent: 2 - - uid: 4859 - components: - - type: Transform - pos: -39.5,-77.5 - parent: 2 - - uid: 4860 - components: - - type: Transform - pos: -39.5,-78.5 - parent: 2 - - uid: 4861 - components: - - type: Transform - pos: -39.5,-79.5 - parent: 2 - - uid: 4862 - components: - - type: Transform - pos: -39.5,-80.5 - parent: 2 - - uid: 4863 - components: - - type: Transform - pos: -38.5,-80.5 - parent: 2 - - uid: 4864 - components: - - type: Transform - pos: -37.5,-80.5 - parent: 2 - - uid: 4865 - components: - - type: Transform - pos: -37.5,-81.5 - parent: 2 - - uid: 4866 - components: - - type: Transform - pos: -37.5,-82.5 - parent: 2 - - uid: 4867 - components: - - type: Transform - pos: -37.5,-83.5 - parent: 2 - - uid: 4868 - components: - - type: Transform - pos: -37.5,-84.5 - parent: 2 - - uid: 4869 - components: - - type: Transform - pos: -37.5,-85.5 - parent: 2 - - uid: 4870 - components: - - type: Transform - pos: -37.5,-86.5 - parent: 2 - - uid: 4871 - components: - - type: Transform - pos: -36.5,-86.5 - parent: 2 - - uid: 4872 - components: - - type: Transform - pos: -35.5,-86.5 - parent: 2 - - uid: 4873 - components: - - type: Transform - pos: -34.5,-86.5 - parent: 2 - - uid: 4874 - components: - - type: Transform - pos: -33.5,-86.5 - parent: 2 - - uid: 4875 - components: - - type: Transform - pos: -32.5,-86.5 - parent: 2 - - uid: 4876 - components: - - type: Transform - pos: -31.5,-86.5 - parent: 2 - - uid: 4877 - components: - - type: Transform - pos: -30.5,-86.5 - parent: 2 - - uid: 4878 - components: - - type: Transform - pos: -29.5,-86.5 - parent: 2 - - uid: 4879 - components: - - type: Transform - pos: -28.5,-86.5 - parent: 2 - - uid: 4880 - components: - - type: Transform - pos: -27.5,-86.5 - parent: 2 - - uid: 4881 - components: - - type: Transform - pos: -26.5,-86.5 - parent: 2 - - uid: 4882 - components: - - type: Transform - pos: -25.5,-86.5 - parent: 2 - - uid: 4883 - components: - - type: Transform - pos: -24.5,-86.5 - parent: 2 - - uid: 4884 - components: - - type: Transform - pos: -23.5,-86.5 - parent: 2 - - uid: 4885 - components: - - type: Transform - pos: -23.5,-87.5 - parent: 2 - - uid: 4886 - components: - - type: Transform - pos: -23.5,-88.5 - parent: 2 - - uid: 4887 - components: - - type: Transform - pos: -23.5,-89.5 - parent: 2 - - uid: 4888 - components: - - type: Transform - pos: -22.5,-89.5 - parent: 2 - - uid: 4889 - components: - - type: Transform - pos: -21.5,-89.5 - parent: 2 - - uid: 4890 - components: - - type: Transform - pos: -20.5,-89.5 - parent: 2 - - uid: 4891 - components: - - type: Transform - pos: -19.5,-89.5 - parent: 2 - - uid: 4892 - components: - - type: Transform - pos: -18.5,-89.5 - parent: 2 - - uid: 4893 - components: - - type: Transform - pos: -17.5,-89.5 - parent: 2 - - uid: 4894 - components: - - type: Transform - pos: -16.5,-89.5 - parent: 2 - - uid: 4895 - components: - - type: Transform - pos: -15.5,-89.5 - parent: 2 - - uid: 4896 - components: - - type: Transform - pos: -14.5,-89.5 - parent: 2 - - uid: 4897 - components: - - type: Transform - pos: -13.5,-89.5 - parent: 2 - - uid: 4898 - components: - - type: Transform - pos: -12.5,-89.5 - parent: 2 - - uid: 4899 - components: - - type: Transform - pos: -11.5,-89.5 - parent: 2 - - uid: 4900 - components: - - type: Transform - pos: -10.5,-89.5 - parent: 2 - - uid: 4901 - components: - - type: Transform - pos: -9.5,-89.5 - parent: 2 - - uid: 4902 - components: - - type: Transform - pos: -8.5,-89.5 - parent: 2 - - uid: 4903 - components: - - type: Transform - pos: -8.5,-88.5 - parent: 2 - - uid: 4904 - components: - - type: Transform - pos: -8.5,-87.5 - parent: 2 - - uid: 4905 - components: - - type: Transform - pos: -6.5,-87.5 - parent: 2 - - uid: 4906 - components: - - type: Transform - pos: -5.5,-87.5 - parent: 2 - - uid: 4907 - components: - - type: Transform - pos: -4.5,-87.5 - parent: 2 - - uid: 4908 - components: - - type: Transform - pos: -3.5,-87.5 - parent: 2 - - uid: 4909 - components: - - type: Transform - pos: -2.5,-87.5 - parent: 2 - - uid: 4910 - components: - - type: Transform - pos: -1.5,-87.5 - parent: 2 - - uid: 4911 - components: - - type: Transform - pos: 3.5,-85.5 - parent: 2 - - uid: 4912 - components: - - type: Transform - pos: -1.5,-86.5 - parent: 2 - - uid: 4913 - components: - - type: Transform - pos: -0.5,-86.5 - parent: 2 - - uid: 4914 - components: - - type: Transform - pos: 0.5,-86.5 - parent: 2 - - uid: 4915 - components: - - type: Transform - pos: 1.5,-86.5 - parent: 2 - - uid: 4916 - components: - - type: Transform - pos: 2.5,-86.5 - parent: 2 - - uid: 4917 - components: - - type: Transform - pos: 3.5,-86.5 - parent: 2 - - uid: 4918 - components: - - type: Transform - pos: 3.5,-84.5 - parent: 2 - - uid: 4919 - components: - - type: Transform - pos: 3.5,-83.5 - parent: 2 - - uid: 4920 - components: - - type: Transform - pos: 3.5,-82.5 - parent: 2 - - uid: 4921 - components: - - type: Transform - pos: 3.5,-81.5 - parent: 2 - - uid: 4922 - components: - - type: Transform - pos: 3.5,-80.5 - parent: 2 - - uid: 4923 - components: - - type: Transform - pos: 4.5,-80.5 - parent: 2 - - uid: 4924 - components: - - type: Transform - pos: 5.5,-80.5 - parent: 2 - - uid: 4925 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 2 - - uid: 4926 - components: - - type: Transform - pos: -4.5,-64.5 - parent: 2 - - uid: 4927 - components: - - type: Transform - pos: 5.5,-79.5 - parent: 2 - - uid: 4928 - components: - - type: Transform - pos: 5.5,-78.5 - parent: 2 - - uid: 4929 - components: - - type: Transform - pos: 5.5,-77.5 - parent: 2 - - uid: 4930 - components: - - type: Transform - pos: 5.5,-76.5 - parent: 2 - - uid: 4931 - components: - - type: Transform - pos: 5.5,-75.5 - parent: 2 - - uid: 4932 - components: - - type: Transform - pos: 5.5,-74.5 - parent: 2 - - uid: 4933 - components: - - type: Transform - pos: 5.5,-73.5 - parent: 2 - - uid: 4934 - components: - - type: Transform - pos: 5.5,-72.5 - parent: 2 - - uid: 4935 - components: - - type: Transform - pos: 4.5,-72.5 - parent: 2 - - uid: 4936 - components: - - type: Transform - pos: 3.5,-72.5 - parent: 2 - - uid: 4937 - components: - - type: Transform - pos: -5.5,-64.5 - parent: 2 - - uid: 4938 - components: - - type: Transform - pos: 3.5,-71.5 - parent: 2 - - uid: 4939 - components: - - type: Transform - pos: 3.5,-70.5 - parent: 2 - - uid: 4940 - components: - - type: Transform - pos: 3.5,-69.5 - parent: 2 - - uid: 4941 - components: - - type: Transform - pos: 3.5,-68.5 - parent: 2 - - uid: 4942 - components: - - type: Transform - pos: 3.5,-67.5 - parent: 2 - - uid: 4943 - components: - - type: Transform - pos: 3.5,-66.5 - parent: 2 - - uid: 4944 - components: - - type: Transform - pos: 2.5,-66.5 - parent: 2 - - uid: 4945 - components: - - type: Transform - pos: 1.5,-66.5 - parent: 2 - - uid: 4946 - components: - - type: Transform - pos: 0.5,-66.5 - parent: 2 - - uid: 4947 - components: - - type: Transform - pos: -0.5,-66.5 - parent: 2 - - uid: 4948 - components: - - type: Transform - pos: -0.5,-65.5 - parent: 2 - - uid: 4949 - components: - - type: Transform - pos: -1.5,-65.5 - parent: 2 - - uid: 4950 - components: - - type: Transform - pos: -2.5,-65.5 - parent: 2 - - uid: 4951 - components: - - type: Transform - pos: -3.5,-65.5 - parent: 2 - - uid: 4952 - components: - - type: Transform - pos: -4.5,-65.5 - parent: 2 - - uid: 4953 - components: - - type: Transform - pos: -6.5,-64.5 - parent: 2 - - uid: 4954 - components: - - type: Transform - pos: -7.5,-64.5 - parent: 2 - - uid: 4955 - components: - - type: Transform - pos: -9.5,-64.5 - parent: 2 - - uid: 4956 - components: - - type: Transform - pos: -10.5,-64.5 - parent: 2 - - uid: 4957 - components: - - type: Transform - pos: -11.5,-64.5 - parent: 2 - - uid: 4958 - components: - - type: Transform - pos: -12.5,-64.5 - parent: 2 - - uid: 4959 - components: - - type: Transform - pos: -13.5,-64.5 - parent: 2 - - uid: 4960 - components: - - type: Transform - pos: -14.5,-64.5 - parent: 2 - - uid: 4961 - components: - - type: Transform - pos: -15.5,-64.5 - parent: 2 - - uid: 4962 - components: - - type: Transform - pos: -31.5,15.5 - parent: 2 - - uid: 4963 - components: - - type: Transform - pos: 13.5,23.5 - parent: 2 - - uid: 4964 - components: - - type: Transform - pos: -64.5,-9.5 - parent: 2 - - uid: 4965 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 2 - - uid: 4966 - components: - - type: Transform - pos: 2.5,-82.5 - parent: 2 - - uid: 4967 - components: - - type: Transform - pos: -9.5,-87.5 - parent: 2 - - uid: 4968 - components: - - type: Transform - pos: -21.5,-88.5 - parent: 2 - - uid: 4969 - components: - - type: Transform - pos: -12.5,39.5 - parent: 2 - - uid: 4970 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 2 - - uid: 4971 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 2 - - uid: 4972 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 2 - - uid: 4973 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 2 - - uid: 4974 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 2 - - uid: 4975 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 4976 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 2 - - uid: 4977 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 2 - - uid: 4978 - components: - - type: Transform - pos: 7.5,-39.5 - parent: 2 - - uid: 4979 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 2 - - uid: 4980 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - uid: 4981 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 4982 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 2 - - uid: 4983 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 4984 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 4985 - components: - - type: Transform - pos: 0.5,-37.5 - parent: 2 - - uid: 4986 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 2 - - uid: 4987 - components: - - type: Transform - pos: -4.5,-37.5 - parent: 2 - - uid: 4988 - components: - - type: Transform - pos: 1.5,-38.5 - parent: 2 - - uid: 4989 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 2 - - uid: 4990 - components: - - type: Transform - pos: -1.5,-37.5 - parent: 2 - - uid: 4991 - components: - - type: Transform - pos: -2.5,-37.5 - parent: 2 - - uid: 4992 - components: - - type: Transform - pos: -3.5,-37.5 - parent: 2 - - uid: 4993 - components: - - type: Transform - pos: 1.5,-37.5 - parent: 2 - - uid: 4994 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - - uid: 4995 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 2 - - uid: 6082 - components: - - type: Transform - pos: 35.5,17.5 - parent: 2 - - uid: 11654 - components: - - type: Transform - pos: -41.5,50.5 - parent: 2 - - uid: 11655 - components: - - type: Transform - pos: -40.5,50.5 - parent: 2 - - uid: 13916 - components: - - type: Transform - pos: -42.5,49.5 - parent: 2 - - uid: 17442 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 - - uid: 17443 - components: - - type: Transform - pos: 35.5,15.5 - parent: 2 - - uid: 17444 - components: - - type: Transform - pos: 36.5,15.5 - parent: 2 - - uid: 17445 - components: - - type: Transform - pos: 37.5,15.5 - parent: 2 - - uid: 17446 - components: - - type: Transform - pos: 38.5,15.5 - parent: 2 - - uid: 17447 - components: - - type: Transform - pos: 39.5,15.5 - parent: 2 - - uid: 17448 - components: - - type: Transform - pos: 39.5,14.5 - parent: 2 - - uid: 17449 - components: - - type: Transform - pos: 39.5,13.5 - parent: 2 - - uid: 17450 - components: - - type: Transform - pos: 39.5,12.5 - parent: 2 - - uid: 17451 - components: - - type: Transform - pos: 39.5,11.5 - parent: 2 - - uid: 17452 - components: - - type: Transform - pos: 39.5,10.5 - parent: 2 - - uid: 17453 - components: - - type: Transform - pos: 39.5,9.5 - parent: 2 - - uid: 17454 - components: - - type: Transform - pos: 40.5,11.5 - parent: 2 - - uid: 17455 - components: - - type: Transform - pos: 41.5,11.5 - parent: 2 - - uid: 17456 - components: - - type: Transform - pos: 42.5,11.5 - parent: 2 - - uid: 17457 - components: - - type: Transform - pos: 43.5,11.5 - parent: 2 - - uid: 17458 - components: - - type: Transform - pos: 44.5,11.5 - parent: 2 - - uid: 17459 - components: - - type: Transform - pos: 44.5,12.5 - parent: 2 - - uid: 17460 - components: - - type: Transform - pos: 44.5,13.5 - parent: 2 - - uid: 17461 - components: - - type: Transform - pos: 44.5,14.5 - parent: 2 - - uid: 17548 - components: - - type: Transform - pos: -31.5,-30.5 - parent: 2 - - uid: 17549 - components: - - type: Transform - pos: -31.5,-31.5 - parent: 2 - - uid: 17550 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 17551 - components: - - type: Transform - pos: -31.5,-33.5 - parent: 2 - - uid: 17552 - components: - - type: Transform - pos: -31.5,-34.5 - parent: 2 - - uid: 17553 - components: - - type: Transform - pos: -32.5,-34.5 - parent: 2 - - uid: 17554 - components: - - type: Transform - pos: -33.5,-34.5 - parent: 2 - - uid: 17555 - components: - - type: Transform - pos: -34.5,-34.5 - parent: 2 - - uid: 17556 - components: - - type: Transform - pos: -34.5,-35.5 - parent: 2 - - uid: 17557 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 2 - - uid: 17558 - components: - - type: Transform - pos: -35.5,-36.5 - parent: 2 - - uid: 17559 - components: - - type: Transform - pos: -35.5,-37.5 - parent: 2 - - uid: 17560 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 2 - - uid: 17561 - components: - - type: Transform - pos: -35.5,-39.5 - parent: 2 - - uid: 17562 - components: - - type: Transform - pos: -35.5,-40.5 - parent: 2 - - uid: 17563 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 2 - - uid: 17564 - components: - - type: Transform - pos: -34.5,-41.5 - parent: 2 - - uid: 17565 - components: - - type: Transform - pos: -34.5,-42.5 - parent: 2 - - uid: 17566 - components: - - type: Transform - pos: -33.5,-42.5 - parent: 2 - - uid: 17567 - components: - - type: Transform - pos: -32.5,-42.5 - parent: 2 - - uid: 17568 - components: - - type: Transform - pos: -31.5,-42.5 - parent: 2 - - uid: 17698 - components: - - type: Transform - pos: -31.5,-41.5 - parent: 2 - - uid: 17699 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 2 - - uid: 17700 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - uid: 17856 - components: - - type: Transform - pos: -31.5,-43.5 - parent: 2 - - uid: 17857 - components: - - type: Transform - pos: -31.5,-44.5 - parent: 2 - - uid: 17858 - components: - - type: Transform - pos: -31.5,-45.5 - parent: 2 - - uid: 17859 - components: - - type: Transform - pos: -30.5,-45.5 - parent: 2 - - uid: 17860 - components: - - type: Transform - pos: -29.5,-45.5 - parent: 2 - - uid: 17861 - components: - - type: Transform - pos: -28.5,-45.5 - parent: 2 - - uid: 17862 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - uid: 17863 - components: - - type: Transform - pos: -26.5,-45.5 - parent: 2 - - uid: 17867 - components: - - type: Transform - pos: -26.5,-41.5 - parent: 2 - - uid: 17868 - components: - - type: Transform - pos: -26.5,-40.5 - parent: 2 - - uid: 17869 - components: - - type: Transform - pos: -26.5,-39.5 - parent: 2 - - uid: 17870 - components: - - type: Transform - pos: -26.5,-38.5 - parent: 2 - - uid: 17871 - components: - - type: Transform - pos: -26.5,-37.5 - parent: 2 - - uid: 17872 - components: - - type: Transform - pos: -27.5,-37.5 - parent: 2 - - uid: 17873 - components: - - type: Transform - pos: -28.5,-37.5 - parent: 2 - - uid: 17874 - components: - - type: Transform - pos: -28.5,-38.5 - parent: 2 - - uid: 17910 - components: - - type: Transform - pos: -26.5,-44.5 - parent: 2 - - uid: 17912 - components: - - type: Transform - pos: -25.5,-44.5 - parent: 2 - - uid: 17913 - components: - - type: Transform - pos: -25.5,-43.5 - parent: 2 - - uid: 17914 - components: - - type: Transform - pos: -25.5,-42.5 - parent: 2 - - uid: 17915 - components: - - type: Transform - pos: -26.5,-42.5 - parent: 2 -- proto: CableMVStack - entities: - - uid: 4996 - components: - - type: Transform - pos: -18.641283,-34.260426 - parent: 2 - - uid: 4997 - components: - - type: Transform - pos: -11.407126,-24.44871 - parent: 2 -- proto: CableTerminal - entities: - - uid: 5004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,11.5 - parent: 2 - - uid: 5005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-25.5 - parent: 2 - - uid: 5006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-25.5 - parent: 2 - - uid: 5007 - components: - - type: Transform - pos: -20.5,-32.5 - parent: 2 - - uid: 5008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-44.5 - parent: 2 - - uid: 5009 - components: - - type: Transform - pos: -44.5,51.5 - parent: 2 -- proto: CannabisSeeds - entities: - - uid: 5010 - components: - - type: Transform - pos: -52.073597,-6.269678 - parent: 2 - - uid: 5011 - components: - - type: Transform - pos: -59.584892,-16.591707 - parent: 2 -- proto: CapacitorStockPart - entities: - - uid: 5012 - components: - - type: Transform - pos: -11.667542,-24.240232 - parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 5014 - components: - - type: Transform - pos: 0.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 6091 - components: - - type: Transform - pos: -13.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 12737 - components: - - type: Transform - pos: -11.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: CargoRequestComputerCircuitboard - entities: - - uid: 5015 - components: - - type: Transform - pos: -14.633717,-29.633926 - parent: 2 -- proto: CargoTelepadMachineCircuitboard - entities: - - uid: 5016 - components: - - type: Transform - pos: -14.289967,-29.37333 - parent: 2 -- proto: Carpet - entities: - - uid: 5017 - components: - - type: Transform - pos: -52.5,0.5 - parent: 2 - - uid: 5018 - components: - - type: Transform - pos: -52.5,-0.5 - parent: 2 - - uid: 5019 - components: - - type: Transform - pos: -21.5,40.5 - parent: 2 - - uid: 5020 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - - uid: 5021 - components: - - type: Transform - pos: -20.5,40.5 - parent: 2 - - uid: 5022 - components: - - type: Transform - pos: -20.5,41.5 - parent: 2 - - uid: 5023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-0.5 - parent: 2 - - uid: 5024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 2 - - uid: 5025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,1.5 - parent: 2 - - uid: 5026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-0.5 - parent: 2 - - uid: 5027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,0.5 - parent: 2 - - uid: 5028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,1.5 - parent: 2 - - uid: 5029 - components: - - type: Transform - pos: -51.5,0.5 - parent: 2 - - uid: 5030 - components: - - type: Transform - pos: -51.5,-0.5 - parent: 2 - - uid: 5031 - components: - - type: Transform - pos: -52.5,1.5 - parent: 2 - - uid: 5032 - components: - - type: Transform - pos: -51.5,1.5 - parent: 2 - - uid: 5033 - components: - - type: Transform - pos: -53.5,1.5 - parent: 2 - - uid: 5034 - components: - - type: Transform - pos: -53.5,0.5 - parent: 2 - - uid: 5035 - components: - - type: Transform - pos: -53.5,-0.5 - parent: 2 -- proto: CarpetBlack - entities: - - uid: 5036 - components: - - type: Transform - pos: -10.5,-9.5 - parent: 2 - - uid: 5037 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 2 - - uid: 5038 - components: - - type: Transform - pos: -19.5,22.5 - parent: 2 - - uid: 5039 - components: - - type: Transform - pos: -19.5,21.5 - parent: 2 - - uid: 5040 - components: - - type: Transform - pos: -19.5,20.5 - parent: 2 - - uid: 5041 - components: - - type: Transform - pos: -24.5,44.5 - parent: 2 - - uid: 5042 - components: - - type: Transform - pos: -24.5,43.5 - parent: 2 - - uid: 5043 - components: - - type: Transform - pos: -24.5,42.5 - parent: 2 - - uid: 5044 - components: - - type: Transform - pos: -23.5,44.5 - parent: 2 - - uid: 5045 - components: - - type: Transform - pos: -23.5,43.5 - parent: 2 - - uid: 5046 - components: - - type: Transform - pos: -23.5,42.5 - parent: 2 - - uid: 5047 - components: - - type: Transform - pos: -22.5,44.5 - parent: 2 - - uid: 5048 - components: - - type: Transform - pos: -22.5,43.5 - parent: 2 - - uid: 5049 - components: - - type: Transform - pos: -22.5,42.5 - parent: 2 - - uid: 5050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,31.5 - parent: 2 - - uid: 5051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,32.5 - parent: 2 - - uid: 5052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,31.5 - parent: 2 - - uid: 5053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,31.5 - parent: 2 - - uid: 5054 - components: - - type: Transform - pos: -35.5,33.5 - parent: 2 - - uid: 5055 - components: - - type: Transform - pos: -34.5,33.5 - parent: 2 - - uid: 5056 - components: - - type: Transform - pos: -34.5,34.5 - parent: 2 - - uid: 5057 - components: - - type: Transform - pos: -35.5,34.5 - parent: 2 - - uid: 5058 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - - uid: 5059 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 - - uid: 5060 - components: - - type: Transform - pos: -32.5,-12.5 - parent: 2 - - uid: 5061 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - - uid: 5062 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - - uid: 5063 - components: - - type: Transform - pos: -30.5,-13.5 - parent: 2 - - uid: 5064 - components: - - type: Transform - pos: -31.5,-13.5 - parent: 2 -- proto: CarpetBlue - entities: - - uid: 5065 - components: - - type: Transform - pos: -31.5,10.5 - parent: 2 - - uid: 5066 - components: - - type: Transform - pos: -31.5,9.5 - parent: 2 - - uid: 5067 - components: - - type: Transform - pos: -26.5,41.5 - parent: 2 - - uid: 5068 - components: - - type: Transform - pos: -26.5,40.5 - parent: 2 - - uid: 5069 - components: - - type: Transform - pos: -25.5,40.5 - parent: 2 - - uid: 5070 - components: - - type: Transform - pos: -25.5,41.5 - parent: 2 -- proto: CarpetChapel - entities: - - uid: 5071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,27.5 - parent: 2 - - uid: 5072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,27.5 - parent: 2 - - uid: 5073 - components: - - type: Transform - pos: -31.5,38.5 - parent: 2 - - uid: 5074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,30.5 - parent: 2 - - uid: 5075 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,26.5 - parent: 2 - - uid: 5076 - components: - - type: Transform - pos: -32.5,29.5 - parent: 2 - - uid: 5077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,30.5 - parent: 2 - - uid: 5078 - components: - - type: Transform - pos: -27.5,26.5 - parent: 2 - - uid: 5079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,30.5 - parent: 2 - - uid: 5080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,26.5 - parent: 2 - - uid: 5081 - components: - - type: Transform - pos: -27.5,29.5 - parent: 2 - - uid: 5082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,30.5 - parent: 2 - - uid: 5083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,29.5 - parent: 2 - - uid: 5084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,29.5 - parent: 2 - - uid: 5085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,27.5 - parent: 2 - - uid: 5086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,36.5 - parent: 2 - - uid: 5087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,36.5 - parent: 2 - - uid: 5088 - components: - - type: Transform - pos: -32.5,26.5 - parent: 2 - - uid: 5089 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,27.5 - parent: 2 -- proto: CarpetPink - entities: - - uid: 5090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,26.5 - parent: 2 - - uid: 5091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,27.5 - parent: 2 - - uid: 5092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,28.5 - parent: 2 - - uid: 5093 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,28.5 - parent: 2 - - uid: 5094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,27.5 - parent: 2 - - uid: 5095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,26.5 - parent: 2 - - uid: 5096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,25.5 - parent: 2 - - uid: 5097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,25.5 - parent: 2 -- proto: CarpetPurple - entities: - - uid: 5098 - components: - - type: Transform - pos: -28.5,28.5 - parent: 2 - - uid: 5099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,27.5 - parent: 2 - - uid: 5100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,27.5 - parent: 2 - - uid: 5101 - components: - - type: Transform - pos: -29.5,27.5 - parent: 2 - - uid: 5102 - components: - - type: Transform - pos: -29.5,28.5 - parent: 2 - - uid: 5103 - components: - - type: Transform - pos: -30.5,28.5 - parent: 2 - - uid: 5104 - components: - - type: Transform - pos: -28.5,26.5 - parent: 2 - - uid: 5105 - components: - - type: Transform - pos: -29.5,26.5 - parent: 2 - - uid: 5106 - components: - - type: Transform - pos: -30.5,26.5 - parent: 2 -- proto: CarpetSBlue - entities: - - uid: 5107 - components: - - type: Transform - pos: 8.5,21.5 - parent: 2 - - uid: 5108 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - - uid: 5109 - components: - - type: Transform - pos: 8.5,26.5 - parent: 2 - - uid: 5110 - components: - - type: Transform - pos: 7.5,25.5 - parent: 2 - - uid: 5111 - components: - - type: Transform - pos: 7.5,27.5 - parent: 2 - - uid: 5112 - components: - - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 5113 - components: - - type: Transform - pos: 7.5,26.5 - parent: 2 - - uid: 5114 - components: - - type: Transform - pos: 8.5,22.5 - parent: 2 - - uid: 5115 - components: - - type: Transform - pos: 31.5,15.5 - parent: 2 - - uid: 5116 - components: - - type: Transform - pos: 32.5,15.5 - parent: 2 -- proto: CarrotSeeds - entities: - - uid: 5117 - components: - - type: Transform - pos: 32.31128,-12.466648 - parent: 2 -- proto: CartridgeRocket - entities: - - uid: 5118 - components: - - type: Transform - pos: -41.510567,1.3497348 - parent: 2 -- proto: Catwalk - entities: - - uid: 1672 - components: - - type: Transform - pos: 40.5,9.5 - parent: 2 - - uid: 5119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-40.5 - parent: 2 - - uid: 5120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 2 - - uid: 5121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-42.5 - parent: 2 - - uid: 5122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-37.5 - parent: 2 - - uid: 5123 - components: - - type: Transform - pos: -27.5,-19.5 - parent: 2 - - uid: 5124 - components: - - type: Transform - pos: -52.5,36.5 - parent: 2 - - uid: 5125 - components: - - type: Transform - pos: -54.5,37.5 - parent: 2 - - uid: 5126 - components: - - type: Transform - pos: -54.5,36.5 - parent: 2 - - uid: 5127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,17.5 - parent: 2 - - uid: 5128 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 2 - - uid: 5129 - components: - - type: Transform - pos: -21.5,17.5 - parent: 2 - - uid: 5130 - components: - - type: Transform - pos: 2.5,-33.5 - parent: 2 - - uid: 5131 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - - uid: 5132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,16.5 - parent: 2 - - uid: 5133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,17.5 - parent: 2 - - uid: 5134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,17.5 - parent: 2 - - uid: 5135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,16.5 - parent: 2 - - uid: 5136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,17.5 - parent: 2 - - uid: 5137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,17.5 - parent: 2 - - uid: 5138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,17.5 - parent: 2 - - uid: 5139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,17.5 - parent: 2 - - uid: 5140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,17.5 - parent: 2 - - uid: 5141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,14.5 - parent: 2 - - uid: 5142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,13.5 - parent: 2 - - uid: 5143 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 2 - - uid: 5144 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - - uid: 5145 - components: - - type: Transform - pos: -16.5,21.5 - parent: 2 - - uid: 5146 - components: - - type: Transform - pos: -17.5,18.5 - parent: 2 - - uid: 5147 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 5148 - components: - - type: Transform - pos: -17.5,21.5 - parent: 2 - - uid: 5149 - components: - - type: Transform - pos: -17.5,20.5 - parent: 2 - - uid: 5150 - components: - - type: Transform - pos: -17.5,22.5 - parent: 2 - - uid: 5151 - components: - - type: Transform - pos: -17.5,19.5 - parent: 2 - - uid: 5152 - components: - - type: Transform - pos: 3.5,-33.5 - parent: 2 - - uid: 5153 - components: - - type: Transform - pos: -17.5,-48.5 - parent: 2 - - uid: 5154 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 2 - - uid: 5155 - components: - - type: Transform - pos: 5.5,-26.5 - parent: 2 - - uid: 5156 - components: - - type: Transform - pos: 1.5,-26.5 - parent: 2 - - uid: 5157 - components: - - type: Transform - pos: 2.5,-26.5 - parent: 2 - - uid: 5158 - components: - - type: Transform - pos: 3.5,-26.5 - parent: 2 - - uid: 5159 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 2 - - uid: 5160 - components: - - type: Transform - pos: 1.5,-23.5 - parent: 2 - - uid: 5161 - components: - - type: Transform - pos: 0.5,-23.5 - parent: 2 - - uid: 5162 - components: - - type: Transform - pos: -0.5,-23.5 - parent: 2 - - uid: 5163 - components: - - type: Transform - pos: -1.5,-23.5 - parent: 2 - - uid: 5164 - components: - - type: Transform - pos: -2.5,-23.5 - parent: 2 - - uid: 5165 - components: - - type: Transform - pos: -3.5,-23.5 - parent: 2 - - uid: 5166 - components: - - type: Transform - pos: -4.5,-23.5 - parent: 2 - - uid: 5167 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 2 - - uid: 5168 - components: - - type: Transform - pos: 2.5,-32.5 - parent: 2 - - uid: 5169 - components: - - type: Transform - pos: 2.5,-31.5 - parent: 2 - - uid: 5171 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 2 - - uid: 5172 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 2 - - uid: 5173 - components: - - type: Transform - pos: -31.5,-26.5 - parent: 2 - - uid: 5174 - components: - - type: Transform - pos: -30.5,-27.5 - parent: 2 - - uid: 5175 - components: - - type: Transform - pos: -31.5,-28.5 - parent: 2 - - uid: 5176 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - - uid: 5177 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - - uid: 5178 - components: - - type: Transform - pos: -34.5,-2.5 - parent: 2 - - uid: 5179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 - parent: 2 - - uid: 5180 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 2 - - uid: 5181 - components: - - type: Transform - pos: -17.5,-49.5 - parent: 2 - - uid: 5182 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 2 - - uid: 5183 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 2 - - uid: 5184 - components: - - type: Transform - pos: 18.5,-20.5 - parent: 2 - - uid: 5185 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,20.5 - parent: 2 - - uid: 5186 - components: - - type: Transform - pos: 17.5,-19.5 - parent: 2 - - uid: 5187 - components: - - type: Transform - pos: -31.5,41.5 - parent: 2 - - uid: 5188 - components: - - type: Transform - pos: 2.5,-37.5 - parent: 2 - - uid: 5190 - components: - - type: Transform - pos: -24.5,-27.5 - parent: 2 - - uid: 5191 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 2 - - uid: 5192 - components: - - type: Transform - pos: 15.5,-22.5 - parent: 2 - - uid: 5193 - components: - - type: Transform - pos: 18.5,-15.5 - parent: 2 - - uid: 5194 - components: - - type: Transform - pos: -53.5,35.5 - parent: 2 - - uid: 5195 - components: - - type: Transform - pos: -56.5,35.5 - parent: 2 - - uid: 5196 - components: - - type: Transform - pos: -57.5,35.5 - parent: 2 - - uid: 5197 - components: - - type: Transform - pos: -53.5,34.5 - parent: 2 - - uid: 5198 - components: - - type: Transform - pos: -52.5,35.5 - parent: 2 - - uid: 5199 - components: - - type: Transform - pos: -54.5,35.5 - parent: 2 - - uid: 5200 - components: - - type: Transform - pos: -55.5,35.5 - parent: 2 - - uid: 5201 - components: - - type: Transform - pos: -53.5,33.5 - parent: 2 - - uid: 5202 - components: - - type: Transform - pos: -53.5,32.5 - parent: 2 - - uid: 5203 - components: - - type: Transform - pos: -54.5,32.5 - parent: 2 - - uid: 5204 - components: - - type: Transform - pos: -55.5,32.5 - parent: 2 - - uid: 5205 - components: - - type: Transform - pos: -52.5,33.5 - parent: 2 - - uid: 5206 - components: - - type: Transform - pos: 7.5,-37.5 - parent: 2 - - uid: 5207 - components: - - type: Transform - pos: -0.5,-13.5 - parent: 2 - - uid: 5208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,22.5 - parent: 2 - - uid: 5209 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 2 - - uid: 5210 - components: - - type: Transform - pos: -7.5,-26.5 - parent: 2 - - uid: 5211 - components: - - type: Transform - pos: -7.5,-27.5 - parent: 2 - - uid: 5212 - components: - - type: Transform - pos: -7.5,-28.5 - parent: 2 - - uid: 5213 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 5214 - components: - - type: Transform - pos: 27.5,28.5 - parent: 2 - - uid: 5215 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 2 - - uid: 5216 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - - uid: 5217 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 5218 - components: - - type: Transform - pos: 6.5,-38.5 - parent: 2 - - uid: 5219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,46.5 - parent: 2 - - uid: 5220 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 2 - - uid: 5221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 2 - - uid: 5222 - components: - - type: Transform - pos: -42.5,53.5 - parent: 2 - - uid: 5223 - components: - - type: Transform - pos: -42.5,51.5 - parent: 2 - - uid: 5224 - components: - - type: Transform - pos: -42.5,50.5 - parent: 2 - - uid: 5225 - components: - - type: Transform - pos: -42.5,49.5 - parent: 2 - - uid: 5226 - components: - - type: Transform - pos: -42.5,55.5 - parent: 2 - - uid: 5227 - components: - - type: Transform - pos: -42.5,56.5 - parent: 2 - - uid: 5228 - components: - - type: Transform - pos: -42.5,57.5 - parent: 2 - - uid: 5229 - components: - - type: Transform - pos: -42.5,58.5 - parent: 2 - - uid: 5230 - components: - - type: Transform - pos: -42.5,59.5 - parent: 2 - - uid: 5231 - components: - - type: Transform - pos: -42.5,61.5 - parent: 2 - - uid: 5232 - components: - - type: Transform - pos: -42.5,63.5 - parent: 2 - - uid: 5233 - components: - - type: Transform - pos: -42.5,65.5 - parent: 2 - - uid: 5234 - components: - - type: Transform - pos: -42.5,66.5 - parent: 2 - - uid: 5235 - components: - - type: Transform - pos: -42.5,67.5 - parent: 2 - - uid: 5236 - components: - - type: Transform - pos: -39.5,65.5 - parent: 2 - - uid: 5237 - components: - - type: Transform - pos: -38.5,65.5 - parent: 2 - - uid: 5238 - components: - - type: Transform - pos: -37.5,65.5 - parent: 2 - - uid: 5239 - components: - - type: Transform - pos: -36.5,65.5 - parent: 2 - - uid: 5240 - components: - - type: Transform - pos: -35.5,65.5 - parent: 2 - - uid: 5241 - components: - - type: Transform - pos: -34.5,65.5 - parent: 2 - - uid: 5242 - components: - - type: Transform - pos: -43.5,65.5 - parent: 2 - - uid: 5243 - components: - - type: Transform - pos: -44.5,65.5 - parent: 2 - - uid: 5244 - components: - - type: Transform - pos: -45.5,65.5 - parent: 2 - - uid: 5245 - components: - - type: Transform - pos: -46.5,65.5 - parent: 2 - - uid: 5246 - components: - - type: Transform - pos: -47.5,65.5 - parent: 2 - - uid: 5247 - components: - - type: Transform - pos: -48.5,65.5 - parent: 2 - - uid: 5248 - components: - - type: Transform - pos: -49.5,65.5 - parent: 2 - - uid: 5249 - components: - - type: Transform - pos: -50.5,65.5 - parent: 2 - - uid: 5250 - components: - - type: Transform - pos: -43.5,61.5 - parent: 2 - - uid: 5251 - components: - - type: Transform - pos: -44.5,61.5 - parent: 2 - - uid: 5252 - components: - - type: Transform - pos: -45.5,61.5 - parent: 2 - - uid: 5253 - components: - - type: Transform - pos: -46.5,61.5 - parent: 2 - - uid: 5254 - components: - - type: Transform - pos: -47.5,61.5 - parent: 2 - - uid: 5255 - components: - - type: Transform - pos: -48.5,61.5 - parent: 2 - - uid: 5256 - components: - - type: Transform - pos: -49.5,61.5 - parent: 2 - - uid: 5257 - components: - - type: Transform - pos: -50.5,61.5 - parent: 2 - - uid: 5258 - components: - - type: Transform - pos: -40.5,61.5 - parent: 2 - - uid: 5259 - components: - - type: Transform - pos: -39.5,61.5 - parent: 2 - - uid: 5260 - components: - - type: Transform - pos: -38.5,61.5 - parent: 2 - - uid: 5261 - components: - - type: Transform - pos: -37.5,61.5 - parent: 2 - - uid: 5262 - components: - - type: Transform - pos: -36.5,61.5 - parent: 2 - - uid: 5263 - components: - - type: Transform - pos: -35.5,61.5 - parent: 2 - - uid: 5264 - components: - - type: Transform - pos: -34.5,61.5 - parent: 2 - - uid: 5265 - components: - - type: Transform - pos: -34.5,57.5 - parent: 2 - - uid: 5266 - components: - - type: Transform - pos: -35.5,57.5 - parent: 2 - - uid: 5267 - components: - - type: Transform - pos: -38.5,57.5 - parent: 2 - - uid: 5268 - components: - - type: Transform - pos: -39.5,57.5 - parent: 2 - - uid: 5269 - components: - - type: Transform - pos: -40.5,57.5 - parent: 2 - - uid: 5270 - components: - - type: Transform - pos: -41.5,57.5 - parent: 2 - - uid: 5271 - components: - - type: Transform - pos: -46.5,57.5 - parent: 2 - - uid: 5272 - components: - - type: Transform - pos: -47.5,57.5 - parent: 2 - - uid: 5273 - components: - - type: Transform - pos: -48.5,57.5 - parent: 2 - - uid: 5274 - components: - - type: Transform - pos: -49.5,57.5 - parent: 2 - - uid: 5275 - components: - - type: Transform - pos: -50.5,57.5 - parent: 2 - - uid: 5276 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 5277 - components: - - type: Transform - pos: 50.5,11.5 - parent: 2 - - uid: 5278 - components: - - type: Transform - pos: 51.5,11.5 - parent: 2 - - uid: 5279 - components: - - type: Transform - pos: 52.5,11.5 - parent: 2 - - uid: 5280 - components: - - type: Transform - pos: 56.5,11.5 - parent: 2 - - uid: 5281 - components: - - type: Transform - pos: 57.5,11.5 - parent: 2 - - uid: 5282 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - - uid: 5283 - components: - - type: Transform - pos: 59.5,11.5 - parent: 2 - - uid: 5284 - components: - - type: Transform - pos: 60.5,11.5 - parent: 2 - - uid: 5285 - components: - - type: Transform - pos: 61.5,11.5 - parent: 2 - - uid: 5286 - components: - - type: Transform - pos: 62.5,11.5 - parent: 2 - - uid: 5287 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 5288 - components: - - type: Transform - pos: 59.5,12.5 - parent: 2 - - uid: 5289 - components: - - type: Transform - pos: 59.5,13.5 - parent: 2 - - uid: 5290 - components: - - type: Transform - pos: 59.5,14.5 - parent: 2 - - uid: 5291 - components: - - type: Transform - pos: 59.5,15.5 - parent: 2 - - uid: 5292 - components: - - type: Transform - pos: 59.5,16.5 - parent: 2 - - uid: 5293 - components: - - type: Transform - pos: 59.5,18.5 - parent: 2 - - uid: 5294 - components: - - type: Transform - pos: 55.5,18.5 - parent: 2 - - uid: 5295 - components: - - type: Transform - pos: 55.5,17.5 - parent: 2 - - uid: 5296 - components: - - type: Transform - pos: 55.5,16.5 - parent: 2 - - uid: 5297 - components: - - type: Transform - pos: 55.5,15.5 - parent: 2 - - uid: 5298 - components: - - type: Transform - pos: 55.5,14.5 - parent: 2 - - uid: 5299 - components: - - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 5300 - components: - - type: Transform - pos: 55.5,12.5 - parent: 2 - - uid: 5301 - components: - - type: Transform - pos: 55.5,11.5 - parent: 2 - - uid: 5302 - components: - - type: Transform - pos: 51.5,12.5 - parent: 2 - - uid: 5303 - components: - - type: Transform - pos: 51.5,13.5 - parent: 2 - - uid: 5304 - components: - - type: Transform - pos: 51.5,14.5 - parent: 2 - - uid: 5305 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - - uid: 5306 - components: - - type: Transform - pos: 51.5,16.5 - parent: 2 - - uid: 5307 - components: - - type: Transform - pos: 51.5,10.5 - parent: 2 - - uid: 5308 - components: - - type: Transform - pos: 51.5,9.5 - parent: 2 - - uid: 5309 - components: - - type: Transform - pos: 51.5,8.5 - parent: 2 - - uid: 5310 - components: - - type: Transform - pos: 51.5,7.5 - parent: 2 - - uid: 5311 - components: - - type: Transform - pos: 51.5,6.5 - parent: 2 - - uid: 5312 - components: - - type: Transform - pos: 51.5,5.5 - parent: 2 - - uid: 5313 - components: - - type: Transform - pos: 51.5,4.5 - parent: 2 - - uid: 5314 - components: - - type: Transform - pos: 55.5,10.5 - parent: 2 - - uid: 5315 - components: - - type: Transform - pos: 55.5,9.5 - parent: 2 - - uid: 5316 - components: - - type: Transform - pos: 55.5,8.5 - parent: 2 - - uid: 5317 - components: - - type: Transform - pos: 55.5,7.5 - parent: 2 - - uid: 5318 - components: - - type: Transform - pos: 55.5,6.5 - parent: 2 - - uid: 5319 - components: - - type: Transform - pos: 55.5,5.5 - parent: 2 - - uid: 5320 - components: - - type: Transform - pos: 55.5,4.5 - parent: 2 - - uid: 5321 - components: - - type: Transform - pos: 59.5,10.5 - parent: 2 - - uid: 5322 - components: - - type: Transform - pos: 59.5,9.5 - parent: 2 - - uid: 5323 - components: - - type: Transform - pos: 59.5,8.5 - parent: 2 - - uid: 5324 - components: - - type: Transform - pos: 59.5,7.5 - parent: 2 - - uid: 5325 - components: - - type: Transform - pos: 59.5,6.5 - parent: 2 - - uid: 5326 - components: - - type: Transform - pos: 59.5,5.5 - parent: 2 - - uid: 5327 - components: - - type: Transform - pos: 59.5,4.5 - parent: 2 - - uid: 5329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,40.5 - parent: 2 - - uid: 5330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,46.5 - parent: 2 - - uid: 5331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,46.5 - parent: 2 - - uid: 5332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,46.5 - parent: 2 - - uid: 5333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,46.5 - parent: 2 - - uid: 5334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,46.5 - parent: 2 - - uid: 5335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,46.5 - parent: 2 - - uid: 5336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,46.5 - parent: 2 - - uid: 5337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,46.5 - parent: 2 - - uid: 5338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,46.5 - parent: 2 - - uid: 5339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,46.5 - parent: 2 - - uid: 5340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,47.5 - parent: 2 - - uid: 5341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,45.5 - parent: 2 - - uid: 5342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,44.5 - parent: 2 - - uid: 5343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,43.5 - parent: 2 - - uid: 5344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,42.5 - parent: 2 - - uid: 5345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,41.5 - parent: 2 - - uid: 5346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,40.5 - parent: 2 - - uid: 5347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,40.5 - parent: 2 - - uid: 5348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,40.5 - parent: 2 - - uid: 5349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,40.5 - parent: 2 - - uid: 5350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,40.5 - parent: 2 - - uid: 5351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,40.5 - parent: 2 - - uid: 5352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,19.5 - parent: 2 - - uid: 5353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,39.5 - parent: 2 - - uid: 5354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,38.5 - parent: 2 - - uid: 5355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,37.5 - parent: 2 - - uid: 5356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,36.5 - parent: 2 - - uid: 5357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,35.5 - parent: 2 - - uid: 5358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 2 - - uid: 5359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,34.5 - parent: 2 - - uid: 5360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,34.5 - parent: 2 - - uid: 5361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,34.5 - parent: 2 - - uid: 5362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,34.5 - parent: 2 - - uid: 5363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,29.5 - parent: 2 - - uid: 5364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,30.5 - parent: 2 - - uid: 5365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,31.5 - parent: 2 - - uid: 5366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,29.5 - parent: 2 - - uid: 5367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,29.5 - parent: 2 - - uid: 5368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,29.5 - parent: 2 - - uid: 5369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,29.5 - parent: 2 - - uid: 5370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,29.5 - parent: 2 - - uid: 5371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,29.5 - parent: 2 - - uid: 5372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,29.5 - parent: 2 - - uid: 5373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,30.5 - parent: 2 - - uid: 5374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,30.5 - parent: 2 - - uid: 5375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,30.5 - parent: 2 - - uid: 5376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,30.5 - parent: 2 - - uid: 5377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 2 - - uid: 5378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,30.5 - parent: 2 - - uid: 5379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,27.5 - parent: 2 - - uid: 5380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,26.5 - parent: 2 - - uid: 5381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,26.5 - parent: 2 - - uid: 5382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,26.5 - parent: 2 - - uid: 5383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,26.5 - parent: 2 - - uid: 5384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,25.5 - parent: 2 - - uid: 5385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 2 - - uid: 5386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 2 - - uid: 5387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 2 - - uid: 5388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 2 - - uid: 5389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,20.5 - parent: 2 - - uid: 5390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,19.5 - parent: 2 - - uid: 5391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,18.5 - parent: 2 - - uid: 5392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,17.5 - parent: 2 - - uid: 5393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,16.5 - parent: 2 - - uid: 5394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 2 - - uid: 5395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,14.5 - parent: 2 - - uid: 5396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 2 - - uid: 5397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 2 - - uid: 5398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,13.5 - parent: 2 - - uid: 5399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,12.5 - parent: 2 - - uid: 5400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,11.5 - parent: 2 - - uid: 5401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 2 - - uid: 5402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,9.5 - parent: 2 - - uid: 5403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,8.5 - parent: 2 - - uid: 5404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,7.5 - parent: 2 - - uid: 5405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 2 - - uid: 5406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,6.5 - parent: 2 - - uid: 5407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 2 - - uid: 5408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 2 - - uid: 5409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 2 - - uid: 5410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,4.5 - parent: 2 - - uid: 5411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,5.5 - parent: 2 - - uid: 5412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,6.5 - parent: 2 - - uid: 5413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,7.5 - parent: 2 - - uid: 5414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,8.5 - parent: 2 - - uid: 5416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,10.5 - parent: 2 - - uid: 5417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,11.5 - parent: 2 - - uid: 5418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,11.5 - parent: 2 - - uid: 5419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,11.5 - parent: 2 - - uid: 5420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,12.5 - parent: 2 - - uid: 5421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,13.5 - parent: 2 - - uid: 5422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,14.5 - parent: 2 - - uid: 5423 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,15.5 - parent: 2 - - uid: 5424 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,15.5 - parent: 2 - - uid: 5425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,15.5 - parent: 2 - - uid: 5426 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,15.5 - parent: 2 - - uid: 5427 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 2 - - uid: 5428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 2 - - uid: 5429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 2 - - uid: 5430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,18.5 - parent: 2 - - uid: 5431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,18.5 - parent: 2 - - uid: 5432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,18.5 - parent: 2 - - uid: 5433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 2 - - uid: 5434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,18.5 - parent: 2 - - uid: 5435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,20.5 - parent: 2 - - uid: 5436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 2 - - uid: 5437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,22.5 - parent: 2 - - uid: 5438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,23.5 - parent: 2 - - uid: 5439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,24.5 - parent: 2 - - uid: 5440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,25.5 - parent: 2 - - uid: 5441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,26.5 - parent: 2 - - uid: 5442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,27.5 - parent: 2 - - uid: 5443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,27.5 - parent: 2 - - uid: 5444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,27.5 - parent: 2 - - uid: 5445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,27.5 - parent: 2 - - uid: 5446 - components: - - type: Transform - pos: 27.5,29.5 - parent: 2 - - uid: 5447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,29.5 - parent: 2 - - uid: 5448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,29.5 - parent: 2 - - uid: 5449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,29.5 - parent: 2 - - uid: 5450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 2 - - uid: 5451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,29.5 - parent: 2 - - uid: 5452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,29.5 - parent: 2 - - uid: 5453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,29.5 - parent: 2 - - uid: 5454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,29.5 - parent: 2 - - uid: 5455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,29.5 - parent: 2 - - uid: 5456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,29.5 - parent: 2 - - uid: 5457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,29.5 - parent: 2 - - uid: 5458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 2 - - uid: 5459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,29.5 - parent: 2 - - uid: 5460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,29.5 - parent: 2 - - uid: 5461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 - parent: 2 - - uid: 5462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,29.5 - parent: 2 - - uid: 5463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,29.5 - parent: 2 - - uid: 5464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,29.5 - parent: 2 - - uid: 5465 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,29.5 - parent: 2 - - uid: 5466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,29.5 - parent: 2 - - uid: 5467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 2 - - uid: 5468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,29.5 - parent: 2 - - uid: 5469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,28.5 - parent: 2 - - uid: 5470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,27.5 - parent: 2 - - uid: 5471 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,28.5 - parent: 2 - - uid: 5472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 - parent: 2 - - uid: 5473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 2 - - uid: 5474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-41.5 - parent: 2 - - uid: 5475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 2 - - uid: 5476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-33.5 - parent: 2 - - uid: 5477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-33.5 - parent: 2 - - uid: 5478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-33.5 - parent: 2 - - uid: 5479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 - - uid: 5480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 2 - - uid: 5481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 2 - - uid: 5482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 2 - - uid: 5483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 2 - - uid: 5484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 2 - - uid: 5485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 - parent: 2 - - uid: 5486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 - parent: 2 - - uid: 5487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 - parent: 2 - - uid: 5488 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-30.5 - parent: 2 - - uid: 5489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 2 - - uid: 5490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-29.5 - parent: 2 - - uid: 5491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-27.5 - parent: 2 - - uid: 5492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 2 - - uid: 5493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-34.5 - parent: 2 - - uid: 5494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 - parent: 2 - - uid: 5495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-34.5 - parent: 2 - - uid: 5496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-35.5 - parent: 2 - - uid: 5497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 2 - - uid: 5498 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-37.5 - parent: 2 - - uid: 5499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-38.5 - parent: 2 - - uid: 5500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 - parent: 2 - - uid: 5501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-40.5 - parent: 2 - - uid: 5502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-41.5 - parent: 2 - - uid: 5503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 - parent: 2 - - uid: 5504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-43.5 - parent: 2 - - uid: 5505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-44.5 - parent: 2 - - uid: 5506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-45.5 - parent: 2 - - uid: 5507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-46.5 - parent: 2 - - uid: 5508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 - parent: 2 - - uid: 5509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 - parent: 2 - - uid: 5510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-44.5 - parent: 2 - - uid: 5511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-44.5 - parent: 2 - - uid: 5512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-44.5 - parent: 2 - - uid: 5513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-35.5 - parent: 2 - - uid: 5514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 2 - - uid: 5515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-32.5 - parent: 2 - - uid: 5516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 2 - - uid: 5517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 - parent: 2 - - uid: 5518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 2 - - uid: 5519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-31.5 - parent: 2 - - uid: 5520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-30.5 - parent: 2 - - uid: 5521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 2 - - uid: 5522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 2 - - uid: 5523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 2 - - uid: 5524 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 2 - - uid: 5525 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 2 - - uid: 5526 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 2 - - uid: 5527 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 2 - - uid: 5528 - components: - - type: Transform - pos: 42.5,-3.5 - parent: 2 - - uid: 5529 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 2 - - uid: 5530 - components: - - type: Transform - pos: 42.5,-11.5 - parent: 2 - - uid: 5531 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 2 - - uid: 5532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 2 - - uid: 5533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-21.5 - parent: 2 - - uid: 5534 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - - uid: 5535 - components: - - type: Transform - pos: -46.5,44.5 - parent: 2 - - uid: 5536 - components: - - type: Transform - pos: 17.5,-16.5 - parent: 2 - - uid: 5537 - components: - - type: Transform - pos: 17.5,-17.5 - parent: 2 - - uid: 5538 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 5539 - components: - - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 5540 - components: - - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 5541 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 5542 - components: - - type: Transform - pos: 5.5,4.5 - parent: 2 - - uid: 5543 - components: - - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 5544 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 5545 - components: - - type: Transform - pos: 8.5,4.5 - parent: 2 - - uid: 5546 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 2 - - uid: 5547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,23.5 - parent: 2 - - uid: 5548 - components: - - type: Transform - pos: -36.5,3.5 - parent: 2 - - uid: 5549 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 2 - - uid: 5550 - components: - - type: Transform - pos: -27.5,18.5 - parent: 2 - - uid: 5551 - components: - - type: Transform - pos: -27.5,19.5 - parent: 2 - - uid: 5552 - components: - - type: Transform - pos: -27.5,20.5 - parent: 2 - - uid: 5553 - components: - - type: Transform - pos: -27.5,21.5 - parent: 2 - - uid: 5554 - components: - - type: Transform - pos: -27.5,22.5 - parent: 2 - - uid: 5555 - components: - - type: Transform - pos: -28.5,22.5 - parent: 2 - - uid: 5556 - components: - - type: Transform - pos: -29.5,22.5 - parent: 2 - - uid: 5557 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 2 - - uid: 5558 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 2 - - uid: 5559 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 2 - - uid: 5560 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 2 - - uid: 5561 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 5562 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 5563 - components: - - type: Transform - pos: -32.5,-2.5 - parent: 2 - - uid: 5564 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - - uid: 5565 - components: - - type: Transform - pos: -30.5,-2.5 - parent: 2 - - uid: 5566 - components: - - type: Transform - pos: -29.5,-2.5 - parent: 2 - - uid: 5567 - components: - - type: Transform - pos: -28.5,-2.5 - parent: 2 - - uid: 5568 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 2 - - uid: 5569 - components: - - type: Transform - pos: -27.5,-1.5 - parent: 2 - - uid: 5570 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 2 - - uid: 5571 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 2 - - uid: 5572 - components: - - type: Transform - pos: -20.5,-19.5 - parent: 2 - - uid: 5573 - components: - - type: Transform - pos: 1.5,-19.5 - parent: 2 - - uid: 5574 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 2 - - uid: 5575 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 2 - - uid: 5576 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 2 - - uid: 5577 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 2 - - uid: 5578 - components: - - type: Transform - pos: 4.5,-20.5 - parent: 2 - - uid: 5579 - components: - - type: Transform - pos: -27.5,-27.5 - parent: 2 - - uid: 5580 - components: - - type: Transform - pos: -20.5,-18.5 - parent: 2 - - uid: 5581 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 2 - - uid: 5582 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 2 - - uid: 5583 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 2 - - uid: 5584 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 2 - - uid: 5585 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 2 - - uid: 5586 - components: - - type: Transform - pos: 3.5,-20.5 - parent: 2 - - uid: 5587 - components: - - type: Transform - pos: -41.5,-20.5 - parent: 2 - - uid: 5588 - components: - - type: Transform - pos: -40.5,-20.5 - parent: 2 - - uid: 5589 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 2 - - uid: 5590 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 2 - - uid: 5591 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 2 - - uid: 5592 - components: - - type: Transform - pos: 1.5,-13.5 - parent: 2 - - uid: 5593 - components: - - type: Transform - pos: -52.5,11.5 - parent: 2 - - uid: 5594 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 2 - - uid: 5595 - components: - - type: Transform - pos: 0.5,-13.5 - parent: 2 - - uid: 5596 - components: - - type: Transform - pos: 1.5,-14.5 - parent: 2 - - uid: 5597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,22.5 - parent: 2 - - uid: 5598 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 2 - - uid: 5599 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 - - uid: 5600 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 2 - - uid: 5601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 2 - - uid: 5602 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - - uid: 5603 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 2 - - uid: 5604 - components: - - type: Transform - pos: -42.5,-20.5 - parent: 2 - - uid: 5605 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - - uid: 5606 - components: - - type: Transform - pos: 6.5,-20.5 - parent: 2 - - uid: 5607 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 2 - - uid: 5608 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - - uid: 5609 - components: - - type: Transform - pos: -28.5,-20.5 - parent: 2 - - uid: 5610 - components: - - type: Transform - pos: -39.5,-20.5 - parent: 2 - - uid: 5611 - components: - - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 5612 - components: - - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 5613 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 2 - - uid: 5614 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 2 - - uid: 5615 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 2 - - uid: 5616 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - - uid: 5617 - components: - - type: Transform - pos: -31.5,-20.5 - parent: 2 - - uid: 5618 - components: - - type: Transform - pos: -30.5,-20.5 - parent: 2 - - uid: 5619 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 2 - - uid: 5620 - components: - - type: Transform - pos: 2.5,-10.5 - parent: 2 - - uid: 5621 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 2 - - uid: 5622 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 2 - - uid: 5623 - components: - - type: Transform - pos: 7.5,-38.5 - parent: 2 - - uid: 5624 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 5625 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 5626 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - - uid: 5627 - components: - - type: Transform - pos: -35.5,2.5 - parent: 2 - - uid: 5628 - components: - - type: Transform - pos: -35.5,1.5 - parent: 2 - - uid: 5629 - components: - - type: Transform - pos: -35.5,0.5 - parent: 2 - - uid: 5630 - components: - - type: Transform - pos: -35.5,-0.5 - parent: 2 - - uid: 5631 - components: - - type: Transform - pos: -35.5,-1.5 - parent: 2 - - uid: 5632 - components: - - type: Transform - pos: -35.5,-2.5 - parent: 2 - - uid: 5633 - components: - - type: Transform - pos: -25.5,-27.5 - parent: 2 - - uid: 5634 - components: - - type: Transform - pos: 0.5,25.5 - parent: 2 - - uid: 5635 - components: - - type: Transform - pos: -0.5,25.5 - parent: 2 - - uid: 5636 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 2 - - uid: 5637 - components: - - type: Transform - pos: 18.5,-9.5 - parent: 2 - - uid: 5638 - components: - - type: Transform - pos: 19.5,-9.5 - parent: 2 - - uid: 5639 - components: - - type: Transform - pos: 20.5,-9.5 - parent: 2 - - uid: 5640 - components: - - type: Transform - pos: 21.5,-9.5 - parent: 2 - - uid: 5641 - components: - - type: Transform - pos: 17.5,-9.5 - parent: 2 - - uid: 5642 - components: - - type: Transform - pos: 2.5,-38.5 - parent: 2 - - uid: 5643 - components: - - type: Transform - pos: -53.5,11.5 - parent: 2 - - uid: 5644 - components: - - type: Transform - pos: -52.5,13.5 - parent: 2 - - uid: 5645 - components: - - type: Transform - pos: -53.5,13.5 - parent: 2 - - uid: 5646 - components: - - type: Transform - pos: -52.5,19.5 - parent: 2 - - uid: 5647 - components: - - type: Transform - pos: -53.5,19.5 - parent: 2 - - uid: 5648 - components: - - type: Transform - pos: -52.5,21.5 - parent: 2 - - uid: 5649 - components: - - type: Transform - pos: -53.5,21.5 - parent: 2 - - uid: 5650 - components: - - type: Transform - pos: -28.5,-27.5 - parent: 2 - - uid: 5651 - components: - - type: Transform - pos: -26.5,-27.5 - parent: 2 - - uid: 5652 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - - uid: 5653 - components: - - type: Transform - pos: 10.5,30.5 - parent: 2 - - uid: 5654 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 2 - - uid: 5655 - components: - - type: Transform - pos: 42.5,-17.5 - parent: 2 - - uid: 5656 - components: - - type: Transform - pos: 42.5,-19.5 - parent: 2 - - uid: 5657 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - - uid: 5658 - components: - - type: Transform - pos: -46.5,1.5 - parent: 2 - - uid: 5659 - components: - - type: Transform - pos: -46.5,0.5 - parent: 2 - - uid: 5660 - components: - - type: Transform - pos: 17.5,20.5 - parent: 2 - - uid: 5661 - components: - - type: Transform - pos: -15.5,-48.5 - parent: 2 - - uid: 5662 - components: - - type: Transform - pos: -15.5,-49.5 - parent: 2 - - uid: 5663 - components: - - type: Transform - pos: -21.5,-46.5 - parent: 2 - - uid: 5664 - components: - - type: Transform - pos: 23.5,-20.5 - parent: 2 - - uid: 5665 - components: - - type: Transform - pos: 24.5,-20.5 - parent: 2 - - uid: 5666 - components: - - type: Transform - pos: 25.5,-20.5 - parent: 2 - - uid: 5667 - components: - - type: Transform - pos: 25.5,-21.5 - parent: 2 - - uid: 5668 - components: - - type: Transform - pos: 25.5,-22.5 - parent: 2 - - uid: 5669 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - - uid: 5670 - components: - - type: Transform - pos: 25.5,-18.5 - parent: 2 - - uid: 5671 - components: - - type: Transform - pos: 9.5,-37.5 - parent: 2 - - uid: 5672 - components: - - type: Transform - pos: 10.5,-45.5 - parent: 2 - - uid: 5673 - components: - - type: Transform - pos: 10.5,-46.5 - parent: 2 - - uid: 5674 - components: - - type: Transform - pos: 11.5,-45.5 - parent: 2 - - uid: 5675 - components: - - type: Transform - pos: 11.5,-46.5 - parent: 2 - - uid: 5676 - components: - - type: Transform - pos: 12.5,-46.5 - parent: 2 - - uid: 5677 - components: - - type: Transform - pos: 13.5,-46.5 - parent: 2 - - uid: 5678 - components: - - type: Transform - pos: 14.5,-46.5 - parent: 2 - - uid: 5679 - components: - - type: Transform - pos: 15.5,-46.5 - parent: 2 - - uid: 5680 - components: - - type: Transform - pos: 16.5,-46.5 - parent: 2 - - uid: 5681 - components: - - type: Transform - pos: 17.5,-46.5 - parent: 2 - - uid: 5682 - components: - - type: Transform - pos: 18.5,-46.5 - parent: 2 - - uid: 5683 - components: - - type: Transform - pos: 19.5,-46.5 - parent: 2 - - uid: 5684 - components: - - type: Transform - pos: 9.5,-38.5 - parent: 2 - - uid: 5685 - components: - - type: Transform - pos: 10.5,-36.5 - parent: 2 - - uid: 5686 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - - uid: 5687 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 2 - - uid: 5688 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - uid: 5689 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 2 - - uid: 5690 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 2 - - uid: 5691 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 2 - - uid: 5693 - components: - - type: Transform - pos: -22.5,-46.5 - parent: 2 - - uid: 5694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-39.5 - parent: 2 - - uid: 5697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-53.5 - parent: 2 - - uid: 5698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-38.5 - parent: 2 - - uid: 5699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-42.5 - parent: 2 - - uid: 5700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-53.5 - parent: 2 - - uid: 5701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-53.5 - parent: 2 - - uid: 5704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-51.5 - parent: 2 - - uid: 5705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-49.5 - parent: 2 - - uid: 5706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-47.5 - parent: 2 - - uid: 5707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-45.5 - parent: 2 - - uid: 5708 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 2 - - uid: 5709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 2 - - uid: 5711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-51.5 - parent: 2 - - uid: 5712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-51.5 - parent: 2 - - uid: 5713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-51.5 - parent: 2 - - uid: 5715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-49.5 - parent: 2 - - uid: 5716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-48.5 - parent: 2 - - uid: 5717 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 2 - - uid: 5718 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 2 - - uid: 5719 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 2 - - uid: 5720 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 2 - - uid: 5721 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 2 - - uid: 5722 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 2 - - uid: 5723 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - - uid: 5724 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - - uid: 5725 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 2 - - uid: 5726 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 2 - - uid: 5727 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 2 - - uid: 5728 - components: - - type: Transform - pos: -9.5,-48.5 - parent: 2 - - uid: 5729 - components: - - type: Transform - pos: -9.5,-49.5 - parent: 2 - - uid: 7165 - components: - - type: Transform - pos: -30.5,22.5 - parent: 2 - - uid: 9529 - components: - - type: Transform - pos: -32.5,22.5 - parent: 2 - - uid: 11787 - components: - - type: Transform - pos: -31.5,22.5 - parent: 2 - - uid: 12810 - components: - - type: Transform - pos: 23.5,-46.5 - parent: 2 - - uid: 12814 - components: - - type: Transform - pos: 22.5,-46.5 - parent: 2 - - uid: 13118 - components: - - type: Transform - pos: 21.5,-46.5 - parent: 2 - - uid: 17432 - components: - - type: Transform - pos: 20.5,-46.5 - parent: 2 - - uid: 17433 - components: - - type: Transform - pos: 20.5,-47.5 - parent: 2 - - uid: 17434 - components: - - type: Transform - pos: 20.5,-48.5 - parent: 2 -- proto: CellRechargerCircuitboard - entities: - - uid: 5730 - components: - - type: Transform - pos: -10.3003845,-26.329548 - parent: 2 -- proto: Chair - entities: - - uid: 5731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,4.5 - parent: 2 - - uid: 5732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 2 - - uid: 5733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,4.5 - parent: 2 - - uid: 5734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 2 - - uid: 5735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 2 - - uid: 5736 - components: - - type: Transform - pos: -21.5,-2.5 - parent: 2 - - uid: 5737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,4.5 - parent: 2 - - uid: 5738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,3.5 - parent: 2 - - uid: 5739 - components: - - type: Transform - pos: -29.5,-4.5 - parent: 2 - - uid: 5740 - components: - - type: Transform - pos: -22.5,-2.5 - parent: 2 - - uid: 5741 - components: - - type: Transform - pos: -23.5,-2.5 - parent: 2 - - uid: 5742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 2 - - uid: 5743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-13.5 - parent: 2 - - uid: 5744 - components: - - type: Transform - pos: 36.5,-18.5 - parent: 2 - - uid: 5745 - components: - - type: Transform - pos: 31.5,-18.5 - parent: 2 - - uid: 5746 - components: - - type: Transform - pos: 31.5,-18.5 - parent: 2 - - uid: 5747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-2.5 - parent: 2 - - uid: 5748 - components: - - type: Transform - pos: -10.5,-39.5 - parent: 2 - - uid: 5749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 - parent: 2 - - uid: 5750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-4.5 - parent: 2 - - uid: 5751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-4.5 - parent: 2 - - uid: 5752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-2.5 - parent: 2 - - uid: 5753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-1.5 - parent: 2 - - uid: 5754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-0.5 - parent: 2 - - uid: 5755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-3.5 - parent: 2 - - uid: 5756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 2 - - uid: 5757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,40.5 - parent: 2 - - uid: 5758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 2 - - uid: 5759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,5.5 - parent: 2 - - uid: 5760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-22.5 - parent: 2 - - uid: 5761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-22.5 - parent: 2 - - uid: 5762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,3.5 - parent: 2 - - uid: 5763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,3.5 - parent: 2 - - uid: 5764 - components: - - type: Transform - pos: 31.5,13.5 - parent: 2 - - uid: 5765 - components: - - type: Transform - pos: 32.5,13.5 - parent: 2 - - uid: 5766 - components: - - type: Transform - pos: 36.5,13.5 - parent: 2 - - uid: 5767 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 - - uid: 5768 - components: - - type: Transform - pos: -21.5,43.5 - parent: 2 - - uid: 5769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,39.5 - parent: 2 - - uid: 5770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,39.5 - parent: 2 - - uid: 5771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,39.5 - parent: 2 - - uid: 5772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,39.5 - parent: 2 - - uid: 5773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,13.5 - parent: 2 - - uid: 5774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,12.5 - parent: 2 - - uid: 5775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,11.5 - parent: 2 - - uid: 5776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,10.5 - parent: 2 - - uid: 5777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,21.5 - parent: 2 - - uid: 5778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,22.5 - parent: 2 - - uid: 5779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,23.5 - parent: 2 - - uid: 5780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,20.5 - parent: 2 - - uid: 5781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,9.5 - parent: 2 - - uid: 5782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,19.5 - parent: 2 - - uid: 5783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,39.5 - parent: 2 - - uid: 5784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,39.5 - parent: 2 - - uid: 5785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,38.5 - parent: 2 - - uid: 5786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,38.5 - parent: 2 - - uid: 5787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,38.5 - parent: 2 - - uid: 5788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,38.5 - parent: 2 - - uid: 5789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,38.5 - parent: 2 - - uid: 5790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,38.5 - parent: 2 - - uid: 5791 - components: - - type: Transform - pos: -15.5,-7.5 - parent: 2 - - uid: 5792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 2 - - uid: 5793 - components: - - type: Transform - pos: -37.5,47.5 - parent: 2 - - uid: 5794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - uid: 5795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 2 - - uid: 5796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,49.5 - parent: 2 - - uid: 5797 - components: - - type: Transform - pos: -49.5,50.5 - parent: 2 - - uid: 5798 - components: - - type: Transform - pos: -50.5,50.5 - parent: 2 - - uid: 5799 - components: - - type: Transform - pos: -51.5,50.5 - parent: 2 - - uid: 5800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,48.5 - parent: 2 - - uid: 5801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,47.5 - parent: 2 - - uid: 5802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,47.5 - parent: 2 - - uid: 5803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,48.5 - parent: 2 - - uid: 5804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,49.5 - parent: 2 - - uid: 5805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,46.5 - parent: 2 - - uid: 5806 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,46.5 - parent: 2 - - uid: 5807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,46.5 - parent: 2 - - uid: 5808 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 2 - - uid: 5809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 - parent: 2 - - uid: 5810 - components: - - type: Transform - pos: -58.5,-2.5 - parent: 2 - - uid: 5811 - components: - - type: Transform - pos: -13.5,-15.5 - parent: 2 - - uid: 5812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-19.5 - parent: 2 - - uid: 5813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-19.5 - parent: 2 - - uid: 5814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-21.5 - parent: 2 - - uid: 5815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,0.5 - parent: 2 -- proto: ChairFolding - entities: - - uid: 5415 - components: - - type: Transform - pos: -34.5,16.5 - parent: 2 - - uid: 5816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.415972,-10.23035 - parent: 2 - - uid: 5817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.747646,-13.674477 - parent: 2 - - uid: 5818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 - parent: 2 - - uid: 5819 - components: - - type: Transform - pos: -13.583773,-4.5641017 - parent: 2 - - uid: 5820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.67909,-12.40797 - parent: 2 - - uid: 5821 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.36659,-13.455574 - parent: 2 - - uid: 5824 - components: - - type: Transform - pos: 10.666075,-30.613314 - parent: 2 - - uid: 5825 - components: - - type: Transform - pos: 3.211309,-6.6789384 - parent: 2 - - uid: 5826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.543688,-20.216572 - parent: 2 - - uid: 5827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.728575,-31.144934 - parent: 2 - - uid: 5828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.353575,-32.12478 - parent: 2 - - uid: 5829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 2 - - uid: 5830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.80179,18.20842 - parent: 2 - - uid: 5831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.6138735,28.666597 - parent: 2 - - uid: 5832 - components: - - type: Transform - rot: 0.16572801669570403 rad - pos: -61.542484,-6.996279 - parent: 2 - - uid: 5833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.085514,-8.287038 - parent: 2 - - uid: 5834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.495026,-14.251597 - parent: 2 - - uid: 5835 - components: - - type: Transform - pos: -11.5,-23.5 - parent: 2 - - uid: 5836 - components: - - type: Transform - pos: 15.68679,29.406694 - parent: 2 - - uid: 5837 - components: - - type: Transform - pos: 6.4115915,23.493132 - parent: 2 - - uid: 5838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.557425,21.731491 - parent: 2 - - uid: 12012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.680004,-45.141827 - parent: 2 - - uid: 13712 - components: - - type: Transform - pos: -18.211254,-43.57824 - parent: 2 - - uid: 14359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,5.5 - parent: 2 - - uid: 14713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 2 - - uid: 14714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 2 - - uid: 17468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,10.5 - parent: 2 - - uid: 17469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,10.5 - parent: 2 - - uid: 17470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,9.5 - parent: 2 - - uid: 17471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,6.5 - parent: 2 - - uid: 17472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,5.5 - parent: 2 -- proto: ChairFoldingSpawnFolded - entities: - - uid: 5839 - components: - - type: Transform - pos: 25.525442,5.5289335 - parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 5840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.453184,-4.092387 - parent: 2 - - uid: 5842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.60216,-33.817013 - parent: 2 - - uid: 5843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.595509,-5.7275686 - parent: 2 - - uid: 5844 - components: - - type: Transform - pos: -19.652205,22.521683 - parent: 2 - - uid: 5845 - components: - - type: Transform - pos: -13.658073,21.511776 - parent: 2 - - uid: 5846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,5.5 - parent: 2 - - uid: 5847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.142384,-6.126006 - parent: 2 - - uid: 5848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 2 - - uid: 5849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5383797,-17.353676 - parent: 2 - - uid: 5850 - components: - - type: Transform - pos: 6.9758797,-15.414829 - parent: 2 - - uid: 5851 - components: - - type: Transform - rot: 1.2265667478230338 rad - pos: -36.25269,-6.3051906 - parent: 2 - - uid: 5852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-74.5 - parent: 2 - - uid: 5853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 - parent: 2 - - uid: 5854 - components: - - type: Transform - pos: -12.5,-78.5 - parent: 2 - - uid: 5855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-73.5 - parent: 2 - - uid: 5856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-74.5 - parent: 2 - - uid: 5857 - components: - - type: Transform - pos: -21.5,-78.5 - parent: 2 - - uid: 5858 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-78.5 - parent: 2 - - uid: 5859 - components: - - type: Transform - pos: 18.5,10.5 - parent: 2 - - uid: 5860 - components: - - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 5861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,12.5 - parent: 2 - - uid: 5862 - components: - - type: Transform - pos: 11.5,7.5 - parent: 2 - - uid: 5863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.365059,-7.3702555 - parent: 2 - - uid: 5864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 2 - - uid: 5865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,33.5 - parent: 2 - - uid: 5866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,33.5 - parent: 2 - - uid: 5867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,34.5 - parent: 2 - - uid: 5868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,34.5 - parent: 2 - - uid: 5869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,32.5 - parent: 2 - - uid: 5870 - components: - - type: Transform - pos: 1.5,38.5 - parent: 2 - - uid: 5871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.38911,-5.868959 - parent: 2 - - uid: 5872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,33.5 - parent: 2 - - uid: 5873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 2 - - uid: 5874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.64448,-8.406829 - parent: 2 - - uid: 5875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 2 - - uid: 5877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-50.5 - parent: 2 - - uid: 6174 - components: - - type: Transform - pos: -21.891918,-37.495163 - parent: 2 - - uid: 12586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-22.5 - parent: 2 - - uid: 14151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 2 - - uid: 17667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-38.5 - parent: 2 - - uid: 17854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.182276,-39.227512 - parent: 2 -- proto: ChairOfficeLight - entities: - - uid: 5879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.077522,2.7313628 - parent: 2 - - uid: 5880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.266788,20.770468 - parent: 2 - - uid: 5881 - components: - - type: Transform - pos: -2.6649227,-32.512672 - parent: 2 - - uid: 5882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.200975,-29.84575 - parent: 2 - - uid: 5883 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 2 - - uid: 5884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,26.5 - parent: 2 - - uid: 5885 - components: - - type: Transform - pos: 22.5,25.5 - parent: 2 - - uid: 5886 - components: - - type: Transform - rot: 0.638550877571106 rad - pos: -10.009502,35.599583 - parent: 2 - - uid: 5887 - components: - - type: Transform - pos: -48.5,41.5 - parent: 2 - - uid: 5888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,22.5 - parent: 2 - - uid: 5889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 2 - - uid: 5890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,43.5 - parent: 2 - - uid: 5891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,41.5 - parent: 2 - - uid: 5892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,43.5 - parent: 2 - - uid: 5893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.578865,29.158278 - parent: 2 - - uid: 5894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-39.5 - parent: 2 -- proto: ChairWood - entities: - - uid: 5895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 2 - - uid: 5896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-3.5 - parent: 2 - - uid: 5897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.6117735,-10.606748 - parent: 2 - - uid: 5898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.3305235,-10.335726 - parent: 2 - - uid: 5899 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-3.5 - parent: 2 - - uid: 5900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.679546,9.418754 - parent: 2 - - uid: 5901 - components: - - type: Transform - pos: -20.752462,10.336058 - parent: 2 - - uid: 5902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-3.5 - parent: 2 - - uid: 5903 - components: - - type: Transform - pos: -6.5,23.5 - parent: 2 - - uid: 5904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,22.5 - parent: 2 - - uid: 5905 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,23.5 - parent: 2 - - uid: 5906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,22.5 - parent: 2 - - uid: 5907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 2 - - uid: 5908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 2 - - uid: 5909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 - parent: 2 - - uid: 5910 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-4.5 - parent: 2 - - uid: 5911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 2 - - uid: 5912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,11.5 - parent: 2 - - uid: 5914 - components: - - type: Transform - pos: -33.5,14.5 - parent: 2 - - uid: 5915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,26.5 - parent: 2 - - uid: 5916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,25.5 - parent: 2 - - uid: 5917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 2 - - uid: 5918 - components: - - type: Transform - pos: -1.5,33.5 - parent: 2 - - uid: 5919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 2 - - uid: 5920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,30.5 - parent: 2 - - uid: 5921 - components: - - type: Transform - pos: 1.5,31.5 - parent: 2 - - uid: 5922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,40.5 - parent: 2 - - uid: 5923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,40.5 - parent: 2 - - uid: 5924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,40.5 - parent: 2 - - uid: 5925 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,40.5 - parent: 2 - - uid: 5926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,25.5 - parent: 2 - - uid: 5927 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,27.5 - parent: 2 - - uid: 5928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,26.5 - parent: 2 - - uid: 5929 - components: - - type: Transform - pos: -49.5,28.5 - parent: 2 - - uid: 5930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,25.5 - parent: 2 - - uid: 5931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,26.5 - parent: 2 - - uid: 5932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,27.5 - parent: 2 - - uid: 5933 - components: - - type: Transform - pos: -44.5,26.5 - parent: 2 - - uid: 5934 - components: - - type: Transform - pos: -48.5,28.5 - parent: 2 - - uid: 11517 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-14.5 - parent: 2 - - uid: 11939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,10.5 - parent: 2 -- proto: CheapLighter - entities: - - uid: 5936 - components: - - type: Transform - pos: 15.2492895,28.416422 - parent: 2 -- proto: chem_master - entities: - - uid: 5937 - components: - - type: Transform - pos: -20.5,7.5 - parent: 2 - - uid: 5938 - components: - - type: Transform - pos: -27.5,3.5 - parent: 2 - - uid: 5939 - components: - - type: Transform - pos: 17.5,10.5 - parent: 2 -- proto: ChemDispenser - entities: - - uid: 5935 - components: - - type: Transform - pos: 15.5,13.5 - parent: 2 -- proto: ChemicalPayload - entities: - - uid: 5941 - components: - - type: Transform - pos: 9.617371,21.476503 - parent: 2 -- proto: ChemistryEmptyBottle01 - entities: - - uid: 5942 - components: - - type: Transform - pos: -28.317106,3.867569 - parent: 2 - - uid: 5943 - components: - - type: Transform - pos: -28.192106,3.76333 - parent: 2 -- proto: ChemistryHotplate - entities: - - uid: 5944 - components: - - type: Transform - pos: 16.5,10.5 - parent: 2 -- proto: Cigar - entities: - - uid: 5945 - components: - - type: Transform - pos: -10.435092,-2.2350075 - parent: 2 -- proto: Cigarette - entities: - - uid: 5946 - components: - - type: Transform - pos: -1.2400136,-9.542189 - parent: 2 -- proto: CigaretteSpent - entities: - - uid: 5947 - components: - - type: Transform - pos: -49.604855,-0.48506254 - parent: 2 - - uid: 5948 - components: - - type: Transform - pos: -49.667355,-0.45381254 - parent: 2 - - uid: 5949 - components: - - type: Transform - pos: -49.854855,-0.36006254 - parent: 2 - - uid: 5952 - components: - - type: Transform - pos: -32.787483,14.005925 - parent: 2 - - uid: 5953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.797047,13.286675 - parent: 2 - - uid: 5954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.8962636,-10.230166 - parent: 2 - - uid: 5955 - components: - - type: Transform - pos: -0.2712636,-9.312862 - parent: 2 - - uid: 5956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.2504303,-7.697158 - parent: 2 - - uid: 5957 - components: - - type: Transform - pos: -1.104597,-8.155809 - parent: 2 - - uid: 5958 - components: - - type: Transform - pos: 14.1451235,28.426847 - parent: 2 - - uid: 5959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.551373,28.770836 - parent: 2 -- proto: CigarSpent - entities: - - uid: 5960 - components: - - type: Transform - pos: -49.68298,-0.5319376 - parent: 2 - - uid: 5961 - components: - - type: Transform - pos: -6.1678247,-7.392461 - parent: 2 -- proto: CigPackBlack - entities: - - uid: 5962 - components: - - type: Transform - pos: -13.670089,-38.21763 - parent: 2 -- proto: CigPackBlue - entities: - - uid: 5963 - components: - - type: Transform - pos: 15.7701235,28.416422 - parent: 2 -- proto: CigPackGreen - entities: - - uid: 5964 - components: - - type: Transform - pos: -33.656166,13.587164 - parent: 2 -- proto: CigPackRed - entities: - - uid: 5965 - components: - - type: Transform - pos: -6.2785864,-10.556837 - parent: 2 -- proto: CircuitImprinter - entities: - - uid: 5966 - components: - - type: Transform - pos: -36.5,29.5 - parent: 2 -- proto: CircuitImprinterMachineCircuitboard - entities: - - uid: 5967 - components: - - type: Transform - pos: -14.560801,-29.289936 - parent: 2 -- proto: CleanerDispenser - entities: - - uid: 6245 - components: - - type: Transform - pos: 2.5,10.5 - parent: 2 -- proto: CloningPod - entities: - - uid: 5968 - components: - - type: Transform - pos: 25.5,25.5 - parent: 2 - - type: DeviceLinkSink - links: - - 6138 -- proto: ClosetBombFilled - entities: - - uid: 5970 - components: - - type: Transform - pos: -20.5,-13.5 - parent: 2 - - uid: 5971 - components: - - type: Transform - pos: -49.5,37.5 - parent: 2 - - uid: 5972 - components: - - type: Transform - pos: -45.5,-13.5 - parent: 2 - - uid: 5973 - components: - - type: Transform - pos: -45.5,-12.5 - parent: 2 - - uid: 5974 - components: - - type: Transform - pos: -44.5,-5.5 - parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 5975 - components: - - type: Transform - pos: -21.5,16.5 - parent: 2 - - uid: 5976 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - - uid: 5977 - components: - - type: Transform - pos: -2.5,-12.5 - parent: 2 - - uid: 5978 - components: - - type: Transform - pos: 29.5,29.5 - parent: 2 - - uid: 5979 - components: - - type: Transform - pos: 20.5,-8.5 - parent: 2 - - uid: 5980 - components: - - type: Transform - pos: 21.5,-17.5 - parent: 2 - - uid: 5981 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 2 - - uid: 5982 - components: - - type: Transform - pos: -51.5,17.5 - parent: 2 - - uid: 5983 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 5984 - components: - - type: Transform - pos: -52.5,12.5 - parent: 2 - - uid: 5985 - components: - - type: Transform - pos: 18.211266,-25.5 - parent: 2 - - uid: 5986 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 2 - - uid: 5987 - components: - - type: Transform - pos: 28.5,-21.5 - parent: 2 - - uid: 5988 - components: - - type: Transform - pos: -36.5,-2.5 - parent: 2 - - uid: 5989 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 2 - - uid: 5990 - components: - - type: Transform - pos: 8.5,3.5 - parent: 2 - - uid: 5991 - components: - - type: Transform - pos: -34.5,23.5 - parent: 2 - - uid: 5992 - components: - - type: Transform - pos: 41.5,13.5 - parent: 2 - - uid: 5993 - components: - - type: Transform - pos: 8.5,15.5 - parent: 2 - - uid: 5994 - components: - - type: Transform - pos: -32.5,-25.5 - parent: 2 - - uid: 5995 - components: - - type: Transform - pos: -15.5,-4.5 - parent: 2 - - uid: 5996 - components: - - type: Transform - pos: 9.5,-39.5 - parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 5997 - components: - - type: Transform - pos: -28.5,-22.5 - parent: 2 - - uid: 5998 - components: - - type: Transform - pos: 21.5,-18.5 - parent: 2 - - uid: 5999 - components: - - type: Transform - pos: 7.5,3.5 - parent: 2 - - uid: 6000 - components: - - type: Transform - pos: -51.5,15.5 - parent: 2 - - uid: 6001 - components: - - type: Transform - pos: -15.5,-5.5 - parent: 2 - - uid: 6002 - components: - - type: Transform - pos: 37.5,-2.5 - parent: 2 - - uid: 6003 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 2 - - uid: 6004 - components: - - type: Transform - pos: -35.5,23.5 - parent: 2 - - uid: 6005 - components: - - type: Transform - pos: 41.5,15.5 - parent: 2 - - uid: 6006 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - uid: 6007 - components: - - type: Transform - pos: -30.5,-25.5 - parent: 2 -- proto: ClosetJanitorFilled - entities: - - uid: 6008 - components: - - type: Transform - pos: -0.5,12.5 - parent: 2 - - uid: 6246 - components: - - type: Transform - pos: 22.5,-13.5 - parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 6009 - components: - - type: Transform - pos: 0.5,12.5 - parent: 2 -- proto: ClosetL3ScienceFilled - entities: - - uid: 6010 - components: - - type: Transform - pos: -50.5,34.5 - parent: 2 - - uid: 6011 - components: - - type: Transform - pos: -50.5,35.5 - parent: 2 -- proto: ClosetL3VirologyFilled - entities: - - uid: 6012 - components: - - type: Transform - pos: 25.5,14.5 - parent: 2 - - uid: 6013 - components: - - type: Transform - pos: 25.5,15.5 - parent: 2 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 6014 - components: - - type: Transform - pos: 18.211266,-26.5 - parent: 2 - - uid: 6015 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 2 - - uid: 6016 - components: - - type: Transform - pos: -42.5,-17.5 - parent: 2 - - uid: 6017 - components: - - type: Transform - pos: -35.5,47.5 - parent: 2 - - uid: 6018 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - - uid: 6019 - components: - - type: Transform - pos: 16.5,30.5 - parent: 2 - - uid: 6020 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - uid: 6021 - components: - - type: Transform - pos: 18.5,-19.5 - parent: 2 - - uid: 6022 - components: - - type: Transform - pos: -26.5,21.5 - parent: 2 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6023 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 2 - - uid: 6024 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 2 - - uid: 6025 - components: - - type: Transform - pos: -17.5,-27.5 - parent: 2 - - uid: 6026 - components: - - type: Transform - pos: -17.5,-28.5 - parent: 2 - - uid: 6027 - components: - - type: Transform - pos: -50.5,37.5 - parent: 2 - - uid: 6028 - components: - - type: Transform - pos: -28.5,-28.5 - parent: 2 - - uid: 17648 - components: - - type: Transform - pos: -22.5,-47.5 - parent: 2 - - uid: 17649 - components: - - type: Transform - pos: -21.5,-47.5 - parent: 2 - - uid: 17659 - components: - - type: Transform - pos: -22.5,-40.5 - parent: 2 - - uid: 17660 - components: - - type: Transform - pos: -21.5,-40.5 - parent: 2 - - uid: 17661 - components: - - type: Transform - pos: -20.5,-40.5 - parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 1119 - components: - - type: Transform - pos: -30.5,19.5 - parent: 2 -- proto: ClosetToolFilled - entities: - - uid: 6029 - components: - - type: Transform - pos: -20.5,-12.5 - parent: 2 - - uid: 6030 - components: - - type: Transform - pos: 18.211266,-24.5 - parent: 2 - - uid: 6031 - components: - - type: Transform - pos: -17.5,-34.5 - parent: 2 -- proto: ClosetWallEmergency - entities: - - uid: 6032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,12.5 - parent: 2 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 6033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,45.5 - parent: 2 - - uid: 7155 - components: - - type: Transform - pos: -33.5,21.5 - parent: 2 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 6034 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - - uid: 6035 - components: - - type: Transform - pos: -33.5,8.5 - parent: 2 - - uid: 6036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,46.5 - parent: 2 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 6037 - components: - - type: Transform - pos: -0.5,15.5 - parent: 2 - - uid: 6038 - components: - - type: Transform - pos: 4.5,8.5 - parent: 2 -- proto: ClosetWallOrange - entities: - - uid: 6039 - components: - - type: Transform - pos: 26.5,10.5 - parent: 2 - - uid: 6040 - components: - - type: Transform - pos: 25.5,10.5 - parent: 2 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 6041 - components: - - type: Transform - pos: 29.527794,18.740719 - parent: 2 - - uid: 6042 - components: - - type: Transform - pos: 17.485447,26.751778 - parent: 2 -- proto: ClothingBeltBandolier - entities: - - uid: 6043 - components: - - type: Transform - pos: -44.28039,-6.7017746 - parent: 2 - - uid: 6044 - components: - - type: Transform - pos: -44.72831,-6.409906 - parent: 2 -- proto: ClothingBeltCeremonial - entities: - - uid: 6045 - components: - - type: Transform - pos: 1.4949155,20.411163 - parent: 2 -- proto: ClothingBeltChampion - entities: - - uid: 6046 - components: - - type: Transform - pos: 1.0714827,18.494755 - parent: 2 -- proto: ClothingBeltMartialBlack - entities: - - uid: 6047 - components: - - type: Transform - pos: 30.517687,16.270493 - parent: 2 -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 6048 - components: - - type: Transform - pos: -49.576385,43.535995 - parent: 2 -- proto: ClothingEyesGlasses - entities: - - uid: 6049 - components: - - type: Transform - pos: 23.567316,26.744034 - parent: 2 - - uid: 6050 - components: - - type: Transform - pos: -38.63154,18.250366 - parent: 2 -- proto: ClothingEyesGlassesChemical - entities: - - uid: 6051 - components: - - type: Transform - pos: 16.420506,13.364536 - parent: 2 -- proto: ClothingEyesGlassesOutlawGlasses - entities: - - uid: 6052 - components: - - type: MetaData - name: silly glasses - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.67021,-16.227297 - parent: 2 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 5695 - components: - - type: Transform - pos: -8.356562,-39.588528 - parent: 2 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 6054 - components: - - type: Transform - pos: -40.541256,39.437683 - parent: 2 - - uid: 6055 - components: - - type: Transform - pos: 28.882524,18.45939 - parent: 2 -- proto: ClothingHandsGlovesLeather - entities: - - uid: 6056 - components: - - type: Transform - pos: -63.287838,-6.2306004 - parent: 2 -- proto: ClothingHeadAreopagite - entities: - - uid: 6057 - components: - - type: Transform - pos: -48.492077,26.412785 - parent: 2 -- proto: ClothingHeadCourierFlipped - entities: - - uid: 6058 - components: - - type: Transform - pos: 8.2997675,-4.4767094 - parent: 2 -- proto: ClothingHeadHatBeretCap - entities: - - uid: 6059 - components: - - type: Transform - pos: -10.056755,35.562653 - parent: 2 -- proto: ClothingHeadHatBeretCmo - entities: - - uid: 6060 - components: - - type: Transform - pos: -8.585127,34.42984 - parent: 2 -- proto: ClothingHeadHatBeretEngineering - entities: - - uid: 6061 - components: - - type: Transform - pos: -11.463266,32.41284 - parent: 2 -- proto: ClothingHeadHatBeretHoS - entities: - - uid: 6062 - components: - - type: Transform - pos: -11.463266,34.41682 - parent: 2 -- proto: ClothingHeadHatBeretMysta - entities: - - uid: 6063 - components: - - type: Transform - pos: -11.372104,33.375153 - parent: 2 -- proto: ClothingHeadHatCone - entities: - - uid: 6064 - components: - - type: Transform - pos: -8.767582,-19.624268 - parent: 2 - - uid: 6065 - components: - - type: Transform - pos: -8.288415,-19.624268 - parent: 2 - - uid: 6066 - components: - - type: Transform - pos: -8.496748,-19.290703 - parent: 2 -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 6067 - components: - - type: Transform - pos: -34.621883,32.745262 - parent: 2 -- proto: ClothingHeadHatHopcap - entities: - - uid: 6068 - components: - - type: Transform - pos: -8.5721035,33.414215 - parent: 2 -- proto: ClothingHeadHatJesterAlt - entities: - - uid: 6069 - components: - - type: Transform - pos: -52.468784,47.862778 - parent: 2 -- proto: ClothingHeadHatPaper - entities: - - uid: 6070 - components: - - type: Transform - pos: 4.4031324,-2.8545325 - parent: 2 - - uid: 6071 - components: - - type: Transform - pos: -33.23254,13.700514 - parent: 2 -- proto: ClothingHeadHatSombrero - entities: - - uid: 6072 - components: - - type: Transform - pos: 1.7666821,-2.5246186 - parent: 2 -- proto: ClothingHeadHatWelding - entities: - - uid: 6073 - components: - - type: Transform - pos: 23.457123,-19.327557 - parent: 2 -- proto: ClothingHeadHatWizardFake - entities: - - uid: 6074 - components: - - type: Transform - pos: -48.488728,27.811165 - parent: 2 -- proto: ClothingHeadHelmetAncient - entities: - - uid: 6075 - components: - - type: Transform - pos: -45.559616,65.48788 - parent: 2 -- proto: ClothingHeadHelmetBasic - entities: - - uid: 6076 - components: - - type: Transform - pos: -40.537624,1.7286271 - parent: 2 -- proto: ClothingHeadHelmetTemplar - entities: - - uid: 6077 - components: - - type: Transform - pos: -49.4264,27.869759 - parent: 2 -- proto: ClothingMaskClown - entities: - - uid: 6078 - components: - - type: Transform - pos: -42.499344,1.6973771 - parent: 2 -- proto: ClothingMaskSterile - entities: - - uid: 6079 - components: - - type: Transform - pos: 28.401783,14.799805 - parent: 2 - - uid: 6080 - components: - - type: Transform - pos: 28.577597,16.44043 - parent: 2 -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 6081 - components: - - type: Transform - pos: 9.051177,-32.178223 - parent: 2 -- proto: ClothingOuterApronChef - entities: - - uid: 6083 - components: - - type: Transform - pos: -36.57301,-24.390759 - parent: 2 -- proto: ClothingOuterHardsuitAncientEVA - entities: - - uid: 6084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.028408,61.378693 - parent: 2 -- proto: ClothingOuterWinterMed - entities: - - uid: 6085 - components: - - type: Transform - pos: 17.701422,21.768103 - parent: 2 - - uid: 6086 - components: - - type: Transform - pos: 17.378506,21.51793 - parent: 2 -- proto: ClothingShoesBling - entities: - - uid: 6087 - components: - - type: Transform - pos: -60.347687,-3.4251437 - parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 17666 - components: - - type: Transform - parent: 14172 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17668 - components: - - type: Transform - parent: 14173 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17697 - components: - - type: Transform - parent: 14174 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17701 - components: - - type: Transform - parent: 14175 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17762 - components: - - type: Transform - parent: 14176 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17763 - components: - - type: Transform - parent: 14177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17764 - components: - - type: Transform - parent: 14178 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17765 - components: - - type: Transform - parent: 14179 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesBootsWork - entities: - - uid: 6095 - components: - - type: Transform - pos: -36.84664,17.434761 - parent: 2 -- proto: ClothingShoesGaloshes - entities: - - uid: 6096 - components: - - type: Transform - pos: 0.6865115,9.316086 - parent: 2 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 6097 - components: - - type: Transform - pos: 39.612816,19.54828 - parent: 2 -- proto: ClothingShoesSlippers - entities: - - uid: 6098 - components: - - type: Transform - pos: 19.471035,24.516733 - parent: 2 - - uid: 6099 - components: - - type: Transform - pos: 19.700201,24.339525 - parent: 2 - - uid: 6100 - components: - - type: Transform - pos: 19.346035,24.693937 - parent: 2 -- proto: ClothingUnderSocksCoder - entities: - - uid: 6101 - components: - - type: Transform - pos: 3.2979054,-16.180712 - parent: 2 -- proto: ClothingUniformJumpsuitSuitBrownAlt - entities: - - uid: 6102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.71352,48.250168 - parent: 2 - - uid: 6103 - components: - - type: Transform - pos: -50.49964,46.379307 - parent: 2 -- proto: ClothingUniformMartialGi - entities: - - uid: 6104 - components: - - type: Transform - pos: 30.303776,16.804146 - parent: 2 - - uid: 6105 - components: - - type: Transform - pos: 30.460026,16.564396 - parent: 2 - - uid: 6106 - components: - - type: Transform - pos: 30.616276,16.824993 - parent: 2 -- proto: ClothingUniformMNKGymBra - entities: - - uid: 6107 - components: - - type: Transform - pos: -38.27737,18.636051 - parent: 2 -- proto: ClothingUniformRat - entities: - - uid: 6109 - components: - - type: Transform - pos: -50.45654,26.608307 - parent: 2 -- proto: CombatKnife - entities: - - uid: 6110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.43691832,23.500238 - parent: 2 -- proto: ComfyChair - entities: - - uid: 6111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 - parent: 2 - - uid: 6112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 2 - - uid: 6113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,13.5 - parent: 2 - - uid: 6114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-75.5 - parent: 2 - - uid: 6115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-77.5 - parent: 2 - - uid: 6116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-77.5 - parent: 2 - - uid: 6117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-75.5 - parent: 2 - - uid: 6118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 2 - - uid: 6120 - components: - - type: Transform - pos: 34.5,13.5 - parent: 2 - - uid: 6121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,32.5 - parent: 2 - - uid: 6122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,32.5 - parent: 2 - - uid: 6123 - components: - - type: MetaData - desc: It looks comfy, your honor. - name: your honor's comfy chair - - type: Transform - pos: -23.5,44.5 - parent: 2 - - uid: 6124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,39.5 - parent: 2 - - uid: 6125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,36.5 - parent: 2 - - uid: 6126 - components: - - type: Transform - pos: -31.5,38.5 - parent: 2 - - uid: 6127 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 2 - - uid: 6128 - components: - - type: Transform - pos: 35.5,13.5 - parent: 2 - - uid: 6129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 2 - - uid: 6171 - components: - - type: MetaData - desc: Only the fairest wrench-user may plant their cheeks upon this throne. - name: The throne of the engineering union - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-38.5 - parent: 2 -- proto: CommsComputerCircuitboard - entities: - - uid: 6130 - components: - - type: Transform - pos: -14.633717,-28.65408 - parent: 2 -- proto: ComputerAlert - entities: - - uid: 456 - components: - - type: Transform - pos: -21.5,-36.5 - parent: 2 - - uid: 6131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-51.5 - parent: 2 - - uid: 6132 - components: - - type: Transform - pos: -10.5,44.5 - parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 6133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 11830: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerBroken - entities: - - uid: 6134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-70.5 - parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 6135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 6136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 2 -- proto: ComputerCloningConsole - entities: - - uid: 6138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,24.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 11768: - - MedicalScannerSender: MedicalScannerReceiver - 5968: - - CloningPodSender: CloningPodReceiver -- proto: ComputerComms - entities: - - uid: 6139 - components: - - type: Transform - pos: -9.5,44.5 - parent: 2 - - uid: 6140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,37.5 - parent: 2 -- proto: ComputerCrewMonitoring - entities: - - uid: 6141 - components: - - type: Transform - pos: -21.5,-73.5 - parent: 2 - - uid: 6142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,6.5 - parent: 2 - - uid: 6143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,42.5 - parent: 2 -- proto: ComputerCriminalRecords - entities: - - uid: 6144 - components: - - type: Transform - pos: 28.5,7.5 - parent: 2 - - uid: 6145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,41.5 - parent: 2 - - uid: 6232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-8.5 - parent: 2 -- proto: ComputerId - entities: - - uid: 6146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 2 - - uid: 6147 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 2 - - uid: 6148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,41.5 - parent: 2 - - uid: 6149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 2 - - uid: 6150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 2 - - uid: 6151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,37.5 - parent: 2 - - uid: 6152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 - parent: 2 -- proto: ComputerMassMedia - entities: - - uid: 6153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,20.5 - parent: 2 -- proto: ComputerMedicalRecords - entities: - - uid: 6154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,41.5 - parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 6155 - components: - - type: Transform - pos: -1.5,-21.5 - parent: 2 - - uid: 6156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 2 - - uid: 17650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-39.5 - parent: 2 -- proto: ComputerRadar - entities: - - uid: 6157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,43.5 - parent: 2 - - uid: 12815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-46.5 - parent: 2 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 6159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,40.5 - parent: 2 - - uid: 6160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,42.5 - parent: 2 - - uid: 6161 - components: - - type: Transform - pos: -38.5,29.5 - parent: 2 -- proto: ComputerShuttleCargo - entities: - - uid: 6162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 - parent: 2 -- proto: ComputerShuttleSalvage - entities: - - uid: 6163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-34.5 - parent: 2 -- proto: ComputerSolarControl - entities: - - uid: 6164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-79.5 - parent: 2 - - uid: 6165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-81.5 - parent: 2 - - uid: 6166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,10.5 - parent: 2 - - uid: 6167 - components: - - type: Transform - pos: -41.5,51.5 - parent: 2 - - uid: 6168 - components: - - type: Transform - pos: -0.5,-21.5 - parent: 2 - - uid: 17651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-38.5 - parent: 2 -- proto: ComputerStationRecords - entities: - - uid: 6169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 - parent: 2 - - uid: 6170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-79.5 - parent: 2 - - uid: 6172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,43.5 - parent: 2 - - uid: 6173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,33.5 - parent: 2 - - uid: 9677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 6175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 - parent: 2 - - uid: 6176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,42.5 - parent: 2 - - uid: 6177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,5.5 - parent: 2 - - uid: 8135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 2 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 6178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,41.5 - parent: 2 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 6180 - components: - - type: Transform - pos: -40.5,29.5 - parent: 2 -- proto: ComputerTelevision - entities: - - uid: 6181 - components: - - type: Transform - pos: -10.5,-10.5 - parent: 2 - - uid: 6182 - components: - - type: Transform - pos: -49.5,1.5 - parent: 2 -- proto: ConveyorBelt - entities: - - uid: 6186 - components: - - type: Transform - pos: 15.5,-13.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14707 - - uid: 6187 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14707 - - uid: 6188 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14707 - - uid: 6189 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14707 - - uid: 6190 - components: - - type: Transform - pos: 15.5,-8.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14703 - - uid: 6191 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14703 - - uid: 6192 - components: - - type: Transform - pos: 15.5,-6.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14703 - - uid: 6193 - components: - - type: Transform - pos: 15.5,-5.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14703 - - uid: 6194 - components: - - type: Transform - pos: 15.5,-10.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14707 - - uid: 6195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-31.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-14.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14707 - - uid: 6197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14706 - - uid: 6198 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14706 - - uid: 6199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-22.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14706 - - uid: 6200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,3.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14705 - - uid: 6201 - components: - - type: Transform - pos: 11.5,-25.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-35.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6203 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6204 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6205 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-32.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6207 - components: - - type: Transform - pos: 22.5,-34.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6208 - components: - - type: Transform - pos: 11.5,-17.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6209 - components: - - type: Transform - pos: 22.5,-35.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6210 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6211 - components: - - type: Transform - pos: 11.5,-19.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6212 - components: - - type: Transform - pos: 11.5,-20.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6213 - components: - - type: Transform - pos: 11.5,-21.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-33.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6215 - components: - - type: Transform - pos: 11.5,-24.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14704 - - uid: 6216 - components: - - type: Transform - pos: 22.5,-32.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-34.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13609 - - uid: 6218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-14.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14707 - - uid: 6219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-14.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14707 -- proto: CornSeeds - entities: - - uid: 6220 - components: - - type: Transform - pos: 32.565235,-12.427586 - parent: 2 -- proto: CrateArtifactContainer - entities: - - uid: 6221 - components: - - type: Transform - pos: -52.5,34.5 - parent: 2 - - uid: 13471 - components: - - type: Transform - pos: 17.5,-45.5 - parent: 2 -- proto: CrateChemistryS - entities: - - uid: 6223 - components: - - type: Transform - pos: 19.5,12.5 - parent: 2 -- proto: CrateEmergencyInflatablewall - entities: - - uid: 6224 - components: - - type: Transform - pos: 19.3288,-24.5 - parent: 2 -- proto: CrateEmptySpawner - entities: - - uid: 6225 - components: - - type: Transform - pos: 21.5,-30.5 - parent: 2 - - uid: 6226 - components: - - type: Transform - pos: 14.5,-28.5 - parent: 2 - - uid: 6227 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 2 - - uid: 6228 - components: - - type: Transform - pos: 21.5,-28.5 - parent: 2 - - uid: 6229 - components: - - type: Transform - pos: 11.5,-23.5 - parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 6230 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 2 -- proto: CrateEngineeringSingularityCollector - entities: - - uid: 6183 - components: - - type: Transform - pos: -10.5,-46.5 - parent: 2 - - uid: 6234 - components: - - type: Transform - pos: -10.5,-45.5 - parent: 2 - - uid: 17774 - components: - - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 17775 - components: - - type: Transform - pos: -27.5,-43.5 - parent: 2 - - uid: 17893 - components: - - type: Transform - pos: -27.5,-32.5 - parent: 2 - - uid: 17894 - components: - - type: Transform - pos: -27.5,-33.5 - parent: 2 -- proto: CrateEngineeringSingularityEmitter - entities: - - uid: 6184 - components: - - type: Transform - pos: -11.5,-46.5 - parent: 2 - - uid: 6238 - components: - - type: Transform - pos: -11.5,-45.5 - parent: 2 -- proto: CrateEngineeringSolar - entities: - - uid: 6251 - components: - - type: Transform - pos: 43.5,9.5 - parent: 2 - - uid: 6252 - components: - - type: Transform - pos: -40.5,49.5 - parent: 2 -- proto: CrateEngineeringToolbox - entities: - - uid: 6253 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 2 -- proto: CrateFilledSpawner - entities: - - uid: 6254 - components: - - type: Transform - pos: 15.5,-16.5 - parent: 2 - - uid: 6255 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 2 - - uid: 6256 - components: - - type: Transform - pos: 16.5,-29.5 - parent: 2 - - uid: 6257 - components: - - type: Transform - pos: 18.5,-28.5 - parent: 2 - - uid: 6258 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 2 - - uid: 6259 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 2 -- proto: CrateFreezer - entities: - - uid: 6260 - components: - - type: Transform - pos: 31.5,-12.5 - parent: 2 -- proto: CrateFunBoxing - entities: - - uid: 6261 - components: - - type: Transform - pos: 32.5,16.5 - parent: 2 -- proto: CrateGenericSteel - entities: - - uid: 2921 - components: - - type: Transform - pos: 19.5,-45.5 - parent: 2 - - uid: 6262 - components: - - type: Transform - pos: 14.5,-22.5 - parent: 2 -- proto: CrateHydroponics - entities: - - uid: 6264 - components: - - type: Transform - pos: -17.5,7.5 - parent: 2 -- proto: CrateHydroSecure - entities: - - uid: 6265 - components: - - type: Transform - pos: -21.5,9.5 - parent: 2 -- proto: CrateMaterialGlass - entities: - - uid: 6266 - components: - - type: Transform - pos: 43.5,10.5 - parent: 2 - - uid: 6267 - components: - - type: Transform - pos: -41.5,49.5 - parent: 2 -- proto: CrateMedicalScrubs - entities: - - uid: 6268 - components: - - type: Transform - pos: 19.5,25.5 - parent: 2 -- proto: CrateMedicalSurgery - entities: - - uid: 6269 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateNPCCow - entities: - - uid: 6270 - components: - - type: Transform - pos: -6.5,12.5 - parent: 2 -- proto: CrateNPCHamster - entities: - - uid: 6271 - components: - - type: Transform - pos: -35.5,9.5 - parent: 2 -- proto: CrateScience - entities: - - uid: 6272 - components: - - type: Transform - pos: -42.5,31.5 - parent: 2 -- proto: CrateScienceSecure - entities: - - uid: 6273 - components: - - type: Transform - pos: -40.5,37.5 - parent: 2 -- proto: CrateSecurityNonlethal - entities: - - uid: 6274 - components: - - type: Transform - pos: -25.5,-12.5 - parent: 2 -- proto: CrateSecurityRiot - entities: - - uid: 6275 - components: - - type: Transform - pos: -43.5,-6.5 - parent: 2 -- proto: CrayonWhite - entities: - - uid: 6276 - components: - - type: Transform - pos: 12.680383,-31.937042 - parent: 2 -- proto: CrayonYellow - entities: - - uid: 6277 - components: - - type: Transform - pos: 12.352258,-32.062134 - parent: 2 -- proto: Crematorium - entities: - - uid: 6278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,38.5 - parent: 2 -- proto: CrewMonitoringServer - entities: - - uid: 6279 - components: - - type: Transform - pos: 8.5,17.5 - parent: 2 - - type: SingletonDeviceNetServer - active: False - available: False -- proto: CriminalRecordsComputerCircuitboard - entities: - - uid: 6280 - components: - - type: Transform - pos: -14.342051,-28.424751 - parent: 2 -- proto: CrowbarRed - entities: - - uid: 6281 - components: - - type: Transform - pos: 4.5887365,-10.48069 - parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 7653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,18.5 - parent: 2 - - uid: 7655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,20.5 - parent: 2 - - uid: 7669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 2 - - uid: 9528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,20.5 - parent: 2 -- proto: CryogenicSleepUnitSpawnerPrisoner - entities: - - uid: 17467 - components: - - type: Transform - pos: -54.5,1.5 - parent: 2 -- proto: CryoPod - entities: - - uid: 6282 - components: - - type: Transform - pos: 16.5,21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 6283 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: CyborgEndoskeleton - entities: - - uid: 6284 - components: - - type: Transform - pos: -41.983334,41.682137 - parent: 2 -- proto: d6Dice - entities: - - uid: 6285 - components: - - type: Transform - pos: -36.346603,-12.981798 - parent: 2 -- proto: DefaultStationBeaconAICore - entities: - - uid: 7137 - components: - - type: Transform - pos: -15.5,-76.5 - parent: 2 -- proto: DefaultStationBeaconAME - entities: - - uid: 6108 - components: - - type: Transform - pos: -0.5,-25.5 - parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 9647 - components: - - type: Transform - pos: -41.5,43.5 - parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 11506 - components: - - type: Transform - pos: -41.5,-0.5 - parent: 2 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 12731 - components: - - type: Transform - pos: 34.5,-20.5 - parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 11490 - components: - - type: Transform - pos: -54.5,35.5 - parent: 2 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 7154 - components: - - type: Transform - pos: -2.5,-40.5 - parent: 2 -- proto: DefaultStationBeaconBar - entities: - - uid: 17466 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 2 -- proto: DefaultStationBeaconBotany - entities: - - uid: 11488 - components: - - type: Transform - pos: -18.5,7.5 - parent: 2 -- proto: DefaultStationBeaconBridge - entities: - - uid: 10634 - components: - - type: Transform - pos: -9.5,41.5 - parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 16896 - components: - - type: Transform - pos: -38.5,-14.5 - parent: 2 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 10620 - components: - - type: Transform - pos: 1.5,39.5 - parent: 2 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 14038 - components: - - type: Transform - pos: 17.5,-30.5 - parent: 2 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 12874 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 2 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 7166 - components: - - type: Transform - pos: -3.5,-32.5 - parent: 2 -- proto: DefaultStationBeaconChapel - entities: - - uid: 11492 - components: - - type: Transform - pos: -28.5,29.5 - parent: 2 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 10619 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 10627 - components: - - type: Transform - pos: 9.5,20.5 - parent: 2 -- proto: DefaultStationBeaconCommand - entities: - - uid: 10615 - components: - - type: Transform - pos: -9.5,35.5 - parent: 2 -- proto: DefaultStationBeaconCourtroom - entities: - - uid: 10614 - components: - - type: Transform - pos: -23.5,40.5 - parent: 2 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 10629 - components: - - type: Transform - pos: 16.5,18.5 - parent: 2 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 13469 - components: - - type: Transform - pos: -32.5,19.5 - parent: 2 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 625 - components: - - type: Transform - pos: 27.5,6.5 - parent: 2 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 6119 - components: - - type: Transform - pos: 16.5,-20.5 - parent: 2 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 7300 - components: - - type: Transform - pos: -8.5,-17.5 - parent: 2 -- proto: DefaultStationBeaconEvac - entities: - - uid: 641 - components: - - type: Transform - pos: 40.5,-6.5 - parent: 2 - - uid: 5951 - components: - - type: Transform - pos: -49.5,16.5 - parent: 2 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 11507 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 2 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 13454 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 2 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 10612 - components: - - type: Transform - pos: 19.5,-4.5 - parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 16385 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 10624 - components: - - type: Transform - pos: 0.5,11.5 - parent: 2 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 10560 - components: - - type: Transform - pos: -8.5,12.5 - parent: 2 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 11495 - components: - - type: Transform - pos: -20.5,21.5 - parent: 2 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 16362 - components: - - type: Transform - pos: -47.5,29.5 - parent: 2 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 9645 - components: - - type: Transform - pos: -30.5,2.5 - parent: 2 -- proto: DefaultStationBeaconMedical - entities: - - uid: 10630 - components: - - type: Transform - pos: 15.5,7.5 - parent: 2 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 10633 - components: - - type: Transform - pos: 27.5,21.5 - parent: 2 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 11509 - components: - - type: Transform - pos: -55.5,-9.5 - parent: 2 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 10623 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 10622 - components: - - type: Transform - pos: -48.5,40.5 - parent: 2 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 10375 - components: - - type: Transform - pos: -41.5,40.5 - parent: 2 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 7183 - components: - - type: Transform - pos: 11.5,-33.5 - parent: 2 -- proto: DefaultStationBeaconScience - entities: - - uid: 11489 - components: - - type: Transform - pos: -38.5,27.5 - parent: 2 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 16361 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 2 -- proto: DefaultStationBeaconSingularity - entities: - - uid: 9646 - components: - - type: Transform - pos: -20.5,-39.5 - parent: 2 -- proto: DefaultStationBeaconSolars - entities: - - uid: 9530 - components: - - type: Transform - pos: -41.5,50.5 - parent: 2 - - uid: 10625 - components: - - type: Transform - pos: 44.5,10.5 - parent: 2 -- proto: DefaultStationBeaconSurgery - entities: - - uid: 10621 - components: - - type: Transform - pos: 15.5,24.5 - parent: 2 -- proto: DefaultStationBeaconTheater - entities: - - uid: 11511 - components: - - type: Transform - pos: -36.5,10.5 - parent: 2 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 10631 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 2 -- proto: DefaultStationBeaconVault - entities: - - uid: 11515 - components: - - type: Transform - pos: 0.5,20.5 - parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 11510 - components: - - type: Transform - pos: -37.5,-6.5 - parent: 2 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 6286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,25.5 - parent: 2 - - uid: 6287 - components: - - type: Transform - pos: 23.5,9.5 - parent: 2 - - uid: 6288 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,2.5 - parent: 2 -- proto: DeployableBarrier - entities: - - uid: 6289 - components: - - type: Transform - pos: -31.5,-6.5 - parent: 2 - - uid: 6290 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 2 - - uid: 6291 - components: - - type: Transform - pos: -31.5,-5.5 - parent: 2 -- proto: DeskBell - entities: - - uid: 6292 - components: - - type: Transform - pos: -33.34242,29.657118 - parent: 2 - - type: Anchorable - - uid: 6293 - components: - - type: Transform - pos: -22.62739,-6.2531323 - parent: 2 - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 6294 - components: - - type: Transform - pos: -10.555967,8.660141 - parent: 2 - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 6295 - components: - - type: Transform - pos: 14.373379,9.564 - parent: 2 - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 6296 - components: - - type: Transform - pos: 18.722757,-2.328849 - parent: 2 - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 6297 - components: - - type: Transform - pos: 13.527524,-7.3327374 - parent: 2 - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 6298 - components: - - type: Transform - pos: -9.677367,-16.180046 - parent: 2 - - type: Anchorable - missingComponents: - - Item - - Pullable -- proto: DiceBag - entities: - - uid: 6299 - components: - - type: Transform - pos: -49.01911,27.04921 - parent: 2 -- proto: DiseaseDiagnoser - entities: - - uid: 6300 - components: - - type: Transform - pos: 25.5,12.5 - parent: 2 -- proto: DisgustingSweptSoup - entities: - - uid: 6301 - components: - - type: Transform - pos: -63.024055,-8.147281 - parent: 2 -- proto: DisposalBend - entities: - - uid: 6302 - components: - - type: Transform - pos: 12.5,-12.5 - parent: 2 - - uid: 6303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-12.5 - parent: 2 - - uid: 6304 - components: - - type: Transform - pos: -55.5,1.5 - parent: 2 - - uid: 6305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,0.5 - parent: 2 - - uid: 6306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,1.5 - parent: 2 - - uid: 6307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,3.5 - parent: 2 - - uid: 6308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-0.5 - parent: 2 - - uid: 6309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-14.5 - parent: 2 - - uid: 6310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 2 - - uid: 6311 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,40.5 - parent: 2 - - uid: 6312 - components: - - type: Transform - pos: -14.5,5.5 - parent: 2 - - uid: 6313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,0.5 - parent: 2 - - uid: 6314 - components: - - type: Transform - pos: 13.5,26.5 - parent: 2 - - uid: 6315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 2 - - uid: 6316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 2 - - uid: 6317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 2 - - uid: 6318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 2 - - uid: 6319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 2 - - uid: 6320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-20.5 - parent: 2 - - uid: 6321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 - parent: 2 - - uid: 6322 - components: - - type: Transform - pos: 29.5,-15.5 - parent: 2 - - uid: 6323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-21.5 - parent: 2 - - uid: 6324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-22.5 - parent: 2 - - uid: 6325 - components: - - type: Transform - pos: 39.5,0.5 - parent: 2 - - uid: 6326 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 - parent: 2 - - uid: 6327 - components: - - type: Transform - pos: 33.5,3.5 - parent: 2 - - uid: 6328 - components: - - type: Transform - pos: 25.5,0.5 - parent: 2 - - uid: 6329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 2 - - uid: 6330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 - - uid: 6331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-10.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 2 - - uid: 6333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 2 - - uid: 6334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-18.5 - parent: 2 - - uid: 6335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 2 - - uid: 6336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 2 - - uid: 6337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-33.5 - parent: 2 - - uid: 6338 - components: - - type: Transform - pos: -16.5,-32.5 - parent: 2 - - uid: 6339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-32.5 - parent: 2 - - uid: 6340 - components: - - type: Transform - pos: -16.5,-71.5 - parent: 2 - - uid: 6341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-76.5 - parent: 2 - - uid: 6342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 2 - - uid: 6343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-0.5 - parent: 2 - - uid: 6344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 2 - - uid: 6345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,25.5 - parent: 2 - - uid: 6346 - components: - - type: Transform - pos: -4.5,25.5 - parent: 2 - - uid: 6347 - components: - - type: Transform - pos: -5.5,39.5 - parent: 2 - - uid: 6348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,39.5 - parent: 2 - - uid: 6349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,43.5 - parent: 2 - - uid: 6350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,43.5 - parent: 2 - - uid: 6351 - components: - - type: Transform - pos: -24.5,38.5 - parent: 2 - - uid: 6352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,38.5 - parent: 2 - - uid: 6353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,15.5 - parent: 2 - - uid: 6354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,25.5 - parent: 2 - - uid: 6355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 2 - - uid: 6356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,34.5 - parent: 2 - - uid: 6357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,26.5 - parent: 2 - - uid: 6358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,22.5 - parent: 2 - - uid: 6359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,29.5 - parent: 2 - - uid: 6360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,29.5 - parent: 2 - - uid: 6361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,34.5 - parent: 2 - - uid: 6362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,33.5 - parent: 2 - - uid: 6363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,34.5 - parent: 2 - - uid: 6364 - components: - - type: Transform - pos: -39.5,40.5 - parent: 2 - - uid: 6365 - components: - - type: Transform - pos: 2.5,38.5 - parent: 2 - - uid: 6366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 2 - - uid: 6367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 - parent: 2 - - uid: 6368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-37.5 - parent: 2 - - uid: 12897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 - parent: 2 -- proto: DisposalJunction - entities: - - uid: 6369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,15.5 - parent: 2 - - uid: 6370 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 2 - - uid: 6371 - components: - - type: Transform - pos: 25.5,-16.5 - parent: 2 - - uid: 6372 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 - - uid: 6373 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 6374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 2 - - uid: 6375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-2.5 - parent: 2 - - uid: 6376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 2 - - uid: 6377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 2 - - uid: 6378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-22.5 - parent: 2 - - uid: 6379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-33.5 - parent: 2 - - uid: 6380 - components: - - type: Transform - pos: -16.5,-76.5 - parent: 2 - - uid: 6381 - components: - - type: Transform - pos: -14.5,3.5 - parent: 2 - - uid: 6382 - components: - - type: Transform - pos: -4.5,9.5 - parent: 2 - - uid: 6383 - components: - - type: Transform - pos: -5.5,36.5 - parent: 2 - - uid: 6384 - components: - - type: Transform - pos: -24.5,6.5 - parent: 2 - - uid: 6385 - components: - - type: Transform - pos: -24.5,15.5 - parent: 2 - - uid: 6386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 2 - - uid: 6387 - components: - - type: Transform - pos: -24.5,25.5 - parent: 2 - - uid: 6388 - components: - - type: Transform - pos: -32.5,26.5 - parent: 2 - - uid: 6389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,26.5 - parent: 2 - - uid: 6390 - components: - - type: Transform - pos: -41.5,33.5 - parent: 2 - - uid: 6391 - components: - - type: Transform - pos: -39.5,36.5 - parent: 2 - - uid: 6392 - components: - - type: Transform - pos: -24.5,17.5 - parent: 2 - - uid: 6786 - components: - - type: Transform - pos: -4.5,17.5 - parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 6393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 2 - - uid: 6394 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 2 - - uid: 6395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,0.5 - parent: 2 - - uid: 6396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,0.5 - parent: 2 - - uid: 6397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 2 - - uid: 6398 - components: - - type: Transform - pos: 25.5,-4.5 - parent: 2 - - uid: 6399 - components: - - type: Transform - pos: -5.5,38.5 - parent: 2 - - uid: 6400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 2 - - uid: 6401 - components: - - type: Transform - pos: 12.5,11.5 - parent: 2 - - uid: 6402 - components: - - type: Transform - pos: 12.5,8.5 - parent: 2 - - uid: 6403 - components: - - type: Transform - pos: 25.5,-15.5 - parent: 2 - - uid: 6404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,0.5 - parent: 2 - - uid: 6405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,25.5 - parent: 2 - - uid: 6406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 2 - - uid: 6407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-0.5 - parent: 2 - - uid: 6408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 2 - - uid: 6409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-33.5 - parent: 2 - - uid: 6410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 2 - - uid: 6411 - components: - - type: Transform - pos: -5.5,35.5 - parent: 2 - - uid: 6412 - components: - - type: Transform - pos: -24.5,36.5 - parent: 2 - - uid: 6413 - components: - - type: Transform - pos: -50.5,22.5 - parent: 2 -- proto: DisposalPipe - entities: - - uid: 3026 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,17.5 - parent: 2 - - uid: 3686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,17.5 - parent: 2 - - uid: 3687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,17.5 - parent: 2 - - uid: 3688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,17.5 - parent: 2 - - uid: 3706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 2 - - uid: 6414 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 - - uid: 6415 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - uid: 6416 - components: - - type: Transform - pos: 0.5,2.5 - parent: 2 - - uid: 6417 - components: - - type: Transform - pos: 0.5,3.5 - parent: 2 - - uid: 6418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-12.5 - parent: 2 - - uid: 6419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-13.5 - parent: 2 - - uid: 6420 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-14.5 - parent: 2 - - uid: 6421 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-16.5 - parent: 2 - - uid: 6422 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 - parent: 2 - - uid: 6423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,3.5 - parent: 2 - - uid: 6424 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 2 - - uid: 6425 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 6426 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 6427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 2 - - uid: 6428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 - parent: 2 - - uid: 6429 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 6430 - components: - - type: Transform - pos: -52.5,2.5 - parent: 2 - - uid: 6431 - components: - - type: Transform - pos: -56.5,-0.5 - parent: 2 - - uid: 6432 - components: - - type: Transform - pos: -56.5,-1.5 - parent: 2 - - uid: 6433 - components: - - type: Transform - pos: -56.5,-2.5 - parent: 2 - - uid: 6434 - components: - - type: Transform - pos: -56.5,-3.5 - parent: 2 - - uid: 6435 - components: - - type: Transform - pos: -56.5,-4.5 - parent: 2 - - uid: 6436 - components: - - type: Transform - pos: -56.5,-5.5 - parent: 2 - - uid: 6437 - components: - - type: Transform - pos: -56.5,-6.5 - parent: 2 - - uid: 6438 - components: - - type: Transform - pos: -52.5,1.5 - parent: 2 - - uid: 6439 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-0.5 - parent: 2 - - uid: 6440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-0.5 - parent: 2 - - uid: 6441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,0.5 - parent: 2 - - uid: 6442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,0.5 - parent: 2 - - uid: 6443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-7.5 - parent: 2 - - uid: 6444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-8.5 - parent: 2 - - uid: 6445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-9.5 - parent: 2 - - uid: 6446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-10.5 - parent: 2 - - uid: 6447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-11.5 - parent: 2 - - uid: 6448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-12.5 - parent: 2 - - uid: 6449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-13.5 - parent: 2 - - uid: 6450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-14.5 - parent: 2 - - uid: 6451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 2 - - uid: 6452 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 2 - - uid: 6453 - components: - - type: Transform - pos: -45.5,-9.5 - parent: 2 - - uid: 6454 - components: - - type: Transform - pos: 13.5,22.5 - parent: 2 - - uid: 6455 - components: - - type: Transform - pos: -14.5,4.5 - parent: 2 - - uid: 6456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,6.5 - parent: 2 - - uid: 6457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 2 - - uid: 6458 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 2 - - uid: 6459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 2 - - uid: 6460 - components: - - type: Transform - pos: 17.5,-21.5 - parent: 2 - - uid: 6461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 2 - - uid: 6462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,3.5 - parent: 2 - - uid: 6463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,5.5 - parent: 2 - - uid: 6464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 2 - - uid: 6465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 2 - - uid: 6466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 2 - - uid: 6467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-20.5 - parent: 2 - - uid: 6468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-18.5 - parent: 2 - - uid: 6469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-21.5 - parent: 2 - - uid: 6470 - components: - - type: Transform - pos: 13.5,25.5 - parent: 2 - - uid: 6471 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - uid: 6472 - components: - - type: Transform - pos: 13.5,23.5 - parent: 2 - - uid: 6473 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,21.5 - parent: 2 - - uid: 6474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,20.5 - parent: 2 - - uid: 6475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 2 - - uid: 6476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 2 - - uid: 6477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,17.5 - parent: 2 - - uid: 6478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,16.5 - parent: 2 - - uid: 6479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,20.5 - parent: 2 - - uid: 6480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,19.5 - parent: 2 - - uid: 6481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,18.5 - parent: 2 - - uid: 6482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,17.5 - parent: 2 - - uid: 6483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,16.5 - parent: 2 - - uid: 6484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 2 - - uid: 6485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 2 - - uid: 6486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,15.5 - parent: 2 - - uid: 6487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,15.5 - parent: 2 - - uid: 6488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,15.5 - parent: 2 - - uid: 6489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 2 - - uid: 6490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 2 - - uid: 6491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 2 - - uid: 6492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,15.5 - parent: 2 - - uid: 6493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,14.5 - parent: 2 - - uid: 6494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 2 - - uid: 6495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 2 - - uid: 6496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 2 - - uid: 6497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 2 - - uid: 6498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,11.5 - parent: 2 - - uid: 6499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,8.5 - parent: 2 - - uid: 6500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,8.5 - parent: 2 - - uid: 6501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 2 - - uid: 6502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,8.5 - parent: 2 - - uid: 6503 - components: - - type: Transform - pos: 12.5,7.5 - parent: 2 - - uid: 6504 - components: - - type: Transform - pos: 12.5,6.5 - parent: 2 - - uid: 6505 - components: - - type: Transform - pos: 12.5,5.5 - parent: 2 - - uid: 6506 - components: - - type: Transform - pos: 12.5,4.5 - parent: 2 - - uid: 6507 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 6508 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 6509 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - - uid: 6510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 2 - - uid: 6511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 2 - - uid: 6512 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 6513 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - uid: 6514 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 6515 - components: - - type: Transform - pos: 11.5,-4.5 - parent: 2 - - uid: 6516 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 2 - - uid: 6517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 2 - - uid: 6518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 2 - - uid: 6519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 2 - - uid: 6520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 2 - - uid: 6521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 2 - - uid: 6522 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 2 - - uid: 6523 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 2 - - uid: 6524 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 2 - - uid: 6525 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 2 - - uid: 6526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 2 - - uid: 6527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 2 - - uid: 6528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-20.5 - parent: 2 - - uid: 6529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 2 - - uid: 6530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 2 - - uid: 6531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-20.5 - parent: 2 - - uid: 6532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 2 - - uid: 6533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 2 - - uid: 6534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 2 - - uid: 6535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 2 - - uid: 6536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-18.5 - parent: 2 - - uid: 6537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-17.5 - parent: 2 - - uid: 6538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-15.5 - parent: 2 - - uid: 6539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-15.5 - parent: 2 - - uid: 6540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-15.5 - parent: 2 - - uid: 6541 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 6542 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 2 - - uid: 6543 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 2 - - uid: 6544 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - - uid: 6545 - components: - - type: Transform - pos: 29.5,-20.5 - parent: 2 - - uid: 6546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-21.5 - parent: 2 - - uid: 6547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-21.5 - parent: 2 - - uid: 6548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-21.5 - parent: 2 - - uid: 6549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-21.5 - parent: 2 - - uid: 6550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-21.5 - parent: 2 - - uid: 6551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-21.5 - parent: 2 - - uid: 6552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-21.5 - parent: 2 - - uid: 6553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-20.5 - parent: 2 - - uid: 6554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-19.5 - parent: 2 - - uid: 6555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-18.5 - parent: 2 - - uid: 6556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-17.5 - parent: 2 - - uid: 6557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-16.5 - parent: 2 - - uid: 6558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-15.5 - parent: 2 - - uid: 6559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-14.5 - parent: 2 - - uid: 6560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-13.5 - parent: 2 - - uid: 6561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-12.5 - parent: 2 - - uid: 6562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-11.5 - parent: 2 - - uid: 6563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-10.5 - parent: 2 - - uid: 6564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-9.5 - parent: 2 - - uid: 6565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-8.5 - parent: 2 - - uid: 6566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-7.5 - parent: 2 - - uid: 6567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-6.5 - parent: 2 - - uid: 6568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-5.5 - parent: 2 - - uid: 6569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-4.5 - parent: 2 - - uid: 6570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-3.5 - parent: 2 - - uid: 6571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-2.5 - parent: 2 - - uid: 6572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-1.5 - parent: 2 - - uid: 6573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-0.5 - parent: 2 - - uid: 6574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-21.5 - parent: 2 - - uid: 6575 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-14.5 - parent: 2 - - uid: 6576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-13.5 - parent: 2 - - uid: 6577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-12.5 - parent: 2 - - uid: 6578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-11.5 - parent: 2 - - uid: 6579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-10.5 - parent: 2 - - uid: 6580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-9.5 - parent: 2 - - uid: 6581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-8.5 - parent: 2 - - uid: 6582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 2 - - uid: 6583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-6.5 - parent: 2 - - uid: 6584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-3.5 - parent: 2 - - uid: 6585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-4.5 - parent: 2 - - uid: 6586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 2 - - uid: 6587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 6588 - components: - - type: Transform - pos: 28.5,-3.5 - parent: 2 - - uid: 6589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 - parent: 2 - - uid: 6590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 2 - - uid: 6591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 6592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 2 - - uid: 6593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 - parent: 2 - - uid: 6594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,0.5 - parent: 2 - - uid: 6595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,0.5 - parent: 2 - - uid: 6596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,0.5 - parent: 2 - - uid: 6597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,0.5 - parent: 2 - - uid: 6598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,1.5 - parent: 2 - - uid: 6599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,2.5 - parent: 2 - - uid: 6600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,3.5 - parent: 2 - - uid: 6601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 2 - - uid: 6602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-1.5 - parent: 2 - - uid: 6603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 2 - - uid: 6604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,0.5 - parent: 2 - - uid: 6605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 - - uid: 6606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,0.5 - parent: 2 - - uid: 6607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,0.5 - parent: 2 - - uid: 6608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,0.5 - parent: 2 - - uid: 6609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,0.5 - parent: 2 - - uid: 6610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,0.5 - parent: 2 - - uid: 6611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 2 - - uid: 6612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 2 - - uid: 6613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 2 - - uid: 6614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 - - uid: 6615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 6616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 2 - - uid: 6617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 2 - - uid: 6618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 2 - - uid: 6619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 2 - - uid: 6620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 2 - - uid: 6621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 2 - - uid: 6622 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 2 - - uid: 6623 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 2 - - uid: 6624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 2 - - uid: 6625 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 2 - - uid: 6626 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 2 - - uid: 6627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-5.5 - parent: 2 - - uid: 6628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 6629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-8.5 - parent: 2 - - uid: 6630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-9.5 - parent: 2 - - uid: 6631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - - uid: 6632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 2 - - uid: 6633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-3.5 - parent: 2 - - uid: 6634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 2 - - uid: 6635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-5.5 - parent: 2 - - uid: 6636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 2 - - uid: 6637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 2 - - uid: 6638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 2 - - uid: 6639 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 2 - - uid: 6640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 2 - - uid: 6641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 2 - - uid: 6642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 2 - - uid: 6643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 2 - - uid: 6644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 2 - - uid: 6645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 2 - - uid: 6646 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 2 - - uid: 6647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 2 - - uid: 6648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 2 - - uid: 6649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 2 - - uid: 6650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 2 - - uid: 6651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 2 - - uid: 6652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 2 - - uid: 6653 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 2 - - uid: 6654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 2 - - uid: 6655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 2 - - uid: 6656 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 2 - - uid: 6657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 2 - - uid: 6658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 2 - - uid: 6659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 2 - - uid: 6660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 2 - - uid: 6661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 2 - - uid: 6662 - components: - - type: Transform - pos: -5.5,26.5 - parent: 2 - - uid: 6663 - components: - - type: Transform - pos: -12.5,-15.5 - parent: 2 - - uid: 6664 - components: - - type: Transform - pos: -12.5,-16.5 - parent: 2 - - uid: 6665 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - uid: 6666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 2 - - uid: 6667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 2 - - uid: 6668 - components: - - type: Transform - pos: -6.5,-16.5 - parent: 2 - - uid: 6669 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - uid: 6670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 2 - - uid: 6671 - components: - - type: Transform - pos: -7.5,-19.5 - parent: 2 - - uid: 6672 - components: - - type: Transform - pos: -7.5,-20.5 - parent: 2 - - uid: 6673 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 2 - - uid: 6674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 2 - - uid: 6675 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 2 - - uid: 6676 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 2 - - uid: 6677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 2 - - uid: 6678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-23.5 - parent: 2 - - uid: 6679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 - parent: 2 - - uid: 6680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-25.5 - parent: 2 - - uid: 6681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-26.5 - parent: 2 - - uid: 6682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-27.5 - parent: 2 - - uid: 6683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-28.5 - parent: 2 - - uid: 6684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-29.5 - parent: 2 - - uid: 6685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-30.5 - parent: 2 - - uid: 6686 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-31.5 - parent: 2 - - uid: 6687 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-32.5 - parent: 2 - - uid: 6688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 2 - - uid: 6689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 2 - - uid: 6690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-33.5 - parent: 2 - - uid: 6691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-33.5 - parent: 2 - - uid: 6692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 2 - - uid: 6693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 2 - - uid: 6694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 - - uid: 6695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 - parent: 2 - - uid: 6696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 2 - - uid: 6697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 2 - - uid: 6698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-31.5 - parent: 2 - - uid: 6699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-30.5 - parent: 2 - - uid: 6700 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-29.5 - parent: 2 - - uid: 6701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-28.5 - parent: 2 - - uid: 6702 - components: - - type: Transform - pos: -10.5,-34.5 - parent: 2 - - uid: 6703 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 2 - - uid: 6704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-34.5 - parent: 2 - - uid: 6705 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-35.5 - parent: 2 - - uid: 6706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-36.5 - parent: 2 - - uid: 6707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-72.5 - parent: 2 - - uid: 6708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-73.5 - parent: 2 - - uid: 6709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-74.5 - parent: 2 - - uid: 6710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-75.5 - parent: 2 - - uid: 6711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-77.5 - parent: 2 - - uid: 6712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-76.5 - parent: 2 - - uid: 6713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-76.5 - parent: 2 - - uid: 6714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-78.5 - parent: 2 - - uid: 6715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-79.5 - parent: 2 - - uid: 6716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-80.5 - parent: 2 - - uid: 6717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-81.5 - parent: 2 - - uid: 6718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-82.5 - parent: 2 - - uid: 6719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-83.5 - parent: 2 - - uid: 6720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-84.5 - parent: 2 - - uid: 6721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-85.5 - parent: 2 - - uid: 6722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-86.5 - parent: 2 - - uid: 6723 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 2 - - uid: 6724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-14.5 - parent: 2 - - uid: 6725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-1.5 - parent: 2 - - uid: 6726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-2.5 - parent: 2 - - uid: 6727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-3.5 - parent: 2 - - uid: 6728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-4.5 - parent: 2 - - uid: 6729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-5.5 - parent: 2 - - uid: 6730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-6.5 - parent: 2 - - uid: 6731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-7.5 - parent: 2 - - uid: 6732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-10.5 - parent: 2 - - uid: 6733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 2 - - uid: 6734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 2 - - uid: 6735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 2 - - uid: 6736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 2 - - uid: 6737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 2 - - uid: 6738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 2 - - uid: 6739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 2 - - uid: 6740 - components: - - type: Transform - pos: -33.5,-5.5 - parent: 2 - - uid: 6741 - components: - - type: Transform - pos: -33.5,-6.5 - parent: 2 - - uid: 6742 - components: - - type: Transform - pos: -33.5,-7.5 - parent: 2 - - uid: 6743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 - parent: 2 - - uid: 6744 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 2 - - uid: 6745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 2 - - uid: 6746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 - parent: 2 - - uid: 6747 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 2 - - uid: 6748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 2 - - uid: 6749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-8.5 - parent: 2 - - uid: 6750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 2 - - uid: 6751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 2 - - uid: 6752 - components: - - type: Transform - pos: -14.5,0.5 - parent: 2 - - uid: 6753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,37.5 - parent: 2 - - uid: 6754 - components: - - type: Transform - pos: -14.5,1.5 - parent: 2 - - uid: 6755 - components: - - type: Transform - pos: -14.5,2.5 - parent: 2 - - uid: 6756 - components: - - type: Transform - pos: -4.5,0.5 - parent: 2 - - uid: 6757 - components: - - type: Transform - pos: -4.5,1.5 - parent: 2 - - uid: 6758 - components: - - type: Transform - pos: -4.5,2.5 - parent: 2 - - uid: 6759 - components: - - type: Transform - pos: -4.5,3.5 - parent: 2 - - uid: 6760 - components: - - type: Transform - pos: -4.5,4.5 - parent: 2 - - uid: 6761 - components: - - type: Transform - pos: -4.5,5.5 - parent: 2 - - uid: 6762 - components: - - type: Transform - pos: -4.5,6.5 - parent: 2 - - uid: 6763 - components: - - type: Transform - pos: -4.5,7.5 - parent: 2 - - uid: 6764 - components: - - type: Transform - pos: -4.5,8.5 - parent: 2 - - uid: 6765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,9.5 - parent: 2 - - uid: 6766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,5.5 - parent: 2 - - uid: 6767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,5.5 - parent: 2 - - uid: 6768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 2 - - uid: 6769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 2 - - uid: 6770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,5.5 - parent: 2 - - uid: 6771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,6.5 - parent: 2 - - uid: 6772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,7.5 - parent: 2 - - uid: 6773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,8.5 - parent: 2 - - uid: 6774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,9.5 - parent: 2 - - uid: 6775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,10.5 - parent: 2 - - uid: 6776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 2 - - uid: 6777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,12.5 - parent: 2 - - uid: 6778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,13.5 - parent: 2 - - uid: 6779 - components: - - type: Transform - pos: -4.5,10.5 - parent: 2 - - uid: 6780 - components: - - type: Transform - pos: -4.5,11.5 - parent: 2 - - uid: 6781 - components: - - type: Transform - pos: -4.5,12.5 - parent: 2 - - uid: 6782 - components: - - type: Transform - pos: -4.5,13.5 - parent: 2 - - uid: 6783 - components: - - type: Transform - pos: -4.5,14.5 - parent: 2 - - uid: 6784 - components: - - type: Transform - pos: -4.5,15.5 - parent: 2 - - uid: 6785 - components: - - type: Transform - pos: -4.5,16.5 - parent: 2 - - uid: 6787 - components: - - type: Transform - pos: -4.5,18.5 - parent: 2 - - uid: 6788 - components: - - type: Transform - pos: -4.5,19.5 - parent: 2 - - uid: 6789 - components: - - type: Transform - pos: -4.5,20.5 - parent: 2 - - uid: 6790 - components: - - type: Transform - pos: -4.5,21.5 - parent: 2 - - uid: 6791 - components: - - type: Transform - pos: -4.5,22.5 - parent: 2 - - uid: 6792 - components: - - type: Transform - pos: -4.5,23.5 - parent: 2 - - uid: 6793 - components: - - type: Transform - pos: -4.5,24.5 - parent: 2 - - uid: 6794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,25.5 - parent: 2 - - uid: 6795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,25.5 - parent: 2 - - uid: 6796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,25.5 - parent: 2 - - uid: 6797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,26.5 - parent: 2 - - uid: 6798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,27.5 - parent: 2 - - uid: 6799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,28.5 - parent: 2 - - uid: 6800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,29.5 - parent: 2 - - uid: 6801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,30.5 - parent: 2 - - uid: 6802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,31.5 - parent: 2 - - uid: 6803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,32.5 - parent: 2 - - uid: 6804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,33.5 - parent: 2 - - uid: 6805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,34.5 - parent: 2 - - uid: 6806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,36.5 - parent: 2 - - uid: 6807 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 2 - - uid: 6808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,35.5 - parent: 2 - - uid: 6809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,35.5 - parent: 2 - - uid: 6810 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,35.5 - parent: 2 - - uid: 6811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,40.5 - parent: 2 - - uid: 6812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,41.5 - parent: 2 - - uid: 6813 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,42.5 - parent: 2 - - uid: 6814 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,38.5 - parent: 2 - - uid: 6815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 2 - - uid: 6816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,38.5 - parent: 2 - - uid: 6817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,38.5 - parent: 2 - - uid: 6818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,38.5 - parent: 2 - - uid: 6819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,39.5 - parent: 2 - - uid: 6820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,39.5 - parent: 2 - - uid: 6821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,39.5 - parent: 2 - - uid: 6822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,39.5 - parent: 2 - - uid: 6823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,39.5 - parent: 2 - - uid: 6824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,39.5 - parent: 2 - - uid: 6825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,0.5 - parent: 2 - - uid: 6826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 2 - - uid: 6827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 2 - - uid: 6828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 2 - - uid: 6829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 2 - - uid: 6830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,5.5 - parent: 2 - - uid: 6831 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,7.5 - parent: 2 - - uid: 6832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,8.5 - parent: 2 - - uid: 6833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,9.5 - parent: 2 - - uid: 6834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,10.5 - parent: 2 - - uid: 6835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,11.5 - parent: 2 - - uid: 6836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,12.5 - parent: 2 - - uid: 6837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 2 - - uid: 6838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 2 - - uid: 6839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,16.5 - parent: 2 - - uid: 6840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 2 - - uid: 6841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,19.5 - parent: 2 - - uid: 6842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,20.5 - parent: 2 - - uid: 6843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 2 - - uid: 6844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 2 - - uid: 6845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,24.5 - parent: 2 - - uid: 6846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,26.5 - parent: 2 - - uid: 6847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,27.5 - parent: 2 - - uid: 6848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,28.5 - parent: 2 - - uid: 6849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,29.5 - parent: 2 - - uid: 6850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,30.5 - parent: 2 - - uid: 6851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,31.5 - parent: 2 - - uid: 6852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,32.5 - parent: 2 - - uid: 6853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,33.5 - parent: 2 - - uid: 6854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,34.5 - parent: 2 - - uid: 6855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,35.5 - parent: 2 - - uid: 6856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 2 - - uid: 6857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,38.5 - parent: 2 - - uid: 6858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,37.5 - parent: 2 - - uid: 6859 - components: - - type: Transform - pos: -24.5,21.5 - parent: 2 - - uid: 6860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,15.5 - parent: 2 - - uid: 6861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,15.5 - parent: 2 - - uid: 6862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,15.5 - parent: 2 - - uid: 6863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,15.5 - parent: 2 - - uid: 6864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,15.5 - parent: 2 - - uid: 6865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,15.5 - parent: 2 - - uid: 6866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,15.5 - parent: 2 - - uid: 6867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,15.5 - parent: 2 - - uid: 6868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,15.5 - parent: 2 - - uid: 6869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,15.5 - parent: 2 - - uid: 6870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,15.5 - parent: 2 - - uid: 6871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,15.5 - parent: 2 - - uid: 6872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,15.5 - parent: 2 - - uid: 6873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,14.5 - parent: 2 - - uid: 6874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 2 - - uid: 6875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,15.5 - parent: 2 - - uid: 6876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,15.5 - parent: 2 - - uid: 6877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,15.5 - parent: 2 - - uid: 6878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,15.5 - parent: 2 - - uid: 6879 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,15.5 - parent: 2 - - uid: 6880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,15.5 - parent: 2 - - uid: 6881 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,15.5 - parent: 2 - - uid: 6882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,15.5 - parent: 2 - - uid: 6883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,15.5 - parent: 2 - - uid: 6884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,15.5 - parent: 2 - - uid: 6885 - components: - - type: Transform - pos: -50.5,21.5 - parent: 2 - - uid: 6886 - components: - - type: Transform - pos: -50.5,20.5 - parent: 2 - - uid: 6887 - components: - - type: Transform - pos: -50.5,19.5 - parent: 2 - - uid: 6888 - components: - - type: Transform - pos: -50.5,18.5 - parent: 2 - - uid: 6889 - components: - - type: Transform - pos: -50.5,17.5 - parent: 2 - - uid: 6890 - components: - - type: Transform - pos: -50.5,16.5 - parent: 2 - - uid: 6891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,25.5 - parent: 2 - - uid: 6892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,25.5 - parent: 2 - - uid: 6893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,25.5 - parent: 2 - - uid: 6894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,25.5 - parent: 2 - - uid: 6895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,25.5 - parent: 2 - - uid: 6896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,25.5 - parent: 2 - - uid: 6897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 2 - - uid: 6898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,6.5 - parent: 2 - - uid: 6899 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,6.5 - parent: 2 - - uid: 6900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,6.5 - parent: 2 - - uid: 6901 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,6.5 - parent: 2 - - uid: 6902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 2 - - uid: 6903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,6.5 - parent: 2 - - uid: 6904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,6.5 - parent: 2 - - uid: 6905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,6.5 - parent: 2 - - uid: 6906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,6.5 - parent: 2 - - uid: 6907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,6.5 - parent: 2 - - uid: 6908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,6.5 - parent: 2 - - uid: 6909 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,6.5 - parent: 2 - - uid: 6910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,6.5 - parent: 2 - - uid: 6911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,6.5 - parent: 2 - - uid: 6912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,6.5 - parent: 2 - - uid: 6913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,6.5 - parent: 2 - - uid: 6914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,6.5 - parent: 2 - - uid: 6915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,6.5 - parent: 2 - - uid: 6916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,6.5 - parent: 2 - - uid: 6917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,6.5 - parent: 2 - - uid: 6918 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,6.5 - parent: 2 - - uid: 6919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,6.5 - parent: 2 - - uid: 6920 - components: - - type: Transform - pos: -32.5,27.5 - parent: 2 - - uid: 6921 - components: - - type: Transform - pos: -32.5,28.5 - parent: 2 - - uid: 6922 - components: - - type: Transform - pos: -32.5,29.5 - parent: 2 - - uid: 6923 - components: - - type: Transform - pos: -32.5,30.5 - parent: 2 - - uid: 6924 - components: - - type: Transform - pos: -32.5,31.5 - parent: 2 - - uid: 6925 - components: - - type: Transform - pos: -32.5,32.5 - parent: 2 - - uid: 6926 - components: - - type: Transform - pos: -32.5,33.5 - parent: 2 - - uid: 6927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,26.5 - parent: 2 - - uid: 6928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,26.5 - parent: 2 - - uid: 6929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,26.5 - parent: 2 - - uid: 6930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,26.5 - parent: 2 - - uid: 6931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,26.5 - parent: 2 - - uid: 6932 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,26.5 - parent: 2 - - uid: 6933 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,26.5 - parent: 2 - - uid: 6934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,22.5 - parent: 2 - - uid: 6935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,22.5 - parent: 2 - - uid: 6936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,22.5 - parent: 2 - - uid: 6937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,28.5 - parent: 2 - - uid: 6938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,27.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,26.5 - parent: 2 - - uid: 6940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,25.5 - parent: 2 - - uid: 6941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,24.5 - parent: 2 - - uid: 6942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,23.5 - parent: 2 - - uid: 6943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,29.5 - parent: 2 - - uid: 6944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,27.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,28.5 - parent: 2 - - uid: 6946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,29.5 - parent: 2 - - uid: 6947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,30.5 - parent: 2 - - uid: 6948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,31.5 - parent: 2 - - uid: 6949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,32.5 - parent: 2 - - uid: 6950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,33.5 - parent: 2 - - uid: 6951 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,33.5 - parent: 2 - - uid: 6952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,33.5 - parent: 2 - - uid: 6953 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,33.5 - parent: 2 - - uid: 6954 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,33.5 - parent: 2 - - uid: 6955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,33.5 - parent: 2 - - uid: 6956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,33.5 - parent: 2 - - uid: 6957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,33.5 - parent: 2 - - uid: 6958 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,33.5 - parent: 2 - - uid: 6959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,33.5 - parent: 2 - - uid: 6960 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,33.5 - parent: 2 - - uid: 6961 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,33.5 - parent: 2 - - uid: 6962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,33.5 - parent: 2 - - uid: 6963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,33.5 - parent: 2 - - uid: 6964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,33.5 - parent: 2 - - uid: 6965 - components: - - type: Transform - pos: -57.5,32.5 - parent: 2 - - uid: 6966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,35.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,34.5 - parent: 2 - - uid: 6968 - components: - - type: Transform - pos: -39.5,37.5 - parent: 2 - - uid: 6969 - components: - - type: Transform - pos: -39.5,38.5 - parent: 2 - - uid: 6970 - components: - - type: Transform - pos: -39.5,39.5 - parent: 2 - - uid: 6971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,40.5 - parent: 2 - - uid: 6972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,40.5 - parent: 2 - - uid: 6973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,40.5 - parent: 2 - - uid: 6974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,40.5 - parent: 2 - - uid: 6975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,36.5 - parent: 2 - - uid: 6976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,36.5 - parent: 2 - - uid: 6977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 2 - - uid: 6978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 2 - - uid: 6979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 2 - - uid: 6980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 2 - - uid: 6981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,38.5 - parent: 2 - - uid: 6982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 2 - - uid: 6984 - components: - - type: Transform - pos: -8.5,-39.5 - parent: 2 - - uid: 13228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 2 -- proto: DisposalTrunk - entities: - - uid: 6985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-22.5 - parent: 2 - - uid: 6986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-10.5 - parent: 2 - - uid: 6987 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - - uid: 6988 - components: - - type: Transform - pos: -56.5,2.5 - parent: 2 - - uid: 6989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-0.5 - parent: 2 - - uid: 6990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-14.5 - parent: 2 - - uid: 6991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-22.5 - parent: 2 - - uid: 6992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,37.5 - parent: 2 - - uid: 6993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,3.5 - parent: 2 - - uid: 6994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 2 - - uid: 6995 - components: - - type: Transform - pos: 23.5,21.5 - parent: 2 - - uid: 6996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - uid: 6997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,8.5 - parent: 2 - - uid: 6998 - components: - - type: Transform - pos: -44.5,41.5 - parent: 2 - - uid: 6999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 2 - - uid: 7000 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 7001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 - - uid: 7002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 2 - - uid: 7003 - components: - - type: Transform - pos: 37.5,1.5 - parent: 2 - - uid: 7004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 2 - - uid: 7005 - components: - - type: Transform - pos: 17.5,1.5 - parent: 2 - - uid: 7006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 - parent: 2 - - uid: 7007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 2 - - uid: 7008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-19.5 - parent: 2 - - uid: 7009 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 7010 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 2 - - uid: 7011 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 2 - - uid: 7012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-36.5 - parent: 2 - - uid: 7013 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-71.5 - parent: 2 - - uid: 7014 - components: - - type: Transform - pos: -19.5,-75.5 - parent: 2 - - uid: 7015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-88.5 - parent: 2 - - uid: 7016 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-15.5 - parent: 2 - - uid: 7017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-11.5 - parent: 2 - - uid: 7018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 2 - - uid: 7019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,9.5 - parent: 2 - - uid: 7020 - components: - - type: Transform - pos: -21.5,14.5 - parent: 2 - - uid: 7021 - components: - - type: Transform - pos: -9.5,27.5 - parent: 2 - - uid: 7022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,36.5 - parent: 2 - - uid: 7023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,35.5 - parent: 2 - - uid: 7024 - components: - - type: Transform - pos: -11.5,44.5 - parent: 2 - - uid: 7025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,37.5 - parent: 2 - - uid: 7026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,13.5 - parent: 2 - - uid: 7027 - components: - - type: Transform - pos: -50.5,23.5 - parent: 2 - - uid: 7028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,5.5 - parent: 2 - - uid: 7029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,34.5 - parent: 2 - - uid: 7030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,25.5 - parent: 2 - - uid: 7031 - components: - - type: Transform - pos: -44.5,30.5 - parent: 2 - - uid: 7032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,31.5 - parent: 2 - - uid: 7033 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 2 - - uid: 7034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,17.5 - parent: 2 - - uid: 7035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,36.5 - parent: 2 - - uid: 7036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 2 - - uid: 7037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-40.5 - parent: 2 - - uid: 14748 - components: - - type: Transform - pos: -11.5,18.5 - parent: 2 - - uid: 17440 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 -- proto: DisposalUnit - entities: - - uid: 7038 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 2 - - uid: 7039 - components: - - type: Transform - pos: -6.5,9.5 - parent: 2 - - uid: 7040 - components: - - type: Transform - pos: -15.5,3.5 - parent: 2 - - uid: 7041 - components: - - type: Transform - pos: -11.5,18.5 - parent: 2 - - uid: 7042 - components: - - type: Transform - pos: -7.5,-2.5 - parent: 2 - - uid: 7043 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 2 - - uid: 7044 - components: - - type: Transform - pos: -9.5,27.5 - parent: 2 - - uid: 7045 - components: - - type: Transform - pos: 28.5,-2.5 - parent: 2 - - uid: 7046 - components: - - type: Transform - pos: 14.5,11.5 - parent: 2 - - uid: 7047 - components: - - type: Transform - pos: -10.5,-36.5 - parent: 2 - - uid: 7048 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 2 - - uid: 7049 - components: - - type: Transform - pos: 24.5,-16.5 - parent: 2 - - uid: 7050 - components: - - type: Transform - pos: -21.5,14.5 - parent: 2 - - uid: 7051 - components: - - type: Transform - pos: -56.5,2.5 - parent: 2 - - uid: 7052 - components: - - type: Transform - pos: -38.5,-6.5 - parent: 2 - - uid: 7053 - components: - - type: Transform - pos: -59.5,-14.5 - parent: 2 - - uid: 7054 - components: - - type: Transform - pos: 23.5,21.5 - parent: 2 - - uid: 7055 - components: - - type: Transform - pos: 17.5,8.5 - parent: 2 - - uid: 7056 - components: - - type: Transform - pos: 12.5,26.5 - parent: 2 - - uid: 7057 - components: - - type: Transform - pos: -17.5,-71.5 - parent: 2 - - uid: 7058 - components: - - type: Transform - pos: -31.5,34.5 - parent: 2 - - uid: 7059 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - - uid: 7060 - components: - - type: Transform - pos: -40.5,36.5 - parent: 2 - - uid: 7061 - components: - - type: Transform - pos: -38.5,25.5 - parent: 2 - - uid: 7062 - components: - - type: Transform - pos: 2.5,37.5 - parent: 2 - - uid: 7063 - components: - - type: Transform - pos: -11.5,44.5 - parent: 2 - - uid: 7064 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 2 - - uid: 7065 - components: - - type: Transform - pos: 30.5,3.5 - parent: 2 - - uid: 7066 - components: - - type: Transform - pos: 37.5,1.5 - parent: 2 - - uid: 7067 - components: - - type: Transform - pos: 40.5,-22.5 - parent: 2 - - uid: 7068 - components: - - type: Transform - pos: -20.5,-27.5 - parent: 2 - - uid: 7069 - components: - - type: Transform - pos: -48.5,5.5 - parent: 2 - - uid: 7070 - components: - - type: Transform - pos: -50.5,23.5 - parent: 2 - - uid: 7071 - components: - - type: Transform - pos: -44.5,30.5 - parent: 2 - - uid: 7072 - components: - - type: Transform - pos: -27.5,37.5 - parent: 2 - - uid: 7073 - components: - - type: Transform - pos: -1.5,35.5 - parent: 2 - - uid: 7074 - components: - - type: Transform - pos: -12.5,36.5 - parent: 2 - - uid: 7075 - components: - - type: Transform - pos: 19.5,-6.5 - parent: 2 - - uid: 7076 - components: - - type: Transform - pos: 17.5,1.5 - parent: 2 - - uid: 7077 - components: - - type: Transform - pos: 31.5,-10.5 - parent: 2 - - uid: 7078 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 7079 - components: - - type: Transform - pos: -10.5,-19.5 - parent: 2 - - uid: 7080 - components: - - type: Transform - pos: -19.5,-75.5 - parent: 2 - - uid: 7081 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - - uid: 7082 - components: - - type: Transform - pos: -38.5,13.5 - parent: 2 - - uid: 7083 - components: - - type: Transform - pos: -57.5,31.5 - parent: 2 - - uid: 7084 - components: - - type: Transform - pos: -44.5,41.5 - parent: 2 - - uid: 7085 - components: - - type: Transform - pos: -25.5,17.5 - parent: 2 - - uid: 7086 - components: - - type: Transform - pos: -45.5,-10.5 - parent: 2 - - uid: 7087 - components: - - type: Transform - pos: -23.5,36.5 - parent: 2 - - uid: 7088 - components: - - type: Transform - pos: -8.5,-40.5 - parent: 2 -- proto: DisposalYJunction - entities: - - uid: 7089 - components: - - type: Transform - pos: 17.5,-20.5 - parent: 2 - - uid: 7090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-21.5 - parent: 2 - - uid: 7091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 2 -- proto: DogBed - entities: - - uid: 7092 - components: - - type: Transform - pos: -30.5,-15.5 - parent: 2 - - uid: 7093 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 2 - - uid: 7094 - components: - - type: Transform - pos: 9.5,17.5 - parent: 2 - - uid: 7095 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 - - uid: 7096 - components: - - type: Transform - pos: -37.5,-4.5 - parent: 2 - - uid: 7097 - components: - - type: Transform - pos: -48.5,39.5 - parent: 2 - - uid: 7099 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 2 - - uid: 7100 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 2 - - uid: 7101 - components: - - type: Transform - pos: -35.5,13.5 - parent: 2 - - uid: 11991 - components: - - type: Transform - pos: 2.5,39.5 - parent: 2 -- proto: DonkpocketBoxSpawner - entities: - - uid: 7102 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 2 - - uid: 7103 - components: - - type: Transform - pos: -22.5,-74.5 - parent: 2 - - uid: 7104 - components: - - type: Transform - pos: 7.5,6.5 - parent: 2 -- proto: Dresser - entities: - - uid: 7105 - components: - - type: Transform - pos: -31.5,9.5 - parent: 2 - - uid: 7106 - components: - - type: Transform - pos: -59.5,-17.5 - parent: 2 - - uid: 7107 - components: - - type: Transform - pos: -50.5,-17.5 - parent: 2 - - uid: 7108 - components: - - type: Transform - pos: -34.5,32.5 - parent: 2 - - uid: 7109 - components: - - type: Transform - pos: -38.5,10.5 - parent: 2 -- proto: DresserCaptainFilled - entities: - - uid: 14152 - components: - - type: Transform - pos: -1.5,40.5 - parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 11519 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 2 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 12115 - components: - - type: Transform - pos: 17.5,-4.5 - parent: 2 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 5823 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 11520 - components: - - type: Transform - pos: 3.5,-15.5 - parent: 2 -- proto: DresserResearchDirectorFilled - entities: - - uid: 12261 - components: - - type: Transform - pos: -46.5,41.5 - parent: 2 -- proto: DresserWardenFilled - entities: - - uid: 631 - components: - - type: Transform - pos: -35.5,-4.5 - parent: 2 -- proto: DrinkBeerBottleFull - entities: - - uid: 7110 - components: - - type: Transform - pos: -1.7504303,-9.396182 - parent: 2 - - uid: 7111 - components: - - type: Transform - pos: -1.229597,-9.07304 - parent: 2 -- proto: DrinkBottleBeer - entities: - - uid: 7114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5212636,-11.241214 - parent: 2 - - uid: 7115 - components: - - type: Transform - pos: -1.8545971,-11.282908 - parent: 2 -- proto: DrinkCafeLatte - entities: - - uid: 7116 - components: - - type: Transform - pos: -20.679987,-2.1549442 - parent: 2 -- proto: DrinkChangelingStingCan - entities: - - uid: 7117 - components: - - type: Transform - pos: -30.521725,-23.399918 - parent: 2 -- proto: DrinkCoffee - entities: - - uid: 7118 - components: - - type: Transform - pos: -20.620462,-14.877153 - parent: 2 - - uid: 7119 - components: - - type: Transform - pos: -20.682962,-7.126827 - parent: 2 - - uid: 7120 - components: - - type: Transform - pos: -9.650637,1.9549263 - parent: 2 -- proto: DrinkColaCan - entities: - - uid: 7121 - components: - - type: Transform - pos: 3.5747638,-7.359473 - parent: 2 -- proto: DrinkDetFlask - entities: - - uid: 7122 - components: - - type: Transform - pos: -34.904297,32.002953 - parent: 2 -- proto: DrinkDrGibbCan - entities: - - uid: 7123 - components: - - type: Transform - pos: 8.70818,6.552321 - parent: 2 - - uid: 7124 - components: - - type: Transform - pos: 5.7441163,-39.113068 - parent: 2 -- proto: DrinkEnergyDrinkCan - entities: - - uid: 7125 - components: - - type: Transform - pos: -2.6950586,-15.133556 - parent: 2 - - uid: 7126 - components: - - type: Transform - pos: 4.202278,-2.2945619 - parent: 2 - - uid: 7127 - components: - - type: Transform - pos: 4.296028,-2.4926157 - parent: 2 - - uid: 7128 - components: - - type: Transform - pos: 4.4731116,-2.2632902 - parent: 2 - - uid: 7129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.6918616,-2.6177022 - parent: 2 -- proto: DrinkGlass - entities: - - uid: 7131 - components: - - type: MetaData - desc: An all time classic, mild cocktail. - name: gin and tonic glass - - type: Transform - pos: -6.615975,-7.247586 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 30 - name: null - reagents: - - data: null - ReagentId: GinTonic - Quantity: 30 - - type: TransformableContainer - transformed: True - currentReagent: - metamorphicChangeColor: True - id: GinTonic - flavor: gintonic - flavorMinimum: 0.1 - slippery: False - viscosity: 0 - worksOnTheDead: False - metabolisms: - Drink: - effects: - - !type:SatiateThirst - shouldLog: False - logImpact: Low - factor: 2 - probability: 1 - conditions: null - - !type:AdjustReagent - shouldLog: False - logImpact: Low - probability: 1 - conditions: null - amount: 0.15 - group: null - reagent: Ethanol - metabolismRate: 0.5 - reactiveEffects: - Flammable: - effects: - - !type:FlammableReaction - logImpact: Medium - shouldLog: True - probability: 1 - conditions: null - multiplier: 0.05 - methods: - - Touch - tileReactions: - - !type:FlammableTileReaction - temperatureMultiplier: 1.35 - plantMetabolism: - - !type:PlantAdjustNutrition - shouldLog: False - logImpact: Low - prob: 1 - amount: 0.25 - probability: 1 - conditions: null - - !type:PlantAdjustWater - shouldLog: False - logImpact: Low - prob: 1 - amount: 0.7 - probability: 1 - conditions: null - pricePerUnit: 0 - footstepSound: !type:SoundCollectionSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 20 - busName: Master - pitch: 1 - volume: 0 - attenuation: LinearDistanceClamped - collection: FootstepWater - name: reagent-name-gin-tonic - metamorphicFillBaseName: null - group: Drinks - parent: - - BaseAlcohol - abstract: False - desc: reagent-desc-gin-tonic - physicalDesc: reagent-physical-desc-strong-smelling - color: '#004166FF' - specificHeat: 1 - boilingPoint: null - meltingPoint: null - metamorphicSprite: - sprite: Objects/Consumable/Drinks/gintonicglass.rsi - state: icon - metamorphicMaxFillLevels: 0 - recognizable: False - - uid: 7132 - components: - - type: MetaData - desc: Whiskey, mixed with cola. Surprisingly refreshing. - name: whiskey cola glass - - type: Transform - pos: -10.289259,-2.5268764 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 30 - name: null - reagents: - - data: null - ReagentId: WhiskeyCola - Quantity: 30 - - type: TransformableContainer - transformed: True - currentReagent: - metamorphicChangeColor: True - id: WhiskeyCola - flavor: whiskeycola - flavorMinimum: 0.1 - slippery: False - viscosity: 0 - worksOnTheDead: False - metabolisms: - Drink: - effects: - - !type:SatiateThirst - shouldLog: False - logImpact: Low - factor: 2 - probability: 1 - conditions: null - - !type:AdjustReagent - shouldLog: False - logImpact: Low - probability: 1 - conditions: null - amount: 0.15 - group: null - reagent: Ethanol - metabolismRate: 0.5 - reactiveEffects: - Flammable: - effects: - - !type:FlammableReaction - logImpact: Medium - shouldLog: True - probability: 1 - conditions: null - multiplier: 0.05 - methods: - - Touch - tileReactions: - - !type:FlammableTileReaction - temperatureMultiplier: 1.35 - plantMetabolism: - - !type:PlantAdjustNutrition - shouldLog: False - logImpact: Low - prob: 1 - amount: 0.25 - probability: 1 - conditions: null - - !type:PlantAdjustWater - shouldLog: False - logImpact: Low - prob: 1 - amount: 0.7 - probability: 1 - conditions: null - pricePerUnit: 0 - footstepSound: !type:SoundCollectionSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 20 - busName: Master - pitch: 1 - volume: 0 - attenuation: LinearDistanceClamped - collection: FootstepWater - name: reagent-name-whiskey-cola - metamorphicFillBaseName: null - group: Drinks - parent: - - BaseAlcohol - abstract: False - desc: reagent-desc-whiskey-cola - physicalDesc: reagent-physical-desc-bubbly - color: '#3E1B00FF' - specificHeat: 1 - boilingPoint: null - meltingPoint: null - metamorphicSprite: - sprite: Objects/Consumable/Drinks/whiskeycolaglass.rsi - state: icon - metamorphicMaxFillLevels: 0 - recognizable: False -- proto: DrinkGoldenCup - entities: - - uid: 7133 - components: - - type: Transform - pos: 0.75259066,18.887726 - parent: 2 -- proto: DrinkGrapeCan - entities: - - uid: 7134 - components: - - type: Transform - pos: 8.374847,6.5835924 - parent: 2 - - uid: 9765 - components: - - type: Transform - pos: -21.221249,-38.076916 - parent: 2 -- proto: DrinkIcedTeaCan - entities: - - uid: 7135 - components: - - type: Transform - pos: 8.249847,6.802495 - parent: 2 - - uid: 7136 - components: - - type: Transform - pos: 3.0435138,-7.2239623 - parent: 2 -- proto: DrinkManlyDorfGlass - entities: - - uid: 7138 - components: - - type: Transform - pos: 10.738677,-31.104563 - parent: 2 - - uid: 7139 - components: - - type: Transform - pos: 10.305383,-31.436697 - parent: 2 -- proto: DrinkMugBlack - entities: - - uid: 7140 - components: - - type: Transform - pos: -9.319299,32.83632 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: Coffee - Quantity: 20 -- proto: DrinkMugBlue - entities: - - uid: 7141 - components: - - type: Transform - pos: -9.272424,34.712624 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: DoctorsDelight - Quantity: 20 -- proto: DrinkMugGreen - entities: - - uid: 7142 - components: - - type: Transform - pos: -9.397424,33.790108 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: SoyLatte - Quantity: 20 -- proto: DrinkMugMetal - entities: - - uid: 7143 - components: - - type: Transform - pos: -58.624435,-3.4879594 - parent: 2 - - uid: 7144 - components: - - type: Transform - pos: -58.76118,-3.1559281 - parent: 2 - - uid: 7145 - components: - - type: Transform - pos: -59.26182,2.693884 - parent: 2 - - uid: 7146 - components: - - type: Transform - pos: -59.428486,2.4645584 - parent: 2 - - uid: 7147 - components: - - type: Transform - pos: -59.657654,2.6521893 - parent: 2 - - uid: 7148 - components: - - type: Transform - pos: -10.700483,32.45439 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: Coffee - Quantity: 20 -- proto: DrinkMugMoebius - entities: - - uid: 7149 - components: - - type: Transform - pos: -10.709924,33.602478 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: SpaceDrugs - Quantity: 5 - - data: null - ReagentId: IcedCoffee - Quantity: 15 -- proto: DrinkMugOne - entities: - - uid: 7150 - components: - - type: Transform - pos: -10.616174,34.75953 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: IcedCoffee - Quantity: 20 -- proto: DrinkMugRed - entities: - - uid: 7151 - components: - - type: Transform - pos: -10.700483,34.07939 - parent: 2 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: IrishCoffee - Quantity: 20 -- proto: DrinkRumBottleFull - entities: - - uid: 17463 - components: - - type: Transform - pos: 2.7259212,34.95999 - parent: 2 -- proto: DrinkShotGlass - entities: - - uid: 7157 - components: - - type: Transform - pos: -5.1731544,-7.5824575 - parent: 2 - - uid: 7158 - components: - - type: Transform - pos: -4.975238,-7.363556 - parent: 2 - - uid: 17464 - components: - - type: Transform - pos: 2.3092546,34.876602 - parent: 2 - - uid: 17465 - components: - - type: Transform - pos: 2.4967546,34.574306 - parent: 2 -- proto: DrinkSilencerGlass - entities: - - uid: 7159 - components: - - type: Transform - pos: -35.32141,11.850042 - parent: 2 -- proto: DrinkSingulo - entities: - - uid: 7160 - components: - - type: Transform - pos: -10.513839,-40.031387 - parent: 2 -- proto: DrinkSodaWaterCan - entities: - - uid: 7161 - components: - - type: Transform - pos: 8.686324,-31.392466 - parent: 2 -- proto: DrinkSoyLatte - entities: - - uid: 7162 - components: - - type: Transform - pos: 20.79814,-5.199406 - parent: 2 -- proto: DrinkSpaceMountainWindCan - entities: - - uid: 7163 - components: - - type: Transform - pos: -7.7122755,19.819637 - parent: 2 -- proto: DrinkSpaceUpCan - entities: - - uid: 7164 - components: - - type: Transform - pos: 8.577665,6.831503 - parent: 2 -- proto: DrinkWaterBottleFull - entities: - - uid: 7167 - components: - - type: Transform - pos: -20.323587,-14.877153 - parent: 2 - - uid: 7168 - components: - - type: Transform - pos: -20.198587,-15.033403 - parent: 2 - - uid: 7169 - components: - - type: Transform - pos: -20.386087,-15.127153 - parent: 2 - - uid: 7170 - components: - - type: Transform - pos: -20.245462,-15.345903 - parent: 2 -- proto: DrinkWaterCup - entities: - - uid: 7171 - components: - - type: Transform - pos: -38.694744,31.552332 - parent: 2 - - uid: 7172 - components: - - type: Transform - pos: -38.340576,31.594028 - parent: 2 - - uid: 7173 - components: - - type: Transform - pos: -38.517662,31.698267 - parent: 2 - - uid: 7174 - components: - - type: Transform - pos: -38.475994,31.479364 - parent: 2 - - uid: 7175 - components: - - type: Transform - pos: -25.372353,-4.2691045 - parent: 2 - - uid: 7176 - components: - - type: Transform - pos: -25.684853,-4.1909795 - parent: 2 - - uid: 7177 - components: - - type: Transform - pos: -25.653603,-4.4722295 - parent: 2 - - uid: 7178 - components: - - type: Transform - pos: -25.356728,-4.5034795 - parent: 2 -- proto: DrinkWhiskeyGlass - entities: - - uid: 7179 - components: - - type: Transform - pos: -34.792107,34.534798 - parent: 2 -- proto: DrinkWineGlass - entities: - - uid: 7180 - components: - - type: Transform - pos: 21.29036,32.63575 - parent: 2 - - uid: 7181 - components: - - type: Transform - pos: 21.79023,32.68312 - parent: 2 - - uid: 7182 - components: - - type: Transform - pos: -13.151632,-9.295929 - parent: 2 -- proto: Dropper - entities: - - uid: 7184 - components: - - type: Transform - pos: -28.348356,3.377645 - parent: 2 - - uid: 7185 - components: - - type: Transform - pos: -19.54627,6.510217 - parent: 2 - - uid: 7186 - components: - - type: Transform - pos: 15.466989,20.498625 - parent: 2 - - uid: 7187 - components: - - type: Transform - pos: -35.433304,27.757446 - parent: 2 -- proto: ElectricGuitarInstrument - entities: - - uid: 7188 - components: - - type: Transform - pos: -54.45359,-13.424999 - parent: 2 -- proto: EmergencyLight - entities: - - uid: 7189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,31.5 - parent: 2 - - uid: 7190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-17.5 - parent: 2 - - uid: 7191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,13.5 - parent: 2 - - uid: 7192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-34.5 - parent: 2 - - uid: 7193 - components: - - type: Transform - pos: -20.5,-42.5 - parent: 2 - - uid: 7194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-7.5 - parent: 2 - - uid: 7195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,12.5 - parent: 2 - - uid: 7196 - components: - - type: Transform - pos: 17.5,-24.5 - parent: 2 - - uid: 7197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 2 - - uid: 7199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-36.5 - parent: 2 - - uid: 7200 - components: - - type: Transform - pos: -7.5,1.5 - parent: 2 - - uid: 7201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 2 - - uid: 7202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,19.5 - parent: 2 - - uid: 7203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,39.5 - parent: 2 - - uid: 7204 - components: - - type: Transform - pos: -7.5,26.5 - parent: 2 - - uid: 7205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 2 - - uid: 7206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,13.5 - parent: 2 - - uid: 7207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 - parent: 2 - - uid: 7208 - components: - - type: Transform - pos: -39.5,7.5 - parent: 2 - - uid: 7209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,10.5 - parent: 2 - - uid: 7210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,22.5 - parent: 2 - - uid: 7211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,32.5 - parent: 2 - - uid: 7212 - components: - - type: Transform - pos: -37.5,29.5 - parent: 2 - - uid: 7213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,31.5 - parent: 2 - - uid: 7214 - components: - - type: Transform - pos: -50.5,50.5 - parent: 2 - - uid: 7215 - components: - - type: Transform - pos: 30.5,1.5 - parent: 2 - - uid: 7216 - components: - - type: Transform - pos: -52.5,-11.5 - parent: 2 - - uid: 7217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-22.5 - parent: 2 - - uid: 7218 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 - - uid: 7219 - components: - - type: Transform - pos: -10.5,39.5 - parent: 2 - - uid: 7220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,41.5 - parent: 2 - - uid: 7221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-17.5 - parent: 2 - - uid: 7222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 - parent: 2 - - uid: 7223 - components: - - type: Transform - pos: -5.5,-29.5 - parent: 2 - - uid: 7224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,8.5 - parent: 2 - - uid: 7225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 2 - - uid: 7226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,37.5 - parent: 2 - - uid: 7227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 2 - - uid: 7228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 2 - - uid: 7229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 2 - - uid: 7230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,16.5 - parent: 2 - - uid: 7231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 2 - - uid: 7232 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 2 - - uid: 7233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 2 - - uid: 7234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,20.5 - parent: 2 - - uid: 7235 - components: - - type: Transform - pos: 31.5,-8.5 - parent: 2 - - uid: 7236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-7.5 - parent: 2 - - uid: 7237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-6.5 - parent: 2 - - uid: 7238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-7.5 - parent: 2 - - uid: 7239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-0.5 - parent: 2 - - uid: 7240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,15.5 - parent: 2 - - uid: 7241 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 - parent: 2 - - uid: 7242 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 2 - - uid: 7243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-5.5 - parent: 2 - - uid: 7244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-23.5 - parent: 2 - - uid: 7245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-20.5 - parent: 2 - - uid: 7246 - components: - - type: Transform - pos: -29.5,32.5 - parent: 2 - - uid: 7247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,40.5 - parent: 2 - - uid: 7248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-76.5 - parent: 2 - - uid: 7249 - components: - - type: Transform - pos: -15.5,-74.5 - parent: 2 - - uid: 7250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-76.5 - parent: 2 - - uid: 7251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-75.5 - parent: 2 - - uid: 7252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-83.5 - parent: 2 - - uid: 7253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-17.5 - parent: 2 - - uid: 13222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 - parent: 2 -- proto: Emitter - entities: - - uid: 2673 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-38.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17680 - - uid: 3902 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-41.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17680 - - uid: 3904 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17680 - - uid: 17875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-38.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17680 -- proto: EncryptionKeyCargo - entities: - - uid: 7261 - components: - - type: Transform - parent: 7260 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommand - entities: - - uid: 7264 - components: - - type: Transform - parent: 7263 - - type: Physics - canCollide: False -- proto: EncryptionKeyCommon - entities: - - uid: 7266 - components: - - type: Transform - parent: 7265 - - type: Physics - canCollide: False -- proto: EncryptionKeyEngineering - entities: - - uid: 7268 - components: - - type: Transform - parent: 7267 - - type: Physics - canCollide: False -- proto: EncryptionKeyMedical - entities: - - uid: 7271 - components: - - type: Transform - parent: 7270 - - type: Physics - canCollide: False -- proto: EncryptionKeyRobo - entities: - - uid: 7269 - components: - - type: Transform - parent: 7267 - - type: Physics - canCollide: False -- proto: EncryptionKeyScience - entities: - - uid: 7273 - components: - - type: Transform - parent: 7272 - - type: Physics - canCollide: False -- proto: EncryptionKeySecurity - entities: - - uid: 7275 - components: - - type: Transform - parent: 7274 - - type: Physics - canCollide: False -- proto: EncryptionKeyService - entities: - - uid: 7262 - components: - - type: Transform - parent: 7260 - - type: Physics - canCollide: False -- proto: EpinephrineChemistryBottle - entities: - - uid: 7276 - components: - - type: Transform - pos: 20.344051,5.533956 - parent: 2 -- proto: ExosuitFabricator - entities: - - uid: 7277 - components: - - type: Transform - pos: -44.5,39.5 - parent: 2 -- proto: ExplosivesSignMed - entities: - - uid: 7278 - components: - - type: Transform - pos: -47.5,-11.5 - parent: 2 - - uid: 7279 - components: - - type: Transform - pos: -44.5,-17.5 - parent: 2 - - uid: 7280 - components: - - type: Transform - pos: -45.5,-11.5 - parent: 2 - - uid: 7281 - components: - - type: Transform - pos: -39.5,4.5 - parent: 2 - - uid: 7282 - components: - - type: Transform - pos: -43.5,4.5 - parent: 2 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 7283 - components: - - type: Transform - pos: 2.6238086,-9.236151 - parent: 2 -- proto: ExtinguisherCabinet - entities: - - uid: 7284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,22.5 - parent: 2 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 7285 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 2 - - uid: 7286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,16.5 - parent: 2 - - uid: 7287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 2 - - uid: 7288 - components: - - type: Transform - pos: -8.5,14.5 - parent: 2 - - uid: 7289 - components: - - type: Transform - pos: -16.5,8.5 - parent: 2 - - uid: 7290 - components: - - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 7291 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 2 - - uid: 7292 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 2 - - uid: 7293 - components: - - type: Transform - pos: -55.5,2.5 - parent: 2 - - uid: 7294 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 2 - - uid: 7295 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 2 - - uid: 7296 - components: - - type: Transform - pos: 35.5,-10.5 - parent: 2 - - uid: 7297 - components: - - type: Transform - pos: -13.5,37.5 - parent: 2 - - uid: 7298 - components: - - type: Transform - pos: -21.5,37.5 - parent: 2 - - uid: 7299 - components: - - type: Transform - pos: -50.5,31.5 - parent: 2 - - uid: 7301 - components: - - type: Transform - pos: -33.5,25.5 - parent: 2 - - uid: 7302 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 7303 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 2 - - uid: 7304 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 7305 - components: - - type: Transform - pos: -32.5,8.5 - parent: 2 - - uid: 7306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-44.5 - parent: 2 - - uid: 7307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-38.5 - parent: 2 -- proto: FaxMachineBase - entities: - - uid: 7308 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 2 - - type: FaxMachine - name: cargo - - uid: 7309 - components: - - type: Transform - pos: -20.5,23.5 - parent: 2 - - type: FaxMachine - name: lawyer's office - - uid: 7310 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 2 - - type: FaxMachine - name: head of personnel - - uid: 7311 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 2 - - type: FaxMachine - name: security - - uid: 7312 - components: - - type: Transform - pos: -8.5,42.5 - parent: 2 - - type: FaxMachine - name: bridge - - uid: 7313 - components: - - type: Transform - pos: -19.5,-74.5 - parent: 2 - - uid: 7314 - components: - - type: Transform - pos: -12.5,20.5 - parent: 2 - - type: FaxMachine - name: reporter's office - - uid: 7695 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 2 - - type: FaxMachine - name: chief engineer - - uid: 17424 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 2 - - type: FaxMachine - name: engineering -- proto: FaxMachineCaptain - entities: - - uid: 7315 - components: - - type: Transform - pos: -0.5,37.5 - parent: 2 - - type: FaxMachine - name: captain's office -- proto: FenceMetalCorner - entities: - - uid: 7316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-26.5 - parent: 2 -- proto: FenceMetalGate - entities: - - uid: 7317 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 2 -- proto: FenceMetalStraight - entities: - - uid: 7318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-26.5 - parent: 2 - - uid: 7319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-26.5 - parent: 2 - - uid: 7320 - components: - - type: Transform - pos: 18.5,-25.5 - parent: 2 - - uid: 7321 - components: - - type: Transform - pos: 18.5,-24.5 - parent: 2 - - uid: 7322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 - parent: 2 -- proto: filingCabinet - entities: - - uid: 7323 - components: - - type: Transform - pos: 7.5,27.5 - parent: 2 -- proto: filingCabinetDrawerRandom - entities: - - uid: 7324 - components: - - type: Transform - pos: 14.259292,-34.5 - parent: 2 - - uid: 7325 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 2 - - uid: 7326 - components: - - type: Transform - pos: -25.5,-7.5 - parent: 2 - - uid: 7327 - components: - - type: Transform - pos: -13.5,23.5 - parent: 2 - - uid: 7328 - components: - - type: Transform - pos: 28.5,11.5 - parent: 2 - - uid: 7329 - components: - - type: Transform - pos: -8.5,41.5 - parent: 2 -- proto: filingCabinetRandom - entities: - - uid: 7330 - components: - - type: Transform - pos: 4.748836,-15.5 - parent: 2 - - uid: 7331 - components: - - type: Transform - pos: -19.5,23.5 - parent: 2 - - uid: 7332 - components: - - type: Transform - pos: 4.248836,-15.5 - parent: 2 - - uid: 7333 - components: - - type: Transform - pos: -22.5,-77.5 - parent: 2 - - uid: 7334 - components: - - type: Transform - pos: 25.5,7.5 - parent: 2 - - uid: 7335 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 2 -- proto: filingCabinetTallRandom - entities: - - uid: 7336 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 -- proto: FireAlarm - entities: - - uid: 7156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 7443 - - 7444 - - 7445 - - 7446 - - 7447 - - 7449 - - 7448 - - 7453 - - 7452 - - 7451 - - 7454 - - 7455 - - 7450 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7337 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 2 - - type: DeviceList - devices: - - 7394 - - 7391 - - 7464 - - 7462 - - 7463 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 2 - - type: DeviceList - devices: - - 7422 - - 7421 - - 7425 - - 7542 - - 7561 - - 7560 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7339 - components: - - type: Transform - pos: 31.5,-17.5 - parent: 2 - - type: DeviceList - devices: - - 7487 - - 7488 - - 7489 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 7489 - - 7488 - - 7467 - - 7435 - - 7379 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,6.5 - parent: 2 - - type: DeviceList - devices: - - 7535 - - 7534 - - 7367 - - 7461 - - 7404 - - 7398 - - 7409 - - 7410 - - 7524 - - 7523 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,23.5 - parent: 2 - - type: DeviceList - devices: - - 7382 - - 7525 - - 7526 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7343 - components: - - type: Transform - pos: -28.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 7356 - - 7481 - - 7480 - - 7384 - - 7475 - - 7476 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,21.5 - parent: 2 - - type: DeviceList - devices: - - 7551 - - 7552 - - 7553 - - 7554 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 7396 - - 7397 - - 7395 - - 7389 - - 7460 - - 7534 - - 7535 - - 7459 - - 7458 - - 7358 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 7524 - - 7523 - - 7372 - - 7371 - - 7531 - - 7530 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7347 - components: - - type: Transform - pos: -39.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 7438 - - 7439 - - 7440 - - 7437 - - 7436 - - 7393 - - 7392 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-35.5 - parent: 2 - - type: DeviceList - devices: - - 434 - - 7529 - - 7533 - - 7532 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-2.5 - parent: 2 - - type: DeviceList - devices: - - 7426 - - 7479 - - 7460 - - 7435 - - 7465 - - 7466 - - 7468 - - 7473 - - 7474 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7351 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - type: DeviceList - devices: - - 7371 - - 7372 - - 7381 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 7357 - - 7457 - - 7456 - - 7459 - - 7458 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7353 - components: - - type: Transform - pos: -5.5,-41.5 - parent: 2 - - type: DeviceList - devices: - - 7566 - - 7565 - - 7564 - - 7563 - - 7363 - - 7364 - - 7416 - - 441 - - 442 - - type: AtmosDevice - joinedGrid: 2 -- proto: FireAxeCabinetFilled - entities: - - uid: 7354 - components: - - type: Transform - pos: -5.5,40.5 - parent: 2 - - uid: 7355 - components: - - type: Transform - pos: -1.5,-36.5 - parent: 2 -- proto: Firelock - entities: - - uid: 7356 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - uid: 7357 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 2 - - uid: 7358 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 2 - - uid: 7359 - components: - - type: Transform - pos: -14.5,-33.5 - parent: 2 - - uid: 7360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 2 - - uid: 7361 - components: - - type: Transform - pos: -35.5,42.5 - parent: 2 - - uid: 7362 - components: - - type: Transform - pos: -36.5,42.5 - parent: 2 - - uid: 7363 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 2 - - uid: 7364 - components: - - type: Transform - pos: 3.5,-37.5 - parent: 2 - - uid: 7365 - components: - - type: Transform - pos: -32.5,33.5 - parent: 2 - - uid: 7366 - components: - - type: Transform - pos: -19.5,-8.5 - parent: 2 - - uid: 7367 - components: - - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 7368 - components: - - type: Transform - pos: -35.5,30.5 - parent: 2 - - uid: 7369 - components: - - type: Transform - pos: -37.5,32.5 - parent: 2 - - uid: 7370 - components: - - type: Transform - pos: 25.5,-17.5 - parent: 2 - - uid: 7371 - components: - - type: Transform - pos: 24.5,22.5 - parent: 2 - - uid: 7372 - components: - - type: Transform - pos: 24.5,19.5 - parent: 2 - - uid: 7373 - components: - - type: Transform - pos: -7.5,40.5 - parent: 2 - - uid: 7374 - components: - - type: Transform - pos: -12.5,40.5 - parent: 2 - - uid: 7375 - components: - - type: Transform - pos: -18.5,-26.5 - parent: 2 - - uid: 7376 - components: - - type: Transform - pos: -16.5,-26.5 - parent: 2 - - uid: 7377 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 - - uid: 7378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,22.5 - parent: 2 - - uid: 7379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,2.5 - parent: 2 - - uid: 7380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-23.5 - parent: 2 - - uid: 7381 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - uid: 7382 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,27.5 - parent: 2 - - uid: 7383 - components: - - type: Transform - pos: -2.5,11.5 - parent: 2 - - uid: 7384 - components: - - type: Transform - pos: -28.5,13.5 - parent: 2 - - uid: 7385 - components: - - type: Transform - pos: -16.5,-73.5 - parent: 2 - - uid: 7386 - components: - - type: Transform - pos: -18.5,-76.5 - parent: 2 - - uid: 7387 - components: - - type: Transform - pos: -13.5,-76.5 - parent: 2 - - uid: 7388 - components: - - type: Transform - pos: -16.5,-79.5 - parent: 2 - - uid: 7389 - components: - - type: Transform - pos: 9.5,-6.5 - parent: 2 - - uid: 14363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,22.5 - parent: 2 -- proto: FirelockEdge - entities: - - uid: 7390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,5.5 - parent: 2 - - uid: 7391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 2 - - uid: 7392 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 2 - - uid: 7393 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 2 - - uid: 7394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-6.5 - parent: 2 - - uid: 7395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 2 - - uid: 7396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-7.5 - parent: 2 - - uid: 7397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 2 - - uid: 7398 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - - uid: 7399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,8.5 - parent: 2 - - uid: 7400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 2 - - uid: 7401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,8.5 - parent: 2 - - uid: 7402 - components: - - type: Transform - pos: -6.5,19.5 - parent: 2 - - uid: 7403 - components: - - type: Transform - pos: -7.5,19.5 - parent: 2 - - uid: 7404 - components: - - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 7405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,28.5 - parent: 2 - - uid: 7406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,27.5 - parent: 2 - - uid: 7407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,29.5 - parent: 2 - - uid: 7408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 2 - - uid: 7409 - components: - - type: Transform - pos: 18.5,9.5 - parent: 2 - - uid: 7410 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 7411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 2 - - uid: 7412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,4.5 - parent: 2 - - uid: 7413 - components: - - type: Transform - pos: -8.5,19.5 - parent: 2 - - uid: 7414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,5.5 - parent: 2 - - uid: 7415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,6.5 - parent: 2 - - uid: 7416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-51.5 - parent: 2 -- proto: FirelockGlass - entities: - - uid: 7417 - components: - - type: Transform - pos: 8.5,-12.5 - parent: 2 - - uid: 7418 - components: - - type: Transform - pos: -26.5,6.5 - parent: 2 - - uid: 7419 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 2 - - uid: 7420 - components: - - type: Transform - pos: 34.5,2.5 - parent: 2 - - uid: 7421 - components: - - type: Transform - pos: 13.5,-25.5 - parent: 2 - - uid: 7422 - components: - - type: Transform - pos: 13.5,-26.5 - parent: 2 - - uid: 7423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-26.5 - parent: 2 - - uid: 7424 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 2 - - uid: 7425 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 2 - - uid: 7426 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 2 - - uid: 7427 - components: - - type: Transform - pos: -21.5,33.5 - parent: 2 - - uid: 7428 - components: - - type: Transform - pos: -21.5,35.5 - parent: 2 - - uid: 7429 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 7430 - components: - - type: Transform - pos: -11.5,-14.5 - parent: 2 - - uid: 7431 - components: - - type: Transform - pos: -15.5,-17.5 - parent: 2 - - uid: 7432 - components: - - type: Transform - pos: -15.5,-18.5 - parent: 2 - - uid: 7433 - components: - - type: Transform - pos: -9.5,-18.5 - parent: 2 - - uid: 7434 - components: - - type: Transform - pos: 33.5,2.5 - parent: 2 - - uid: 7435 - components: - - type: Transform - pos: 36.5,0.5 - parent: 2 - - uid: 7436 - components: - - type: Transform - pos: -44.5,-9.5 - parent: 2 - - uid: 7437 - components: - - type: Transform - pos: -44.5,-8.5 - parent: 2 - - uid: 7438 - components: - - type: Transform - pos: -34.5,-9.5 - parent: 2 - - uid: 7439 - components: - - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 7440 - components: - - type: Transform - pos: -37.5,-7.5 - parent: 2 - - uid: 7441 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 - - uid: 7442 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 2 - - uid: 7443 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7444 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7445 - components: - - type: Transform - pos: -54.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7446 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7447 - components: - - type: Transform - pos: -56.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7448 - components: - - type: Transform - pos: -56.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7449 - components: - - type: Transform - pos: -55.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7450 - components: - - type: Transform - pos: -57.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7451 - components: - - type: Transform - pos: -58.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7452 - components: - - type: Transform - pos: -58.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7453 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7454 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7455 - components: - - type: Transform - pos: -49.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7156 - - uid: 7456 - components: - - type: Transform - pos: -2.5,1.5 - parent: 2 - - uid: 7457 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 2 - - uid: 7458 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 2 - - uid: 7459 - components: - - type: Transform - pos: 3.5,1.5 - parent: 2 - - uid: 7460 - components: - - type: Transform - pos: 16.5,0.5 - parent: 2 - - uid: 7461 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - - uid: 7462 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-8.5 - parent: 2 - - uid: 7463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-9.5 - parent: 2 - - uid: 7464 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-6.5 - parent: 2 - - uid: 7465 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - - uid: 7466 - components: - - type: Transform - pos: 31.5,-1.5 - parent: 2 - - uid: 7467 - components: - - type: Transform - pos: 36.5,-5.5 - parent: 2 - - uid: 7468 - components: - - type: Transform - pos: 27.5,-4.5 - parent: 2 - - uid: 7469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 2 - - uid: 7470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-6.5 - parent: 2 - - uid: 7471 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 2 - - uid: 7472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,5.5 - parent: 2 - - uid: 7473 - components: - - type: Transform - pos: 25.5,-6.5 - parent: 2 - - uid: 7474 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 2 - - uid: 7475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,14.5 - parent: 2 - - uid: 7476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,15.5 - parent: 2 - - uid: 7477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 2 - - uid: 7478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,18.5 - parent: 2 - - uid: 7479 - components: - - type: Transform - pos: 22.5,-4.5 - parent: 2 - - uid: 7480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,15.5 - parent: 2 - - uid: 7481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,14.5 - parent: 2 - - uid: 7482 - components: - - type: Transform - pos: -26.5,2.5 - parent: 2 - - uid: 7483 - components: - - type: Transform - pos: -31.5,4.5 - parent: 2 - - uid: 7484 - components: - - type: Transform - pos: -14.5,24.5 - parent: 2 - - uid: 7485 - components: - - type: Transform - pos: 23.5,-12.5 - parent: 2 - - uid: 7486 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 2 - - uid: 7487 - components: - - type: Transform - pos: 29.5,-17.5 - parent: 2 - - uid: 7488 - components: - - type: Transform - pos: 38.5,-14.5 - parent: 2 - - uid: 7489 - components: - - type: Transform - pos: 39.5,-14.5 - parent: 2 - - uid: 7490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,8.5 - parent: 2 - - uid: 7491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,8.5 - parent: 2 - - uid: 7492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,24.5 - parent: 2 - - uid: 7493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,24.5 - parent: 2 - - uid: 7494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,31.5 - parent: 2 - - uid: 7495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,30.5 - parent: 2 - - uid: 7496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,33.5 - parent: 2 - - uid: 7497 - components: - - type: Transform - pos: -51.5,36.5 - parent: 2 - - uid: 7498 - components: - - type: Transform - pos: -22.5,22.5 - parent: 2 - - uid: 7499 - components: - - type: Transform - pos: -51.5,33.5 - parent: 2 - - uid: 7500 - components: - - type: Transform - pos: -25.5,26.5 - parent: 2 - - uid: 7501 - components: - - type: Transform - pos: -25.5,25.5 - parent: 2 - - uid: 7502 - components: - - type: Transform - pos: -33.5,26.5 - parent: 2 - - uid: 7503 - components: - - type: Transform - pos: -11.5,26.5 - parent: 2 - - uid: 7504 - components: - - type: Transform - pos: -11.5,25.5 - parent: 2 - - uid: 7505 - components: - - type: Transform - pos: -5.5,28.5 - parent: 2 - - uid: 7506 - components: - - type: Transform - pos: -3.5,28.5 - parent: 2 - - uid: 7507 - components: - - type: Transform - pos: -3.5,32.5 - parent: 2 - - uid: 7508 - components: - - type: Transform - pos: -5.5,32.5 - parent: 2 - - uid: 7509 - components: - - type: Transform - pos: -2.5,30.5 - parent: 2 - - uid: 7510 - components: - - type: Transform - pos: -2.5,34.5 - parent: 2 - - uid: 7511 - components: - - type: Transform - pos: -6.5,35.5 - parent: 2 - - uid: 7512 - components: - - type: Transform - pos: -13.5,35.5 - parent: 2 - - uid: 7513 - components: - - type: Transform - pos: 9.5,-9.5 - parent: 2 - - uid: 7514 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 2 - - uid: 7515 - components: - - type: Transform - pos: 0.5,41.5 - parent: 2 - - uid: 7516 - components: - - type: Transform - pos: -22.5,37.5 - parent: 2 - - uid: 7517 - components: - - type: Transform - pos: -24.5,37.5 - parent: 2 - - uid: 7518 - components: - - type: Transform - pos: -4.5,15.5 - parent: 2 - - uid: 7519 - components: - - type: Transform - pos: -3.5,15.5 - parent: 2 - - uid: 7520 - components: - - type: Transform - pos: -11.5,0.5 - parent: 2 - - uid: 7521 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 2 - - uid: 7522 - components: - - type: Transform - pos: -8.5,-11.5 - parent: 2 - - uid: 7523 - components: - - type: Transform - pos: 24.5,6.5 - parent: 2 - - uid: 7524 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 - - uid: 7525 - components: - - type: Transform - pos: 13.5,17.5 - parent: 2 - - uid: 7526 - components: - - type: Transform - pos: 12.5,17.5 - parent: 2 - - uid: 7527 - components: - - type: Transform - pos: -5.5,-23.5 - parent: 2 - - uid: 7528 - components: - - type: Transform - pos: -9.5,-28.5 - parent: 2 - - uid: 7529 - components: - - type: Transform - pos: -9.5,-33.5 - parent: 2 - - uid: 7530 - components: - - type: Transform - pos: 20.5,15.5 - parent: 2 - - uid: 7531 - components: - - type: Transform - pos: 20.5,16.5 - parent: 2 - - uid: 7532 - components: - - type: Transform - pos: -18.5,-29.5 - parent: 2 - - uid: 7533 - components: - - type: Transform - pos: -16.5,-29.5 - parent: 2 - - uid: 7534 - components: - - type: Transform - pos: 13.5,3.5 - parent: 2 - - uid: 7535 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - - uid: 7536 - components: - - type: Transform - pos: -16.5,-14.5 - parent: 2 - - uid: 7537 - components: - - type: Transform - pos: -17.5,-14.5 - parent: 2 - - uid: 7538 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 2 - - uid: 7539 - components: - - type: Transform - pos: -3.5,-20.5 - parent: 2 - - uid: 7540 - components: - - type: Transform - pos: -7.5,-25.5 - parent: 2 - - uid: 7541 - components: - - type: Transform - pos: 1.5,-15.5 - parent: 2 - - uid: 7542 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 2 - - uid: 7544 - components: - - type: Transform - pos: 5.5,16.5 - parent: 2 - - uid: 7545 - components: - - type: Transform - pos: 6.5,16.5 - parent: 2 - - uid: 7546 - components: - - type: Transform - pos: 31.5,26.5 - parent: 2 - - uid: 7547 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - - uid: 7548 - components: - - type: Transform - pos: 39.5,14.5 - parent: 2 - - uid: 7549 - components: - - type: Transform - pos: 40.5,14.5 - parent: 2 - - uid: 7550 - components: - - type: Transform - pos: 41.5,14.5 - parent: 2 - - uid: 7551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,17.5 - parent: 2 - - uid: 7552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,15.5 - parent: 2 - - uid: 7553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,8.5 - parent: 2 - - uid: 7554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,8.5 - parent: 2 - - uid: 7555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 2 - - uid: 7556 - components: - - type: Transform - pos: -5.5,10.5 - parent: 2 - - uid: 7557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,19.5 - parent: 2 - - uid: 7558 - components: - - type: Transform - pos: 17.5,29.5 - parent: 2 - - uid: 7559 - components: - - type: Transform - pos: 17.5,28.5 - parent: 2 - - uid: 7560 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 2 - - uid: 7561 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 - - uid: 7562 - components: - - type: Transform - pos: -20.5,0.5 - parent: 2 - - uid: 7563 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 2 - - uid: 7564 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 2 - - uid: 7565 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - - uid: 7566 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 2 -- proto: Fireplace - entities: - - uid: 7567 - components: - - type: Transform - pos: -29.5,16.5 - parent: 2 - - uid: 7568 - components: - - type: Transform - pos: 10.5,27.5 - parent: 2 - - uid: 7569 - components: - - type: Transform - pos: -0.5,40.5 - parent: 2 - - uid: 7570 - components: - - type: Transform - pos: -33.5,38.5 - parent: 2 -- proto: FlashlightLantern - entities: - - uid: 7571 - components: - - type: Transform - pos: -0.81021476,10.196323 - parent: 2 -- proto: Floodlight - entities: - - uid: 7572 - components: - - type: Transform - pos: -30.2877,-10.496739 - parent: 2 - - uid: 7573 - components: - - type: Transform - pos: -30.704367,-10.475892 - parent: 2 - - uid: 7574 - components: - - type: Transform - pos: 22.724634,-25.5 - parent: 2 - - uid: 7575 - components: - - type: Transform - pos: -1.6349056,10.465635 - parent: 2 - - uid: 7576 - components: - - type: Transform - pos: -8.722752,-20.562252 - parent: 2 - - uid: 7577 - components: - - type: Transform - pos: -8.264419,-20.572676 - parent: 2 - - uid: 7578 - components: - - type: Transform - pos: 4.249159,-5.478261 - parent: 2 - - uid: 7579 - components: - - type: Transform - pos: 4.7387424,-5.488684 - parent: 2 - - uid: 7580 - components: - - type: Transform - pos: 31.762112,28.453157 - parent: 2 - - uid: 7581 - components: - - type: Transform - pos: -28.682898,18.498981 - parent: 2 -- proto: FloorDrain - entities: - - uid: 7582 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7583 - components: - - type: Transform - pos: -14.5,12.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7584 - components: - - type: Transform - pos: 0.5,10.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7585 - components: - - type: Transform - pos: 32.5,-9.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7586 - components: - - type: Transform - pos: 21.5,-14.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7587 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7588 - components: - - type: Transform - pos: 35.5,-16.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7589 - components: - - type: Transform - pos: 17.5,26.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7591 - components: - - type: Transform - pos: 28.5,20.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7592 - components: - - type: Transform - pos: 35.5,-14.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7593 - components: - - type: Transform - pos: -55.5,34.5 - parent: 2 - - type: Fixtures - fixtures: {} - - uid: 7594 - components: - - type: Transform - pos: 9.5,-43.5 - parent: 2 - - type: Fixtures - fixtures: {} -- proto: FloorWaterEntity - entities: - - uid: 7595 - components: - - type: Transform - pos: -10.5,38.5 - parent: 2 - - uid: 7596 - components: - - type: Transform - pos: -9.5,38.5 - parent: 2 - - uid: 7597 - components: - - type: Transform - pos: -10.5,37.5 - parent: 2 - - uid: 7598 - components: - - type: Transform - pos: -9.5,37.5 - parent: 2 -- proto: FoamBlade - entities: - - uid: 7599 - components: - - type: Transform - pos: -30.443775,-23.511929 - parent: 2 -- proto: FoodApple - entities: - - uid: 7600 - components: - - type: Transform - pos: -22.372084,6.141997 - parent: 2 -- proto: FoodBakedWaffleSoy - entities: - - uid: 7601 - components: - - type: Transform - pos: 20.464806,-5.5433955 - parent: 2 -- proto: FoodBoritoPie - entities: - - uid: 7602 - components: - - type: Transform - pos: -60.37967,-1.3542025 - parent: 2 -- proto: FoodBoxDonut - entities: - - uid: 7603 - components: - - type: Transform - pos: -10.054111,32.930138 - parent: 2 - - uid: 7604 - components: - - type: Transform - pos: -20.417337,-14.549028 - parent: 2 -- proto: FoodBoxNugget - entities: - - uid: 7605 - components: - - type: Transform - pos: -8.693767,4.45767 - parent: 2 -- proto: FoodBoxPizzaFilled - entities: - - uid: 7606 - components: - - type: Transform - pos: -3.538867,-7.2398877 - parent: 2 -- proto: FoodBurgerClown - entities: - - uid: 7607 - components: - - type: Transform - pos: -35.033707,11.511257 - parent: 2 -- proto: FoodCakeSuppermatter - entities: - - uid: 17855 - components: - - type: Transform - pos: -20.702072,-38.39349 - parent: 2 -- proto: FoodCarrot - entities: - - uid: 7608 - components: - - type: Transform - pos: -15.333906,14.554829 - parent: 2 - - uid: 7609 - components: - - type: Transform - pos: -15.490156,14.606949 - parent: 2 - - uid: 7610 - components: - - type: Transform - pos: -15.677656,14.669493 - parent: 2 -- proto: FoodCartCold - entities: - - uid: 7611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,9.5 - parent: 2 -- proto: FoodCartHot - entities: - - uid: 3734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,17.5 - parent: 2 -- proto: FoodCondimentBottleBBQ - entities: - - uid: 7613 - components: - - type: Transform - pos: -8.74585,4.93717 - parent: 2 -- proto: FoodCondimentBottleHotsauce - entities: - - uid: 7614 - components: - - type: Transform - pos: -11.386693,4.9844956 - parent: 2 -- proto: FoodCondimentPacketHotsauce - entities: - - uid: 7615 - components: - - type: Transform - pos: -13.750666,-9.525864 - parent: 2 -- proto: FoodCondimentPacketKetchup - entities: - - uid: 7616 - components: - - type: Transform - pos: -8.091682,19.548225 - parent: 2 -- proto: FoodCorn - entities: - - uid: 7617 - components: - - type: Transform - pos: -15.57349,15.722307 - parent: 2 - - uid: 7618 - components: - - type: Transform - pos: -15.375573,15.607644 - parent: 2 - - uid: 7619 - components: - - type: Transform - pos: -15.656822,15.503405 - parent: 2 - - uid: 7620 - components: - - type: Transform - pos: -15.302656,15.367894 - parent: 2 -- proto: FoodDonutCaramel - entities: - - uid: 7621 - components: - - type: Transform - pos: -20.372719,-2.4756277 - parent: 2 -- proto: FoodDonutJellySlugcat - entities: - - uid: 7622 - components: - - type: Transform - pos: 2.5049953,35.55643 - parent: 2 - - uid: 7623 - components: - - type: Transform - pos: 11.517811,6.4848995 - parent: 2 - - uid: 7624 - components: - - type: Transform - pos: 8.443369,26.925972 - parent: 2 -- proto: FoodDonutSpaceman - entities: - - uid: 7625 - components: - - type: Transform - pos: -10.241611,34.587536 - parent: 2 -- proto: FoodLollipop - entities: - - uid: 7626 - components: - - type: Transform - pos: 12.074322,6.534174 - parent: 2 -- proto: FoodMealCornedbeef - entities: - - uid: 7627 - components: - - type: Transform - pos: -51.488167,-0.36223078 - parent: 2 -- proto: FoodMealFriesCheesy - entities: - - uid: 7628 - components: - - type: Transform - pos: -8.591682,19.777552 - parent: 2 -- proto: FoodMealNachos - entities: - - uid: 7629 - components: - - type: Transform - pos: -11.58461,4.5779634 - parent: 2 -- proto: FoodMealRibs - entities: - - uid: 7630 - components: - - type: Transform - pos: -61.46964,-8.387285 - parent: 2 -- proto: FoodMealSoftTaco - entities: - - uid: 7631 - components: - - type: Transform - pos: -11.366393,4.2297497 - parent: 2 -- proto: FoodMeat - entities: - - uid: 7632 - components: - - type: Transform - pos: -13.626667,11.3615885 - parent: 2 - - uid: 7633 - components: - - type: Transform - pos: -13.387084,11.538795 - parent: 2 -- proto: FoodMeatBacon - entities: - - uid: 7634 - components: - - type: Transform - pos: -13.65891,13.412291 - parent: 2 - - uid: 7635 - components: - - type: Transform - pos: -13.523493,13.6520405 - parent: 2 -- proto: FoodMeatBearCooked - entities: - - uid: 7636 - components: - - type: MetaData - desc: What's brown and sticky and OH GOD WHAT THE- - name: poop - - type: Transform - pos: -51.488995,-6.2917495 - parent: 2 - - type: SolutionContainerManager - solutions: - food: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 10 - name: null - reagents: - - data: null - ReagentId: Lexorin - Quantity: 4 - - data: null - ReagentId: Toxin - Quantity: 6 - - type: Hairball - missingComponents: - - SliceableFood -- proto: FoodMeatChicken - entities: - - uid: 7637 - components: - - type: Transform - pos: -13.62076,14.650166 - parent: 2 - - uid: 7638 - components: - - type: Transform - pos: -13.454093,14.462536 - parent: 2 -- proto: FoodMeatChickenFried - entities: - - uid: 7639 - components: - - type: Transform - pos: -63.54857,-9.081 - parent: 2 - - uid: 7640 - components: - - type: Transform - pos: -62.954815,-9.471625 - parent: 2 - - uid: 7641 - components: - - type: Transform - pos: -62.50169,-8.971625 - parent: 2 - - uid: 7642 - components: - - type: Transform - pos: -8.297933,4.686996 - parent: 2 -- proto: FoodMeatCooked - entities: - - uid: 7643 - components: - - type: Transform - pos: -13.479757,-9.217804 - parent: 2 -- proto: FoodMothChiliCabbageWrap - entities: - - uid: 7645 - components: - - type: Transform - pos: 29.592472,-7.415272 - parent: 2 -- proto: FoodMothGreenLasagne - entities: - - uid: 7646 - components: - - type: Transform - pos: -19.499077,21.71364 - parent: 2 -- proto: FoodOnion - entities: - - uid: 7647 - components: - - type: Transform - pos: -15.719322,11.656984 - parent: 2 - - uid: 7648 - components: - - type: Transform - pos: -15.29224,11.688255 - parent: 2 -- proto: FoodOrange - entities: - - uid: 7649 - components: - - type: Transform - pos: -22.6325,5.6103783 - parent: 2 -- proto: FoodPieBananaCream - entities: - - uid: 7650 - components: - - type: Transform - pos: -34.60266,11.521688 - parent: 2 - - uid: 7651 - components: - - type: Transform - pos: -34.25891,11.709319 - parent: 2 -- proto: FoodPlateSmall - entities: - - uid: 7652 - components: - - type: Transform - pos: -13.479757,-9.170929 - parent: 2 - - uid: 7654 - components: - - type: Transform - pos: 29.595211,-7.3157077 - parent: 2 -- proto: FoodPlateTin - entities: - - uid: 7656 - components: - - type: Transform - pos: -49.729855,-0.5163126 - parent: 2 -- proto: FoodPotato - entities: - - uid: 7657 - components: - - type: Transform - pos: -15.281823,11.354691 - parent: 2 - - uid: 7658 - components: - - type: Transform - pos: -15.469323,11.448505 - parent: 2 - - uid: 7659 - components: - - type: Transform - pos: -15.719322,11.30257 - parent: 2 -- proto: FoodPSB - entities: - - uid: 7660 - components: - - type: Transform - pos: -47.577477,43.695927 - parent: 2 - - uid: 7661 - components: - - type: Transform - pos: -47.389977,43.43533 - parent: 2 -- proto: FoodSaladWatermelonFruitBowl - entities: - - uid: 7662 - components: - - type: Transform - pos: -16.36061,5.4444323 - parent: 2 -- proto: FoodSnackChips - entities: - - uid: 7663 - components: - - type: Transform - pos: -40.52819,51.500805 - parent: 2 -- proto: FoodSnackPopcorn - entities: - - uid: 7664 - components: - - type: Transform - pos: 37.339508,3.5884066 - parent: 2 -- proto: FoodSoupBungo - entities: - - uid: 7665 - components: - - type: Transform - pos: 34.49436,-2.317297 - parent: 2 -- proto: FoodSoupStew - entities: - - uid: 7666 - components: - - type: Transform - pos: -35.444843,-5.5133715 - parent: 2 -- proto: FoodTartMime - entities: - - uid: 7667 - components: - - type: Transform - pos: -35.587036,11.55296 - parent: 2 -- proto: FoodTinBeans - entities: - - uid: 7668 - components: - - type: Transform - pos: 40.696686,13.195562 - parent: 2 -- proto: FoodTinPeachesMaint - entities: - - uid: 7670 - components: - - type: Transform - pos: 6.489133,-21.393927 - parent: 2 - - uid: 7671 - components: - - type: Transform - pos: 23.429745,29.51601 - parent: 2 - - uid: 7672 - components: - - type: Transform - pos: 5.418648,4.430817 - parent: 2 - - uid: 7673 - components: - - type: Transform - pos: -36.142467,0.62692785 - parent: 2 - - uid: 7674 - components: - - type: Transform - pos: -29.5934,-2.1855721 - parent: 2 -- proto: FoodTomato - entities: - - uid: 7675 - components: - - type: Transform - pos: -15.219323,12.480472 - parent: 2 - - uid: 7676 - components: - - type: Transform - pos: -15.344323,12.657679 - parent: 2 - - uid: 7677 - components: - - type: Transform - pos: -15.688072,12.74107 - parent: 2 - - uid: 7678 - components: - - type: Transform - pos: -15.708906,12.480472 - parent: 2 - - uid: 7679 - components: - - type: Transform - pos: -15.500572,12.522167 - parent: 2 -- proto: Football - entities: - - uid: 7680 - components: - - type: Transform - pos: 1.7270865,2.275586 - parent: 2 -- proto: ForkPlastic - entities: - - uid: 7681 - components: - - type: Transform - pos: -58.25037,-3.1736562 - parent: 2 -- proto: FuelDispenser - entities: - - uid: 12841 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 2 - - uid: 17851 - components: - - type: Transform - pos: -24.5,-41.5 - parent: 2 -- proto: GasAnalyzer - entities: - - uid: 7682 - components: - - type: Transform - pos: 19.619722,21.18556 - parent: 2 -- proto: GasFilter - entities: - - uid: 3908 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 5001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 7255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 7683 - components: - - type: MetaData - name: waste gas filter - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,19.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7684 - components: - - type: MetaData - name: waste gas filter - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,19.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7685 - components: - - type: Transform - pos: -56.5,36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7686 - components: - - type: Transform - pos: -56.5,32.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasFilterFlipped - entities: - - uid: 7687 - components: - - type: MetaData - name: oxygen filter - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-44.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7688 - components: - - type: MetaData - name: nitrogen filter - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7689 - components: - - type: MetaData - name: plasma filter - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-48.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7690 - components: - - type: MetaData - name: carbon dioxide filter - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-46.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7691 - components: - - type: MetaData - name: burn chamber filter - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' -- proto: GasMinerCarbonDioxide - entities: - - uid: 6053 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasMinerNitrogenStation - entities: - - uid: 7692 - components: - - type: Transform - pos: 6.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasMinerOxygen - entities: - - uid: 7693 - components: - - type: Transform - pos: 6.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasMixer - entities: - - uid: 7696 - components: - - type: MetaData - name: air mixer - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-43.5 - parent: 2 - - type: GasMixer - inletTwoConcentration: 0.79 - inletOneConcentration: 0.21 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasMixerFlipped - entities: - - uid: 7698 - components: - - type: MetaData - name: oxygen burn mixer - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-47.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 7699 - components: - - type: MetaData - name: plasma mixer - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-49.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' -- proto: GasOutletInjector - entities: - - uid: 7700 - components: - - type: Transform - pos: -61.5,37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,31.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7702 - components: - - type: Transform - pos: -54.5,39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-48.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 7707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-49.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-51.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7711 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 17426 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00008BFF' -- proto: GasPassiveGate - entities: - - uid: 7704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' -- proto: GasPassiveVent - entities: - - uid: 3909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7712 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7713 - components: - - type: Transform - pos: -55.5,39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7714 - components: - - type: Transform - pos: -62.5,37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,31.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 7717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-51.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-49.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#CB00F5FF' - - uid: 7721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-47.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 7722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-53.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 7725 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-53.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 17788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-49.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasPipeBend - entities: - - uid: 2635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3140 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 3162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-44.5 - parent: 2 - - uid: 3164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-46.5 - parent: 2 - - uid: 3217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 3218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 5003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7726 - components: - - type: Transform - pos: -5.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 7727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 7728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7729 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7732 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7737 - components: - - type: Transform - pos: -15.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7742 - components: - - type: Transform - pos: 9.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 7744 - components: - - type: Transform - pos: 5.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7747 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7748 - components: - - type: Transform - pos: 19.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 7749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 7750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 7751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,33.5 - parent: 2 - - uid: 7754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7755 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,37.5 - parent: 2 - - uid: 7756 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,36.5 - parent: 2 - - uid: 7757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,33.5 - parent: 2 - - uid: 7758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,32.5 - parent: 2 - - uid: 7759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,31.5 - parent: 2 - - uid: 7760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,31.5 - parent: 2 - - uid: 7761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,34.5 - parent: 2 - - uid: 7762 - components: - - type: Transform - pos: -53.5,34.5 - parent: 2 - - uid: 7763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7766 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7767 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7768 - components: - - type: Transform - pos: -39.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7769 - components: - - type: Transform - pos: 28.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7770 - components: - - type: Transform - pos: -27.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7774 - components: - - type: Transform - pos: -27.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7776 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7778 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7780 - components: - - type: Transform - pos: 34.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7782 - components: - - type: Transform - pos: 33.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7783 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7784 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7785 - components: - - type: Transform - pos: 39.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7787 - components: - - type: Transform - pos: 2.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7790 - components: - - type: Transform - pos: 30.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7791 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7806 - components: - - type: Transform - pos: 41.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7808 - components: - - type: Transform - pos: 40.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7809 - components: - - type: Transform - pos: 36.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7810 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7813 - components: - - type: Transform - pos: 35.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7814 - components: - - type: Transform - pos: 39.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7815 - components: - - type: Transform - pos: 31.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7816 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7818 - components: - - type: Transform - pos: 33.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7820 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7825 - components: - - type: Transform - pos: 6.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7828 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7829 - components: - - type: Transform - pos: 26.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7834 - components: - - type: Transform - pos: 14.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AABBFF' - - uid: 7848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AABBFF' - - uid: 7849 - components: - - type: Transform - pos: -17.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7850 - components: - - type: Transform - pos: -42.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7854 - components: - - type: Transform - pos: -36.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7856 - components: - - type: Transform - pos: -35.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7859 - components: - - type: Transform - pos: -49.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 7861 - components: - - type: Transform - pos: -23.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7865 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7869 - components: - - type: Transform - pos: -44.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7870 - components: - - type: Transform - pos: -46.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7873 - components: - - type: Transform - pos: -45.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7875 - components: - - type: Transform - pos: -20.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7879 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7883 - components: - - type: Transform - pos: -5.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7885 - components: - - type: Transform - pos: -3.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7886 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7887 - components: - - type: Transform - pos: -14.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7888 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7890 - components: - - type: Transform - pos: -48.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7897 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7899 - components: - - type: Transform - pos: -16.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7901 - components: - - type: Transform - pos: 6.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7902 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7903 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7905 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7908 - components: - - type: Transform - pos: -20.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7912 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7913 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7914 - components: - - type: Transform - pos: -0.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7915 - components: - - type: Transform - pos: 0.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 7917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 7918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7919 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 13696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 15251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17480 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17483 - components: - - type: Transform - pos: -42.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17531 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17536 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17543 - components: - - type: Transform - pos: -18.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-44.5 - parent: 2 - - uid: 17644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17645 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-31.5 - parent: 2 - - uid: 17691 - components: - - type: Transform - pos: -26.5,-31.5 - parent: 2 - - uid: 17789 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeFourway - entities: - - uid: 3169 - components: - - type: Transform - pos: -31.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3889 - components: - - type: Transform - pos: -31.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 7920 - components: - - type: Transform - pos: -4.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 7921 - components: - - type: Transform - pos: 16.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7922 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 7923 - components: - - type: Transform - pos: -4.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7924 - components: - - type: Transform - pos: -36.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7925 - components: - - type: Transform - pos: -46.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7926 - components: - - type: Transform - pos: -17.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7927 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7928 - components: - - type: Transform - pos: -6.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7929 - components: - - type: Transform - pos: -34.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7930 - components: - - type: Transform - pos: 24.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7931 - components: - - type: Transform - pos: 14.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7932 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7933 - components: - - type: Transform - pos: 22.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7934 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7935 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7936 - components: - - type: Transform - pos: -7.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7937 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7938 - components: - - type: Transform - pos: -9.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7939 - components: - - type: Transform - pos: -28.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7940 - components: - - type: Transform - pos: -37.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7941 - components: - - type: Transform - pos: -36.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7942 - components: - - type: Transform - pos: -39.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7943 - components: - - type: Transform - pos: -47.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7944 - components: - - type: Transform - pos: -52.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7945 - components: - - type: Transform - pos: -55.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7946 - components: - - type: Transform - pos: -16.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7947 - components: - - type: Transform - pos: 20.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7948 - components: - - type: Transform - pos: -17.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7949 - components: - - type: Transform - pos: -35.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7950 - components: - - type: Transform - pos: -24.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7951 - components: - - type: Transform - pos: -40.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7952 - components: - - type: Transform - pos: -41.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7953 - components: - - type: Transform - pos: -36.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7954 - components: - - type: Transform - pos: -24.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7955 - components: - - type: Transform - pos: -8.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7956 - components: - - type: Transform - pos: -11.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7957 - components: - - type: Transform - pos: -7.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7958 - components: - - type: Transform - pos: -37.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7959 - components: - - type: Transform - pos: -30.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7960 - components: - - type: Transform - pos: -31.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7961 - components: - - type: Transform - pos: -16.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 12007 - components: - - type: Transform - pos: -25.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17503 - components: - - type: Transform - pos: -37.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' -- proto: GasPipeStraight - entities: - - uid: 3141 - components: - - type: Transform - pos: -31.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3691 - components: - - type: Transform - pos: -16.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 3816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-33.5 - parent: 2 - - uid: 4998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-33.5 - parent: 2 - - uid: 7962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#CB00F5FF' - - uid: 7974 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7976 - components: - - type: Transform - pos: -2.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7977 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 7979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 7980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 7982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7983 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7994 - components: - - type: Transform - pos: -6.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 7995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7996 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7997 - components: - - type: Transform - pos: 10.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 7999 - components: - - type: Transform - pos: -46.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8001 - components: - - type: Transform - pos: 0.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8002 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8004 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8006 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8008 - components: - - type: Transform - pos: -15.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8010 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8011 - components: - - type: Transform - pos: 10.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8012 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8013 - components: - - type: Transform - pos: 11.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8018 - components: - - type: Transform - pos: 11.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8026 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8029 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8030 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8031 - components: - - type: Transform - pos: 7.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8032 - components: - - type: Transform - pos: 7.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8034 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8035 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8040 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,31.5 - parent: 2 - - uid: 8043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8044 - components: - - type: Transform - pos: 5.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8045 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8046 - components: - - type: Transform - pos: 4.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8047 - components: - - type: Transform - pos: 4.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8048 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8049 - components: - - type: Transform - pos: 4.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8050 - components: - - type: Transform - pos: 4.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8055 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8056 - components: - - type: Transform - pos: 5.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8059 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8061 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#CB00F5FF' - - uid: 8063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 8068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8070 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8072 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8073 - components: - - type: Transform - pos: 5.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8075 - components: - - type: Transform - pos: 11.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8078 - components: - - type: Transform - pos: -56.5,33.5 - parent: 2 - - uid: 8079 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8081 - components: - - type: Transform - pos: 12.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8083 - components: - - type: Transform - pos: 9.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8084 - components: - - type: Transform - pos: 9.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8087 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8088 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8089 - components: - - type: Transform - pos: 18.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8090 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8092 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8097 - components: - - type: Transform - pos: -7.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8098 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8100 - components: - - type: Transform - pos: -53.5,32.5 - parent: 2 - - uid: 8101 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,38.5 - parent: 2 - - uid: 8103 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,37.5 - parent: 2 - - uid: 8104 - components: - - type: Transform - pos: -62.5,32.5 - parent: 2 - - uid: 8105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,35.5 - parent: 2 - - uid: 8106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,33.5 - parent: 2 - - uid: 8107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,33.5 - parent: 2 - - uid: 8108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,33.5 - parent: 2 - - uid: 8109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8110 - components: - - type: Transform - pos: -54.5,37.5 - parent: 2 - - uid: 8111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,36.5 - parent: 2 - - uid: 8112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,36.5 - parent: 2 - - uid: 8113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,36.5 - parent: 2 - - uid: 8114 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - - uid: 8115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,34.5 - parent: 2 - - uid: 8116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,34.5 - parent: 2 - - uid: 8117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,34.5 - parent: 2 - - uid: 8118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,34.5 - parent: 2 - - uid: 8119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,36.5 - parent: 2 - - uid: 8120 - components: - - type: Transform - pos: -62.5,36.5 - parent: 2 - - uid: 8121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,32.5 - parent: 2 - - uid: 8122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,32.5 - parent: 2 - - uid: 8123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,32.5 - parent: 2 - - uid: 8124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,32.5 - parent: 2 - - uid: 8125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,35.5 - parent: 2 - - uid: 8127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,34.5 - parent: 2 - - uid: 8128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,31.5 - parent: 2 - - uid: 8129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,34.5 - parent: 2 - - uid: 8130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,33.5 - parent: 2 - - uid: 8131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8140 - components: - - type: Transform - pos: 0.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8141 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8145 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 8146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8155 - components: - - type: Transform - pos: -27.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8161 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8164 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8165 - components: - - type: Transform - pos: 4.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8166 - components: - - type: Transform - pos: -23.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8171 - components: - - type: Transform - pos: 39.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8172 - components: - - type: Transform - pos: 12.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#CB00F5FF' - - uid: 8175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 8177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8179 - components: - - type: Transform - pos: -6.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8180 - components: - - type: Transform - pos: -6.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8181 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8182 - components: - - type: Transform - pos: -6.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8183 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8184 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8185 - components: - - type: Transform - pos: -6.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8186 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8187 - components: - - type: Transform - pos: -6.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8188 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8197 - components: - - type: Transform - pos: 34.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8198 - components: - - type: Transform - pos: 34.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8204 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8205 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8211 - components: - - type: Transform - pos: -12.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8212 - components: - - type: Transform - pos: -12.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8213 - components: - - type: Transform - pos: -12.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8214 - components: - - type: Transform - pos: 33.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8215 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8241 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8245 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8249 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8250 - components: - - type: Transform - pos: 37.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8251 - components: - - type: Transform - pos: 37.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8252 - components: - - type: Transform - pos: 37.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8253 - components: - - type: Transform - pos: 37.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8275 - components: - - type: Transform - pos: 2.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8276 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8277 - components: - - type: Transform - pos: 2.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8279 - components: - - type: Transform - pos: 39.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8280 - components: - - type: Transform - pos: 39.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8281 - components: - - type: Transform - pos: 39.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8282 - components: - - type: Transform - pos: 39.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8283 - components: - - type: Transform - pos: 39.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8291 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8299 - components: - - type: Transform - pos: 38.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8300 - components: - - type: Transform - pos: 38.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8301 - components: - - type: Transform - pos: 38.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8302 - components: - - type: Transform - pos: 38.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8326 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8327 - components: - - type: Transform - pos: 24.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8328 - components: - - type: Transform - pos: 24.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8329 - components: - - type: Transform - pos: 24.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8330 - components: - - type: Transform - pos: 24.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8331 - components: - - type: Transform - pos: 24.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8332 - components: - - type: Transform - pos: 24.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8333 - components: - - type: Transform - pos: 24.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8338 - components: - - type: Transform - pos: -1.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8339 - components: - - type: Transform - pos: -1.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8341 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8348 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8353 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8358 - components: - - type: Transform - pos: 6.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8388 - components: - - type: Transform - pos: 34.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8389 - components: - - type: Transform - pos: 34.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8390 - components: - - type: Transform - pos: 34.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8391 - components: - - type: Transform - pos: 34.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8392 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8393 - components: - - type: Transform - pos: 34.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8394 - components: - - type: Transform - pos: 34.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8395 - components: - - type: Transform - pos: 34.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8396 - components: - - type: Transform - pos: 34.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8430 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8433 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8436 - components: - - type: Transform - pos: 41.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8437 - components: - - type: Transform - pos: 41.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8438 - components: - - type: Transform - pos: 41.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8439 - components: - - type: Transform - pos: 41.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8440 - components: - - type: Transform - pos: 41.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8443 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8444 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8446 - components: - - type: Transform - pos: 36.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8451 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8452 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8461 - components: - - type: Transform - pos: 39.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8462 - components: - - type: Transform - pos: 39.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8463 - components: - - type: Transform - pos: 39.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8469 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8471 - components: - - type: Transform - pos: 31.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8472 - components: - - type: Transform - pos: 31.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8473 - components: - - type: Transform - pos: 31.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8476 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8477 - components: - - type: Transform - pos: 31.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8478 - components: - - type: Transform - pos: 31.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8479 - components: - - type: Transform - pos: 31.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8480 - components: - - type: Transform - pos: 31.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8500 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8512 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8513 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8514 - components: - - type: Transform - pos: 32.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8515 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8520 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8522 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8537 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8538 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8542 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8555 - components: - - type: Transform - pos: 4.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8556 - components: - - type: Transform - pos: 4.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8567 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8568 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8580 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8582 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8587 - components: - - type: Transform - pos: 1.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8588 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8589 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8590 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8591 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8592 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8593 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8596 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8597 - components: - - type: Transform - pos: 13.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8600 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8601 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8604 - components: - - type: Transform - pos: 13.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8605 - components: - - type: Transform - pos: 13.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8606 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8607 - components: - - type: Transform - pos: 26.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8608 - components: - - type: Transform - pos: 26.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8609 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8610 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8611 - components: - - type: Transform - pos: 26.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8612 - components: - - type: Transform - pos: 26.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8616 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8625 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8630 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8632 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8636 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8637 - components: - - type: Transform - pos: 12.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8638 - components: - - type: Transform - pos: 5.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8639 - components: - - type: Transform - pos: 9.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8641 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8645 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8646 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8655 - components: - - type: Transform - pos: 12.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8656 - components: - - type: Transform - pos: 12.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8657 - components: - - type: Transform - pos: 12.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8658 - components: - - type: Transform - pos: 12.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8660 - components: - - type: Transform - pos: 13.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8661 - components: - - type: Transform - pos: 13.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8662 - components: - - type: Transform - pos: 13.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8663 - components: - - type: Transform - pos: 11.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8664 - components: - - type: Transform - pos: 11.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8665 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8671 - components: - - type: Transform - pos: 14.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8672 - components: - - type: Transform - pos: 14.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8674 - components: - - type: Transform - pos: 4.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8685 - components: - - type: Transform - pos: 14.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8686 - components: - - type: Transform - pos: 14.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8687 - components: - - type: Transform - pos: 14.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8688 - components: - - type: Transform - pos: 14.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8689 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8690 - components: - - type: Transform - pos: 14.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8691 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8698 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8699 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8701 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8704 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8709 - components: - - type: Transform - pos: 22.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8710 - components: - - type: Transform - pos: 22.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8711 - components: - - type: Transform - pos: 22.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8712 - components: - - type: Transform - pos: 22.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8713 - components: - - type: Transform - pos: 22.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8714 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8716 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8717 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8722 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8723 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8724 - components: - - type: Transform - pos: -0.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8725 - components: - - type: Transform - pos: -0.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8727 - components: - - type: Transform - pos: 0.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8729 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8736 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8737 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8738 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8739 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8740 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8741 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8742 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8744 - components: - - type: Transform - pos: 13.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8745 - components: - - type: Transform - pos: 13.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8746 - components: - - type: Transform - pos: 12.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8747 - components: - - type: Transform - pos: 12.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8748 - components: - - type: Transform - pos: 12.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8759 - components: - - type: Transform - pos: 12.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8760 - components: - - type: Transform - pos: 12.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8761 - components: - - type: Transform - pos: 12.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8779 - components: - - type: Transform - pos: -7.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8780 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8792 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8793 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8798 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8805 - components: - - type: Transform - pos: -17.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8806 - components: - - type: Transform - pos: -17.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8807 - components: - - type: Transform - pos: -17.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8808 - components: - - type: Transform - pos: -17.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8809 - components: - - type: Transform - pos: -17.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8810 - components: - - type: Transform - pos: -17.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8811 - components: - - type: Transform - pos: -17.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8812 - components: - - type: Transform - pos: -17.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8813 - components: - - type: Transform - pos: -16.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8814 - components: - - type: Transform - pos: -16.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8815 - components: - - type: Transform - pos: -16.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8816 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8817 - components: - - type: Transform - pos: -16.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8827 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8834 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8838 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8839 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AABBFF' - - uid: 8841 - components: - - type: Transform - pos: -7.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8843 - components: - - type: Transform - pos: -3.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8844 - components: - - type: Transform - pos: -3.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8845 - components: - - type: Transform - pos: -3.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8846 - components: - - type: Transform - pos: -3.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8847 - components: - - type: Transform - pos: -3.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8853 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8856 - components: - - type: Transform - pos: -14.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8857 - components: - - type: Transform - pos: -14.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8858 - components: - - type: Transform - pos: -14.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8859 - components: - - type: Transform - pos: -14.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8860 - components: - - type: Transform - pos: -14.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8864 - components: - - type: Transform - pos: -17.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8865 - components: - - type: Transform - pos: -17.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8866 - components: - - type: Transform - pos: -17.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8867 - components: - - type: Transform - pos: -17.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8884 - components: - - type: Transform - pos: -25.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8885 - components: - - type: Transform - pos: -25.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8886 - components: - - type: Transform - pos: -25.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8887 - components: - - type: Transform - pos: -25.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8890 - components: - - type: Transform - pos: -24.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8891 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8893 - components: - - type: Transform - pos: -24.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8894 - components: - - type: Transform - pos: -24.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8895 - components: - - type: Transform - pos: -24.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8896 - components: - - type: Transform - pos: -24.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8897 - components: - - type: Transform - pos: -24.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8898 - components: - - type: Transform - pos: -24.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8899 - components: - - type: Transform - pos: -24.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8900 - components: - - type: Transform - pos: -24.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8901 - components: - - type: Transform - pos: -25.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8902 - components: - - type: Transform - pos: -25.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8903 - components: - - type: Transform - pos: -25.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8904 - components: - - type: Transform - pos: -25.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8905 - components: - - type: Transform - pos: -25.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8906 - components: - - type: Transform - pos: -25.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8907 - components: - - type: Transform - pos: -25.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8908 - components: - - type: Transform - pos: -25.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8915 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8920 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8921 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8922 - components: - - type: Transform - pos: -8.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8923 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8924 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8925 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8926 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8927 - components: - - type: Transform - pos: -42.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8928 - components: - - type: Transform - pos: -42.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8929 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8930 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8931 - components: - - type: Transform - pos: -42.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8932 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8935 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8937 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8938 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8939 - components: - - type: Transform - pos: -41.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8973 - components: - - type: Transform - pos: -28.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8974 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8975 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8976 - components: - - type: Transform - pos: -28.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8977 - components: - - type: Transform - pos: -28.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8978 - components: - - type: Transform - pos: -35.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8979 - components: - - type: Transform - pos: -39.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8988 - components: - - type: Transform - pos: -37.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8994 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8995 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8997 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 8998 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9002 - components: - - type: Transform - pos: -46.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9003 - components: - - type: Transform - pos: -46.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9004 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9005 - components: - - type: Transform - pos: -47.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9006 - components: - - type: Transform - pos: -47.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9007 - components: - - type: Transform - pos: -47.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9008 - components: - - type: Transform - pos: -47.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9009 - components: - - type: Transform - pos: -47.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9010 - components: - - type: Transform - pos: -47.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9015 - components: - - type: Transform - pos: -46.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9016 - components: - - type: Transform - pos: -46.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9018 - components: - - type: Transform - pos: -46.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9019 - components: - - type: Transform - pos: -47.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9020 - components: - - type: Transform - pos: -47.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9021 - components: - - type: Transform - pos: -47.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9022 - components: - - type: Transform - pos: -47.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9024 - components: - - type: Transform - pos: -49.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9025 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9026 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9027 - components: - - type: Transform - pos: -58.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9028 - components: - - type: Transform - pos: -58.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9046 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9048 - components: - - type: Transform - pos: -58.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9049 - components: - - type: Transform - pos: -58.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9050 - components: - - type: Transform - pos: -55.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9051 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9052 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9057 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9060 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9061 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9063 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9065 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9066 - components: - - type: Transform - pos: -56.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9067 - components: - - type: Transform - pos: -56.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9068 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9069 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9070 - components: - - type: Transform - pos: -50.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9071 - components: - - type: Transform - pos: -53.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9072 - components: - - type: Transform - pos: -53.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9075 - components: - - type: Transform - pos: -53.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9076 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9077 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9082 - components: - - type: Transform - pos: -56.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9085 - components: - - type: Transform - pos: -56.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9093 - components: - - type: Transform - pos: -56.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9094 - components: - - type: Transform - pos: -49.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9095 - components: - - type: Transform - pos: -22.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9096 - components: - - type: Transform - pos: -22.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9097 - components: - - type: Transform - pos: -22.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9098 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9099 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9100 - components: - - type: Transform - pos: -37.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9101 - components: - - type: Transform - pos: -37.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9102 - components: - - type: Transform - pos: -37.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9103 - components: - - type: Transform - pos: -37.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9104 - components: - - type: Transform - pos: -37.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9134 - components: - - type: Transform - pos: -17.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9135 - components: - - type: Transform - pos: -17.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9136 - components: - - type: Transform - pos: -17.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9137 - components: - - type: Transform - pos: -17.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9138 - components: - - type: Transform - pos: -17.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9139 - components: - - type: Transform - pos: -17.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9140 - components: - - type: Transform - pos: -17.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9141 - components: - - type: Transform - pos: -17.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9168 - components: - - type: Transform - pos: -41.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9181 - components: - - type: Transform - pos: -25.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9184 - components: - - type: Transform - pos: -28.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9185 - components: - - type: Transform - pos: -28.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9188 - components: - - type: Transform - pos: -28.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9197 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9202 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9220 - components: - - type: Transform - pos: -36.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9221 - components: - - type: Transform - pos: -36.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9222 - components: - - type: Transform - pos: -36.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9223 - components: - - type: Transform - pos: -36.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9230 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9233 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9234 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9235 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9240 - components: - - type: Transform - pos: -41.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9251 - components: - - type: Transform - pos: -32.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9252 - components: - - type: Transform - pos: -32.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9253 - components: - - type: Transform - pos: -32.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9254 - components: - - type: Transform - pos: -31.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9255 - components: - - type: Transform - pos: -31.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9256 - components: - - type: Transform - pos: -31.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9257 - components: - - type: Transform - pos: -31.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9261 - components: - - type: Transform - pos: -36.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9262 - components: - - type: Transform - pos: -36.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9263 - components: - - type: Transform - pos: -36.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9264 - components: - - type: Transform - pos: 0.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9265 - components: - - type: Transform - pos: 0.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9266 - components: - - type: Transform - pos: -35.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9267 - components: - - type: Transform - pos: 0.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9268 - components: - - type: Transform - pos: 0.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9278 - components: - - type: Transform - pos: -43.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9284 - components: - - type: Transform - pos: -46.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9285 - components: - - type: Transform - pos: -46.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9286 - components: - - type: Transform - pos: -46.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9287 - components: - - type: Transform - pos: -46.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9294 - components: - - type: Transform - pos: -40.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9295 - components: - - type: Transform - pos: -40.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9296 - components: - - type: Transform - pos: -40.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9297 - components: - - type: Transform - pos: -40.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9298 - components: - - type: Transform - pos: -40.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9299 - components: - - type: Transform - pos: -40.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9300 - components: - - type: Transform - pos: -40.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9301 - components: - - type: Transform - pos: -40.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9302 - components: - - type: Transform - pos: -40.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9303 - components: - - type: Transform - pos: -40.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9304 - components: - - type: Transform - pos: -40.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9305 - components: - - type: Transform - pos: -40.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9306 - components: - - type: Transform - pos: -40.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9307 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9308 - components: - - type: Transform - pos: -42.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9309 - components: - - type: Transform - pos: -42.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9310 - components: - - type: Transform - pos: -42.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9311 - components: - - type: Transform - pos: -42.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9312 - components: - - type: Transform - pos: -42.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9313 - components: - - type: Transform - pos: -42.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9315 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9316 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9329 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9377 - components: - - type: Transform - pos: -11.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9378 - components: - - type: Transform - pos: -11.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9379 - components: - - type: Transform - pos: -11.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9380 - components: - - type: Transform - pos: -11.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9381 - components: - - type: Transform - pos: -11.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9382 - components: - - type: Transform - pos: -11.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9383 - components: - - type: Transform - pos: -8.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9384 - components: - - type: Transform - pos: -8.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9385 - components: - - type: Transform - pos: -8.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9386 - components: - - type: Transform - pos: -8.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9387 - components: - - type: Transform - pos: -8.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9388 - components: - - type: Transform - pos: -8.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9389 - components: - - type: Transform - pos: -8.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9395 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9402 - components: - - type: Transform - pos: -3.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9419 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9423 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9424 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9426 - components: - - type: Transform - pos: -40.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9427 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9428 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9432 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9433 - components: - - type: Transform - pos: -3.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9434 - components: - - type: Transform - pos: -3.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9435 - components: - - type: Transform - pos: -3.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9436 - components: - - type: Transform - pos: -3.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9437 - components: - - type: Transform - pos: -3.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9438 - components: - - type: Transform - pos: -3.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9439 - components: - - type: Transform - pos: -5.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9440 - components: - - type: Transform - pos: -5.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9441 - components: - - type: Transform - pos: -5.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9442 - components: - - type: Transform - pos: -5.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9443 - components: - - type: Transform - pos: -5.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9444 - components: - - type: Transform - pos: -5.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9452 - components: - - type: Transform - pos: -3.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9456 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9458 - components: - - type: Transform - pos: -3.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9460 - components: - - type: Transform - pos: -3.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9466 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9468 - components: - - type: Transform - pos: -3.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9469 - components: - - type: Transform - pos: -3.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9470 - components: - - type: Transform - pos: -3.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9471 - components: - - type: Transform - pos: -3.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9472 - components: - - type: Transform - pos: -3.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9473 - components: - - type: Transform - pos: -3.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9474 - components: - - type: Transform - pos: -3.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9475 - components: - - type: Transform - pos: -3.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9476 - components: - - type: Transform - pos: -3.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9477 - components: - - type: Transform - pos: -3.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9478 - components: - - type: Transform - pos: -4.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9479 - components: - - type: Transform - pos: -4.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9480 - components: - - type: Transform - pos: -4.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9481 - components: - - type: Transform - pos: -4.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9482 - components: - - type: Transform - pos: -4.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9483 - components: - - type: Transform - pos: -4.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9484 - components: - - type: Transform - pos: -4.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9485 - components: - - type: Transform - pos: -4.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9486 - components: - - type: Transform - pos: -4.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9491 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9498 - components: - - type: Transform - pos: -46.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9499 - components: - - type: Transform - pos: -46.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9500 - components: - - type: Transform - pos: -46.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9501 - components: - - type: Transform - pos: -46.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9502 - components: - - type: Transform - pos: -46.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9503 - components: - - type: Transform - pos: -46.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9504 - components: - - type: Transform - pos: -46.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9505 - components: - - type: Transform - pos: -46.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9506 - components: - - type: Transform - pos: -46.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9509 - components: - - type: Transform - pos: -48.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9510 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9515 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9516 - components: - - type: Transform - pos: -27.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9517 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9518 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9525 - components: - - type: Transform - pos: -31.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9526 - components: - - type: Transform - pos: -31.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9527 - components: - - type: Transform - pos: -31.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9531 - components: - - type: Transform - pos: -37.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9532 - components: - - type: Transform - pos: -37.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9533 - components: - - type: Transform - pos: -27.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9534 - components: - - type: Transform - pos: -27.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9535 - components: - - type: Transform - pos: -27.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9536 - components: - - type: Transform - pos: -40.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9543 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9544 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9548 - components: - - type: Transform - pos: -19.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9549 - components: - - type: Transform - pos: -19.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9551 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,48.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9572 - components: - - type: Transform - pos: -37.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9575 - components: - - type: Transform - pos: 27.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9576 - components: - - type: Transform - pos: -19.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 9578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9583 - components: - - type: Transform - pos: -17.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9586 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9587 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9588 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9597 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9599 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9601 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9603 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9604 - components: - - type: Transform - pos: -37.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9607 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9609 - components: - - type: Transform - pos: -17.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9610 - components: - - type: Transform - pos: 27.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9612 - components: - - type: Transform - pos: -17.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9614 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9623 - components: - - type: Transform - pos: -40.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9628 - components: - - type: Transform - pos: 9.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9629 - components: - - type: Transform - pos: 12.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9630 - components: - - type: Transform - pos: 9.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9633 - components: - - type: Transform - pos: -46.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9634 - components: - - type: Transform - pos: 9.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9636 - components: - - type: Transform - pos: -46.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9637 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9639 - components: - - type: Transform - pos: -37.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9640 - components: - - type: Transform - pos: -37.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9641 - components: - - type: Transform - pos: -37.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9642 - components: - - type: Transform - pos: -37.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9649 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9661 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9663 - components: - - type: Transform - pos: -27.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9679 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9680 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9681 - components: - - type: Transform - pos: -16.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9682 - components: - - type: Transform - pos: -16.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9683 - components: - - type: Transform - pos: -16.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9684 - components: - - type: Transform - pos: -16.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9685 - components: - - type: Transform - pos: 4.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9686 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9691 - components: - - type: Transform - pos: -36.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9692 - components: - - type: Transform - pos: -36.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9696 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9697 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9704 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9706 - components: - - type: Transform - pos: -27.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9707 - components: - - type: Transform - pos: 22.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9708 - components: - - type: Transform - pos: 22.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9709 - components: - - type: Transform - pos: 22.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9710 - components: - - type: Transform - pos: 22.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9711 - components: - - type: Transform - pos: 23.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9713 - components: - - type: Transform - pos: -46.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9714 - components: - - type: Transform - pos: -46.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9715 - components: - - type: Transform - pos: -46.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9725 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9727 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9728 - components: - - type: Transform - pos: -16.5,-76.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9729 - components: - - type: Transform - pos: -16.5,-77.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9730 - components: - - type: Transform - pos: -16.5,-78.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9731 - components: - - type: Transform - pos: -16.5,-79.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9732 - components: - - type: Transform - pos: -16.5,-80.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9739 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9740 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9741 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-68.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-67.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-64.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-63.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-60.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-59.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-58.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9757 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9758 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9766 - components: - - type: Transform - pos: -13.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9767 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9768 - components: - - type: Transform - pos: -12.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9769 - components: - - type: Transform - pos: -12.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9770 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9771 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9772 - components: - - type: Transform - pos: -12.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9773 - components: - - type: Transform - pos: -12.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9777 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9790 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9791 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9796 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9797 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9798 - components: - - type: Transform - pos: 11.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9799 - components: - - type: Transform - pos: 11.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 9803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9805 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 9811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 9812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9815 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9816 - components: - - type: Transform - pos: -8.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9817 - components: - - type: Transform - pos: -8.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 9819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 9820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 9822 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9823 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9825 - components: - - type: Transform - pos: -2.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9826 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#CB00F5FF' - - uid: 9827 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#CB00F5FF' - - uid: 9829 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9830 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 9832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 9833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#CB00F5FF' - - uid: 9834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 9835 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9837 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 13766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 14296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 16857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17498 - components: - - type: Transform - pos: -31.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 17512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 - parent: 2 - - uid: 17522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17526 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17527 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17537 - components: - - type: Transform - pos: -24.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17539 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17541 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17624 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17643 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-31.5 - parent: 2 - - uid: 17684 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-31.5 - parent: 2 - - uid: 17685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-31.5 - parent: 2 - - uid: 17686 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-31.5 - parent: 2 - - uid: 17687 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-31.5 - parent: 2 - - uid: 17688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-31.5 - parent: 2 - - uid: 17689 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-31.5 - parent: 2 - - uid: 17690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-31.5 - parent: 2 - - uid: 17692 - components: - - type: Transform - pos: -26.5,-32.5 - parent: 2 - - uid: 17786 - components: - - type: Transform - pos: -38.5,-47.5 - parent: 2 - - uid: 17787 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 2 - - uid: 17792 - components: - - type: Transform - pos: -38.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17793 - components: - - type: Transform - pos: -38.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17794 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17819 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17821 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17824 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17825 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 17829 - components: - - type: Transform - pos: -25.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17830 - components: - - type: Transform - pos: -25.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17831 - components: - - type: Transform - pos: -25.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17832 - components: - - type: Transform - pos: -25.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17833 - components: - - type: Transform - pos: -25.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17834 - components: - - type: Transform - pos: -25.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17835 - components: - - type: Transform - pos: -25.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' -- proto: GasPipeTJunction - entities: - - uid: 2633 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2641 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 2659 - components: - - type: Transform - pos: -38.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 3812 - components: - - type: Transform - pos: -37.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3818 - components: - - type: Transform - pos: -38.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3823 - components: - - type: Transform - pos: -31.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 5000 - components: - - type: Transform - pos: -36.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 7257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9840 - components: - - type: Transform - pos: -6.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 9842 - components: - - type: Transform - pos: -1.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 9845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 9846 - components: - - type: Transform - pos: 7.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9853 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9854 - components: - - type: Transform - pos: -13.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9858 - components: - - type: Transform - pos: 10.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9859 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9861 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9864 - components: - - type: Transform - pos: 8.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 9868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 9869 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9871 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9872 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9873 - components: - - type: Transform - pos: -22.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9874 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9875 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9877 - components: - - type: Transform - pos: -56.5,37.5 - parent: 2 - - uid: 9878 - components: - - type: Transform - pos: -50.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9879 - components: - - type: Transform - pos: -55.5,34.5 - parent: 2 - - uid: 9880 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9882 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,33.5 - parent: 2 - - uid: 9883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9884 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9885 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9886 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,36.5 - parent: 2 - - uid: 9887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9888 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9891 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9897 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9898 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9900 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9901 - components: - - type: Transform - pos: 20.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9902 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9904 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9905 - components: - - type: Transform - pos: 4.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9907 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9910 - components: - - type: Transform - pos: -48.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9915 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9920 - components: - - type: Transform - pos: -10.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9921 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9923 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9924 - components: - - type: Transform - pos: 30.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9925 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9927 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9928 - components: - - type: Transform - pos: -4.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9929 - components: - - type: Transform - pos: -1.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9932 - components: - - type: Transform - pos: 17.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9934 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9935 - components: - - type: Transform - pos: 25.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9937 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9940 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9941 - components: - - type: Transform - pos: 15.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9946 - components: - - type: Transform - pos: 12.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9947 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9948 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9950 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9956 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9957 - components: - - type: Transform - pos: 14.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9960 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9967 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9971 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9972 - components: - - type: Transform - pos: 37.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9975 - components: - - type: Transform - pos: 20.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9977 - components: - - type: Transform - pos: 12.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9982 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9984 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 9985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9988 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9993 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9994 - components: - - type: Transform - pos: 21.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9996 - components: - - type: Transform - pos: 18.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 9999 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10001 - components: - - type: Transform - pos: 14.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10002 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10005 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10009 - components: - - type: Transform - pos: 13.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10010 - components: - - type: Transform - pos: 12.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10013 - components: - - type: Transform - pos: 1.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10014 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10017 - components: - - type: Transform - pos: 11.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10023 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10025 - components: - - type: Transform - pos: -9.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10026 - components: - - type: Transform - pos: -13.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10028 - components: - - type: Transform - pos: -16.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10030 - components: - - type: Transform - pos: -24.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10031 - components: - - type: Transform - pos: -22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AABBFF' - - uid: 10033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10035 - components: - - type: Transform - pos: -13.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10038 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10039 - components: - - type: Transform - pos: -17.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10040 - components: - - type: Transform - pos: -23.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10050 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10057 - components: - - type: Transform - pos: -27.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10060 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10061 - components: - - type: Transform - pos: -37.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10062 - components: - - type: Transform - pos: -37.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10063 - components: - - type: Transform - pos: -52.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10064 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10066 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10069 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10070 - components: - - type: Transform - pos: -56.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10071 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10073 - components: - - type: Transform - pos: -50.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10075 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10077 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10078 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10083 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10086 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10087 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10088 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10089 - components: - - type: Transform - pos: -32.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10090 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10091 - components: - - type: Transform - pos: -31.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10093 - components: - - type: Transform - pos: -30.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10094 - components: - - type: Transform - pos: -43.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10095 - components: - - type: Transform - pos: -28.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10096 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10097 - components: - - type: Transform - pos: -28.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10102 - components: - - type: Transform - pos: -36.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10108 - components: - - type: Transform - pos: -32.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10119 - components: - - type: Transform - pos: -1.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10121 - components: - - type: Transform - pos: -17.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10128 - components: - - type: Transform - pos: -47.5,40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10129 - components: - - type: Transform - pos: 2.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10130 - components: - - type: Transform - pos: -2.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10137 - components: - - type: Transform - pos: -4.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10138 - components: - - type: Transform - pos: -18.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10140 - components: - - type: Transform - pos: -28.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10141 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10142 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10143 - components: - - type: Transform - pos: -43.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10145 - components: - - type: Transform - pos: -37.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10147 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10149 - components: - - type: Transform - pos: -34.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10152 - components: - - type: Transform - pos: -21.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10153 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10154 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-75.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10161 - components: - - type: Transform - pos: 25.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 10166 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 10167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 10169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 10173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 12008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 15217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 15226 - components: - - type: Transform - pos: -43.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17479 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17495 - components: - - type: Transform - pos: -36.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 17795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17887 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' -- proto: GasPort - entities: - - uid: 10174 - components: - - type: Transform - pos: -2.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-47.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10178 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10182 - components: - - type: Transform - pos: -3.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-48.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10188 - components: - - type: Transform - pos: -4.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10189 - components: - - type: Transform - pos: -5.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-49.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 17631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasPressurePump - entities: - - uid: 10191 - components: - - type: MetaData - name: air output pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 10192 - components: - - type: MetaData - name: plasma pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#CB00F5FF' - - uid: 10193 - components: - - type: MetaData - name: oxygen input pump - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 10194 - components: - - type: MetaData - name: plasma input pump - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-48.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 10195 - components: - - type: MetaData - name: waste input pump - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-50.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 10196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10197 - components: - - type: MetaData - name: waste pump - - type: Transform - pos: -7.5,-37.5 - parent: 2 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10198 - components: - - type: MetaData - name: distribution pump - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-37.5 - parent: 2 - - type: GasPressurePump - targetPressure: 200 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10199 - components: - - type: MetaData - name: cryogenics air pump - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,19.5 - parent: 2 - - type: GasPressurePump - targetPressure: 80 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - uid: 10200 - components: - - type: MetaData - name: oxygen pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10202 - components: - - type: MetaData - name: nitrogen pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#EE4B2BFF' - - uid: 10203 - components: - - type: MetaData - name: CO2 pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-47.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#808080FF' - - uid: 10204 - components: - - type: MetaData - name: CO2 input pump - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-46.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 10205 - components: - - type: MetaData - name: burn chamber input pump - - type: Transform - pos: -6.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10206 - components: - - type: MetaData - name: burn chamber output pump - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10207 - components: - - type: MetaData - name: air input pump - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 10208 - components: - - type: MetaData - name: nitrogen input pump - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 10209 - components: - - type: MetaData - name: waste output pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-51.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 17513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-46.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17520 - components: - - type: Transform - pos: -27.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17629 - components: - - type: MetaData - name: coolant extract - - type: Transform - pos: -36.5,-44.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17630 - components: - - type: MetaData - name: coolant input - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-44.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17693 - components: - - type: Transform - pos: -26.5,-33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17881 - components: - - type: Transform - pos: -45.5,-41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17882 - components: - - type: Transform - pos: -44.5,-41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17883 - components: - - type: Transform - pos: -43.5,-41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17884 - components: - - type: Transform - pos: -42.5,-41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' -- proto: GasRecycler - entities: - - uid: 10210 - components: - - type: Transform - pos: 2.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasRecyclerMachineCircuitboard - entities: - - uid: 10211 - components: - - type: Transform - pos: -11.321217,-26.350395 - parent: 2 -- proto: GasThermoMachineFreezer - entities: - - uid: 10212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#00FFFFFF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 10213 - components: - - type: Transform - pos: -8.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - type: AtmosDevice - joinedGrid: 2 - - uid: 17634 - components: - - type: Transform - pos: -37.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - type: AtmosDevice - joinedGrid: 2 -- proto: GasThermoMachineFreezerEnabled - entities: - - uid: 10214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#00AABBFF' - - type: AtmosDevice - joinedGrid: 2 -- proto: GasThermoMachineHeater - entities: - - uid: 10215 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: GasValve - entities: - - uid: 2634 - components: - - type: MetaData - name: radiator bypass - - type: Transform - pos: -38.5,-39.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 3161 - components: - - type: MetaData - name: distro to coolant - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-45.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 3893 - components: - - type: MetaData - name: hot to filters - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-34.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 6249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-33.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 10216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-44.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-44.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10218 - components: - - type: MetaData - name: oxygen burn chamber valve - - type: Transform - pos: -2.5,-46.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10219 - components: - - type: MetaData - name: waste space valve - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-40.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 10220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,37.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - uid: 10221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,34.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - uid: 10222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-51.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 17510 - components: - - type: MetaData - name: hot to waste - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-34.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 17682 - components: - - type: MetaData - name: filtered hot to waste - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-32.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - uid: 17785 - components: - - type: MetaData - name: coolant to space - - type: Transform - pos: -38.5,-46.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-43.5 - parent: 2 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasVentPump - entities: - - uid: 2584 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17544 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 2674 - components: - - type: Transform - pos: -31.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17544 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 3906 - components: - - type: Transform - pos: -30.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17544 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 10223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,24.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10226 - components: - - type: Transform - pos: 39.5,1.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10227 - components: - - type: Transform - pos: 9.5,-36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-32.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10233 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10234 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10235 - components: - - type: Transform - pos: 18.5,18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,38.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10240 - components: - - type: Transform - pos: -46.5,39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10241 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 10243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,27.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-75.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10246 - components: - - type: Transform - pos: -10.5,-27.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-32.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10251 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-29.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-25.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10254 - components: - - type: Transform - pos: 26.5,2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10255 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10257 - components: - - type: Transform - pos: 31.5,-18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10260 - components: - - type: Transform - pos: -7.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10261 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10262 - components: - - type: Transform - pos: 35.5,1.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-29.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10271 - components: - - type: Transform - pos: 21.5,-8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10272 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10276 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10281 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,19.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,24.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10295 - components: - - type: Transform - pos: -7.5,15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00AABBFF' - - uid: 10297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10298 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10300 - components: - - type: Transform - pos: -24.5,15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10303 - components: - - type: Transform - pos: -37.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-1.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10313 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#34EB43FF' - - uid: 10316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10318 - components: - - type: Transform - pos: -20.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10319 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10320 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,25.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10321 - components: - - type: Transform - pos: -28.5,9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10322 - components: - - type: Transform - pos: -44.5,29.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10325 - components: - - type: Transform - pos: -20.5,-74.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10328 - components: - - type: Transform - pos: -52.5,37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10329 - components: - - type: Transform - pos: -19.5,23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,29.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10331 - components: - - type: Transform - pos: -22.5,40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10334 - components: - - type: Transform - pos: -11.5,43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,26.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,26.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,32.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10339 - components: - - type: Transform - pos: -41.5,34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10344 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10347 - components: - - type: Transform - pos: -42.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10350 - components: - - type: Transform - pos: -19.5,30.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,47.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,50.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,47.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10356 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-28.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10360 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10361 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10362 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10364 - components: - - type: Transform - pos: 27.5,8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10367 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10369 - components: - - type: Transform - pos: -20.5,34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,31.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10374 - components: - - type: Transform - pos: -34.5,10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10376 - components: - - type: Transform - pos: -33.5,19.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10379 - components: - - type: Transform - pos: -46.5,-0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10380 - components: - - type: Transform - pos: -45.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-44.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10385 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10386 - components: - - type: Transform - pos: -36.5,17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10388 - components: - - type: Transform - pos: -14.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,26.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,30.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10394 - components: - - type: Transform - pos: -43.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10395 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-81.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-72.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10399 - components: - - type: Transform - pos: -17.5,-74.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10400 - components: - - type: Transform - pos: -11.5,-74.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10407 - components: - - type: Transform - pos: -1.5,-37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 10408 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 17828 - components: - - type: Transform - pos: -26.5,-36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' -- proto: GasVentScrubber - entities: - - uid: 2675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17544 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 2676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17544 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 3901 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17544 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF5349FF' - - uid: 10409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,41.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10410 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-32.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-27.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-27.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10417 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10418 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10420 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10423 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10424 - components: - - type: Transform - pos: -40.5,42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10425 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10427 - components: - - type: Transform - pos: -55.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10428 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10430 - components: - - type: Transform - pos: -7.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10434 - components: - - type: Transform - pos: -11.5,-29.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-1.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-26.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-31.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10442 - components: - - type: Transform - pos: 26.5,9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10446 - components: - - type: Transform - pos: 20.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10448 - components: - - type: Transform - pos: 32.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10449 - components: - - type: Transform - pos: 27.5,-15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10450 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10453 - components: - - type: Transform - pos: 33.5,12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10455 - components: - - type: Transform - pos: 21.5,-13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10457 - components: - - type: Transform - pos: 40.5,12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10458 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,28.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10465 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,25.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10468 - components: - - type: Transform - pos: 21.5,24.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10470 - components: - - type: Transform - pos: 13.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10471 - components: - - type: Transform - pos: 6.5,-11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10472 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-19.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10476 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10479 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10482 - components: - - type: Transform - pos: 0.5,7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10484 - components: - - type: Transform - pos: 20.5,7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10485 - components: - - type: Transform - pos: -5.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10490 - components: - - type: Transform - pos: -14.5,11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10493 - components: - - type: Transform - pos: -14.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10495 - components: - - type: Transform - pos: -22.5,0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10502 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-14.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10505 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10506 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-5.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10508 - components: - - type: Transform - pos: -42.5,-0.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10509 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-15.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10511 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10514 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10515 - components: - - type: Transform - pos: -58.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10517 - components: - - type: Transform - pos: -52.5,-12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10518 - components: - - type: Transform - pos: -47.5,-3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10519 - components: - - type: Transform - pos: -52.5,-3.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-19.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10527 - components: - - type: Transform - pos: -28.5,-6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,25.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,26.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10531 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10532 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,27.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10533 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10534 - components: - - type: Transform - pos: -42.5,6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10535 - components: - - type: Transform - pos: -35.5,32.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10536 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10537 - components: - - type: Transform - pos: -49.5,34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10538 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10539 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10540 - components: - - type: Transform - pos: -16.5,18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10542 - components: - - type: Transform - pos: -24.5,40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10543 - components: - - type: Transform - pos: -26.5,35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10544 - components: - - type: Transform - pos: -15.5,35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10545 - components: - - type: Transform - pos: -19.5,35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10546 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,34.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10547 - components: - - type: Transform - pos: -8.5,43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10548 - components: - - type: Transform - pos: 0.5,39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10549 - components: - - type: Transform - pos: 3.5,26.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10550 - components: - - type: Transform - pos: -40.5,33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10551 - components: - - type: Transform - pos: -7.5,22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10554 - components: - - type: Transform - pos: -9.5,9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,2.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10556 - components: - - type: Transform - pos: -46.5,13.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10558 - components: - - type: Transform - pos: -37.5,18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,22.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10561 - components: - - type: Transform - pos: -31.5,19.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,11.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,20.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,26.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,46.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,29.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,29.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10572 - components: - - type: Transform - pos: 17.5,18.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10573 - components: - - type: Transform - pos: -12.5,-17.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#ADD8E6FF' - - uid: 10574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-9.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,24.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-21.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,32.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,26.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10579 - components: - - type: Transform - pos: 10.5,12.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,16.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-38.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-48.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 10585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-38.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#800080FF' - - uid: 17827 - components: - - type: Transform - pos: -25.5,-33.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17837 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasVolumePump - entities: - - uid: 3769 - components: - - type: Transform - pos: -43.5,-39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 10586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-46.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10587 - components: - - type: MetaData - name: burn chamber waste pump - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10588 - components: - - type: MetaData - name: air tank pump - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 10589 - components: - - type: MetaData - name: air tank pump - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#00008BFF' - - uid: 10590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-50.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#66FF00FF' - - uid: 10747 - components: - - type: Transform - pos: -44.5,-39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-37.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17482 - components: - - type: Transform - pos: -45.5,-39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' - - uid: 17485 - components: - - type: Transform - pos: -42.5,-39.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - type: AtmosPipeColor - color: '#07FFFFFF' -- proto: Gauze - entities: - - uid: 10591 - components: - - type: Transform - pos: 20.348022,3.509109 - parent: 2 - - uid: 10592 - components: - - type: Transform - pos: 20.566772,3.743648 - parent: 2 -- proto: Gauze1 - entities: - - uid: 10593 - components: - - type: Transform - pos: -36.244873,-24.761852 - parent: 2 -- proto: GeigerCounter - entities: - - uid: 10594 - components: - - type: Transform - pos: -48.71885,34.98339 - parent: 2 - - uid: 10595 - components: - - type: Transform - pos: -20.634808,-28.440205 - parent: 2 - - uid: 10596 - components: - - type: Transform - pos: -20.301476,-28.461052 - parent: 2 - - uid: 13158 - components: - - type: Transform - pos: -18.306057,-45.483337 - parent: 2 - - uid: 17776 - components: - - type: MetaData - desc: A wall mounted device used for detecting and measuring radiation pulses. - name: wall mounted Geiger counter - - type: Transform - anchored: True - pos: -30.5,-40.5 - parent: 2 - - type: Geiger - isEnabled: True - - type: Physics - canCollide: False - bodyType: Static - - type: RadiationReceiver - - type: Anchorable -- proto: GeneratorBasic - entities: - - uid: 10597 - components: - - type: Transform - pos: -44.5,51.5 - parent: 2 -- proto: GeneratorWallmountAPU - entities: - - uid: 773 - components: - - type: Transform - pos: -13.5,-71.5 - parent: 2 - - uid: 2922 - components: - - type: Transform - pos: -18.5,-71.5 - parent: 2 - - uid: 3692 - components: - - type: Transform - pos: -18.5,-75.5 - parent: 2 - - uid: 3694 - components: - - type: Transform - pos: -18.5,-77.5 - parent: 2 - - uid: 12101 - components: - - type: Transform - pos: -13.5,-82.5 - parent: 2 - - uid: 12103 - components: - - type: Transform - pos: -13.5,-81.5 - parent: 2 -- proto: Girder - entities: - - uid: 10598 - components: - - type: Transform - pos: -43.5,55.5 - parent: 2 -- proto: GlassBoxLaserFilled - entities: - - uid: 7098 - components: - - type: Transform - pos: -1.5,37.5 - parent: 2 -- proto: GlimmerProber - entities: - - uid: 10599 - components: - - type: Transform - pos: -43.5,37.5 - parent: 2 -- proto: GlowstickBase - entities: - - uid: 10600 - components: - - type: Transform - pos: -38.59463,10.682609 - parent: 2 -- proto: GlowstickBlue - entities: - - uid: 10601 - components: - - type: Transform - pos: -13.526116,-7.38401 - parent: 2 - - uid: 10602 - components: - - type: Transform - pos: -13.338616,-7.43613 - parent: 2 - - uid: 10603 - components: - - type: Transform - pos: -38.73005,10.703458 - parent: 2 - - uid: 10604 - components: - - type: Transform - pos: 21.420904,13.627912 - parent: 2 - - uid: 10605 - components: - - type: Transform - pos: 21.639654,13.523672 - parent: 2 -- proto: GlowstickPurple - entities: - - uid: 10606 - components: - - type: Transform - pos: -38.4488,10.672186 - parent: 2 -- proto: GlowstickRed - entities: - - uid: 10607 - components: - - type: Transform - pos: -38.302967,10.63049 - parent: 2 -- proto: GlowstickYellow - entities: - - uid: 10608 - components: - - type: Transform - pos: -2.033538,-15.379829 - parent: 2 - - uid: 10609 - components: - - type: Transform - pos: -2.0525565,-15.607401 - parent: 2 - - uid: 10610 - components: - - type: Transform - pos: -38.18838,10.578371 - parent: 2 -- proto: GravityGenerator - entities: - - uid: 10611 - components: - - type: Transform - pos: 4.5,-31.5 - parent: 2 -- proto: Grille - entities: - - uid: 2622 - components: - - type: Transform - pos: -46.5,-42.5 - parent: 2 - - uid: 2629 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 2630 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 2631 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 2 - - uid: 3813 - components: - - type: Transform - pos: -29.5,-40.5 - parent: 2 - - uid: 3821 - components: - - type: Transform - pos: -33.5,-37.5 - parent: 2 - - uid: 3894 - components: - - type: Transform - pos: -36.5,-41.5 - parent: 2 - - uid: 3917 - components: - - type: Transform - pos: -46.5,-35.5 - parent: 2 - - uid: 4394 - components: - - type: Transform - pos: -46.5,-36.5 - parent: 2 - - uid: 5822 - components: - - type: Transform - pos: -32.5,17.5 - parent: 2 - - uid: 6247 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 2 - - uid: 10613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 2 - - uid: 10616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-52.5 - parent: 2 - - uid: 10617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-51.5 - parent: 2 - - uid: 10618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-46.5 - parent: 2 - - uid: 10628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 2 - - uid: 10632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 2 - - uid: 10635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-47.5 - parent: 2 - - uid: 10636 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 2 - - uid: 10637 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-52.5 - parent: 2 - - uid: 10638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 2 - - uid: 10639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-49.5 - parent: 2 - - uid: 10640 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 2 - - uid: 10641 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 2 - - uid: 10642 - components: - - type: Transform - pos: -10.5,2.5 - parent: 2 - - uid: 10643 - components: - - type: Transform - pos: -9.5,2.5 - parent: 2 - - uid: 10644 - components: - - type: Transform - pos: -8.5,2.5 - parent: 2 - - uid: 10645 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 10646 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - - uid: 10647 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 2 - - uid: 10648 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 - - uid: 10649 - components: - - type: Transform - pos: -16.5,6.5 - parent: 2 - - uid: 10650 - components: - - type: Transform - pos: -5.5,16.5 - parent: 2 - - uid: 10651 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 2 - - uid: 10652 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 2 - - uid: 10653 - components: - - type: Transform - pos: -5.5,11.5 - parent: 2 - - uid: 10654 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 2 - - uid: 10655 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 2 - - uid: 10656 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 2 - - uid: 10657 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 2 - - uid: 10658 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 10659 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 2 - - uid: 10660 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 2 - - uid: 10661 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 10662 - components: - - type: Transform - pos: -2.5,10.5 - parent: 2 - - uid: 10663 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 2 - - uid: 10664 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 2 - - uid: 10665 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 10666 - components: - - type: Transform - pos: 14.5,3.5 - parent: 2 - - uid: 10667 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 2 - - uid: 10668 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 2 - - uid: 10669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-28.5 - parent: 2 - - uid: 10670 - components: - - type: Transform - pos: -9.5,13.5 - parent: 2 - - uid: 10671 - components: - - type: Transform - pos: -10.5,13.5 - parent: 2 - - uid: 10672 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 2 - - uid: 10673 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 2 - - uid: 10674 - components: - - type: Transform - pos: -26.5,1.5 - parent: 2 - - uid: 10675 - components: - - type: Transform - pos: -28.5,4.5 - parent: 2 - - uid: 10676 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - - uid: 10677 - components: - - type: Transform - pos: -11.5,1.5 - parent: 2 - - uid: 10678 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 2 - - uid: 10679 - components: - - type: Transform - pos: -18.5,2.5 - parent: 2 - - uid: 10680 - components: - - type: Transform - pos: -43.5,38.5 - parent: 2 - - uid: 10681 - components: - - type: Transform - pos: -19.5,2.5 - parent: 2 - - uid: 10682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,50.5 - parent: 2 - - uid: 10683 - components: - - type: Transform - pos: -1.5,22.5 - parent: 2 - - uid: 10684 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 2 - - uid: 10685 - components: - - type: Transform - pos: -11.5,21.5 - parent: 2 - - uid: 10686 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 2 - - uid: 10687 - components: - - type: Transform - pos: -1.5,16.5 - parent: 2 - - uid: 10688 - components: - - type: Transform - pos: -30.5,4.5 - parent: 2 - - uid: 10689 - components: - - type: Transform - pos: -32.5,4.5 - parent: 2 - - uid: 10690 - components: - - type: Transform - pos: -22.5,20.5 - parent: 2 - - uid: 10691 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 2 - - uid: 10692 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 10693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 2 - - uid: 10694 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 2 - - uid: 10695 - components: - - type: Transform - pos: -5.5,17.5 - parent: 2 - - uid: 10696 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 2 - - uid: 10697 - components: - - type: Transform - pos: -11.5,22.5 - parent: 2 - - uid: 10698 - components: - - type: Transform - pos: -22.5,19.5 - parent: 2 - - uid: 10699 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 2 - - uid: 10700 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 2 - - uid: 10701 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 2 - - uid: 10702 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 2 - - uid: 10703 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 10704 - components: - - type: Transform - pos: -11.5,20.5 - parent: 2 - - uid: 10705 - components: - - type: Transform - pos: 38.5,-24.5 - parent: 2 - - uid: 10706 - components: - - type: Transform - pos: -58.5,34.5 - parent: 2 - - uid: 10707 - components: - - type: Transform - pos: -5.5,-22.5 - parent: 2 - - uid: 10708 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 2 - - uid: 10709 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 2 - - uid: 10712 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 2 - - uid: 10713 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 2 - - uid: 10714 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 2 - - uid: 10715 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 2 - - uid: 10716 - components: - - type: Transform - pos: -41.5,-14.5 - parent: 2 - - uid: 10717 - components: - - type: Transform - pos: -63.5,3.5 - parent: 2 - - uid: 10718 - components: - - type: Transform - pos: -63.5,4.5 - parent: 2 - - uid: 10719 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 2 - - uid: 10720 - components: - - type: Transform - pos: 31.5,-24.5 - parent: 2 - - uid: 10721 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - uid: 10722 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 2 - - uid: 10723 - components: - - type: Transform - pos: 36.5,-24.5 - parent: 2 - - uid: 10724 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 2 - - uid: 10725 - components: - - type: Transform - pos: 20.5,11.5 - parent: 2 - - uid: 10726 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 2 - - uid: 10728 - components: - - type: Transform - pos: 4.5,-29.5 - parent: 2 - - uid: 10729 - components: - - type: Transform - pos: 3.5,-29.5 - parent: 2 - - uid: 10730 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 2 - - uid: 10731 - components: - - type: Transform - pos: -16.5,-47.5 - parent: 2 - - uid: 10732 - components: - - type: Transform - pos: -11.5,-51.5 - parent: 2 - - uid: 10733 - components: - - type: Transform - pos: 24.5,7.5 - parent: 2 - - uid: 10734 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 2 - - uid: 10735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 2 - - uid: 10736 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 2 - - uid: 10737 - components: - - type: Transform - pos: -64.5,6.5 - parent: 2 - - uid: 10738 - components: - - type: Transform - pos: -8.5,-36.5 - parent: 2 - - uid: 10739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,6.5 - parent: 2 - - uid: 10740 - components: - - type: Transform - pos: 10.5,-48.5 - parent: 2 - - uid: 10741 - components: - - type: Transform - pos: -52.5,62.5 - parent: 2 - - uid: 10742 - components: - - type: Transform - pos: -55.5,38.5 - parent: 2 - - uid: 10743 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - - uid: 10744 - components: - - type: Transform - pos: 5.5,34.5 - parent: 2 - - uid: 10745 - components: - - type: Transform - pos: 14.5,34.5 - parent: 2 - - uid: 10746 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,6.5 - parent: 2 - - uid: 10748 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 2 - - uid: 10749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-47.5 - parent: 2 - - uid: 10750 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 2 - - uid: 10751 - components: - - type: Transform - pos: -23.5,-32.5 - parent: 2 - - uid: 10752 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 2 - - uid: 10753 - components: - - type: Transform - pos: -32.5,-29.5 - parent: 2 - - uid: 10754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-38.5 - parent: 2 - - uid: 10755 - components: - - type: Transform - pos: -24.5,-36.5 - parent: 2 - - uid: 10756 - components: - - type: Transform - pos: -24.5,-37.5 - parent: 2 - - uid: 10757 - components: - - type: Transform - pos: -24.5,-38.5 - parent: 2 - - uid: 10758 - components: - - type: Transform - pos: -24.5,-39.5 - parent: 2 - - uid: 10759 - components: - - type: Transform - pos: -24.5,-40.5 - parent: 2 - - uid: 10760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-42.5 - parent: 2 - - uid: 10761 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-29.5 - parent: 2 - - uid: 10762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 - parent: 2 - - uid: 10763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-33.5 - parent: 2 - - uid: 10764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-39.5 - parent: 2 - - uid: 10765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-47.5 - parent: 2 - - uid: 10766 - components: - - type: Transform - pos: -38.5,-48.5 - parent: 2 - - uid: 10767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-47.5 - parent: 2 - - uid: 10768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-47.5 - parent: 2 - - uid: 10769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-43.5 - parent: 2 - - uid: 10770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-29.5 - parent: 2 - - uid: 10771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-44.5 - parent: 2 - - uid: 10772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-47.5 - parent: 2 - - uid: 10773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-47.5 - parent: 2 - - uid: 10774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-47.5 - parent: 2 - - uid: 10775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-47.5 - parent: 2 - - uid: 10776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-32.5 - parent: 2 - - uid: 10777 - components: - - type: Transform - pos: -41.5,-44.5 - parent: 2 - - uid: 10778 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - uid: 10779 - components: - - type: Transform - pos: -41.5,-42.5 - parent: 2 - - uid: 10780 - components: - - type: Transform - pos: -41.5,-39.5 - parent: 2 - - uid: 10781 - components: - - type: Transform - pos: -41.5,-38.5 - parent: 2 - - uid: 10782 - components: - - type: Transform - pos: -41.5,-37.5 - parent: 2 - - uid: 10783 - components: - - type: Transform - pos: -41.5,-34.5 - parent: 2 - - uid: 10784 - components: - - type: Transform - pos: -41.5,-33.5 - parent: 2 - - uid: 10785 - components: - - type: Transform - pos: -41.5,-32.5 - parent: 2 - - uid: 10786 - components: - - type: Transform - pos: -41.5,-31.5 - parent: 2 - - uid: 10787 - components: - - type: Transform - pos: -37.5,-48.5 - parent: 2 - - uid: 10788 - components: - - type: Transform - pos: -36.5,-48.5 - parent: 2 - - uid: 10789 - components: - - type: Transform - pos: -35.5,-48.5 - parent: 2 - - uid: 10790 - components: - - type: Transform - pos: -32.5,-48.5 - parent: 2 - - uid: 10791 - components: - - type: Transform - pos: -31.5,-48.5 - parent: 2 - - uid: 10792 - components: - - type: Transform - pos: -28.5,-48.5 - parent: 2 - - uid: 10793 - components: - - type: Transform - pos: -27.5,-48.5 - parent: 2 - - uid: 10794 - components: - - type: Transform - pos: -26.5,-48.5 - parent: 2 - - uid: 10795 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 2 - - uid: 10796 - components: - - type: Transform - pos: -23.5,-33.5 - parent: 2 - - uid: 10797 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 2 - - uid: 10798 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 2 - - uid: 10799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-28.5 - parent: 2 - - uid: 10800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-37.5 - parent: 2 - - uid: 10801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-28.5 - parent: 2 - - uid: 10802 - components: - - type: Transform - pos: -12.5,-35.5 - parent: 2 - - uid: 10803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-28.5 - parent: 2 - - uid: 10804 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 2 - - uid: 10805 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 2 - - uid: 10806 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 2 - - uid: 10807 - components: - - type: Transform - pos: -9.5,-32.5 - parent: 2 - - uid: 10808 - components: - - type: Transform - pos: -24.5,-50.5 - parent: 2 - - uid: 10809 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 2 - - uid: 10810 - components: - - type: Transform - pos: -29.5,-26.5 - parent: 2 - - uid: 10811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-49.5 - parent: 2 - - uid: 10812 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-14.5 - parent: 2 - - uid: 10813 - components: - - type: Transform - pos: 12.5,-43.5 - parent: 2 - - uid: 10814 - components: - - type: Transform - pos: 19.5,2.5 - parent: 2 - - uid: 10815 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 2 - - uid: 10816 - components: - - type: Transform - pos: 17.5,-34.5 - parent: 2 - - uid: 10817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-2.5 - parent: 2 - - uid: 10818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-4.5 - parent: 2 - - uid: 10819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-33.5 - parent: 2 - - uid: 10820 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-15.5 - parent: 2 - - uid: 10821 - components: - - type: Transform - pos: -36.5,8.5 - parent: 2 - - uid: 10822 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-18.5 - parent: 2 - - uid: 10823 - components: - - type: Transform - pos: -62.5,-18.5 - parent: 2 - - uid: 10824 - components: - - type: Transform - pos: -35.5,12.5 - parent: 2 - - uid: 10825 - components: - - type: Transform - pos: -37.5,8.5 - parent: 2 - - uid: 10826 - components: - - type: Transform - pos: -34.5,12.5 - parent: 2 - - uid: 10827 - components: - - type: Transform - pos: -38.5,16.5 - parent: 2 - - uid: 10828 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 2 - - uid: 10829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-8.5 - parent: 2 - - uid: 10830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 2 - - uid: 10831 - components: - - type: Transform - pos: -36.5,16.5 - parent: 2 - - uid: 10832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-14.5 - parent: 2 - - uid: 10833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-17.5 - parent: 2 - - uid: 10834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-16.5 - parent: 2 - - uid: 10835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-17.5 - parent: 2 - - uid: 10836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-19.5 - parent: 2 - - uid: 10837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-20.5 - parent: 2 - - uid: 10838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-21.5 - parent: 2 - - uid: 10839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-22.5 - parent: 2 - - uid: 10840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-22.5 - parent: 2 - - uid: 10841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-22.5 - parent: 2 - - uid: 10842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-23.5 - parent: 2 - - uid: 10843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-23.5 - parent: 2 - - uid: 10844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-23.5 - parent: 2 - - uid: 10845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-23.5 - parent: 2 - - uid: 10846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-23.5 - parent: 2 - - uid: 10847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-23.5 - parent: 2 - - uid: 10848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-23.5 - parent: 2 - - uid: 10849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-22.5 - parent: 2 - - uid: 10850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-22.5 - parent: 2 - - uid: 10851 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-22.5 - parent: 2 - - uid: 10852 - components: - - type: Transform - pos: -63.5,-16.5 - parent: 2 - - uid: 10853 - components: - - type: Transform - pos: -65.5,1.5 - parent: 2 - - uid: 10854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-23.5 - parent: 2 - - uid: 10855 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-23.5 - parent: 2 - - uid: 10856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-23.5 - parent: 2 - - uid: 10857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-23.5 - parent: 2 - - uid: 10858 - components: - - type: Transform - pos: -32.5,61.5 - parent: 2 - - uid: 10859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-23.5 - parent: 2 - - uid: 10860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-23.5 - parent: 2 - - uid: 10861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-21.5 - parent: 2 - - uid: 10862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-21.5 - parent: 2 - - uid: 10863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-21.5 - parent: 2 - - uid: 10864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-21.5 - parent: 2 - - uid: 10865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-21.5 - parent: 2 - - uid: 10866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-21.5 - parent: 2 - - uid: 10867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-20.5 - parent: 2 - - uid: 10868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-20.5 - parent: 2 - - uid: 10869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-20.5 - parent: 2 - - uid: 10870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-20.5 - parent: 2 - - uid: 10871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-21.5 - parent: 2 - - uid: 10872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-21.5 - parent: 2 - - uid: 10873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-21.5 - parent: 2 - - uid: 10874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-21.5 - parent: 2 - - uid: 10875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-22.5 - parent: 2 - - uid: 10876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-21.5 - parent: 2 - - uid: 10877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-21.5 - parent: 2 - - uid: 10878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-21.5 - parent: 2 - - uid: 10879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-22.5 - parent: 2 - - uid: 10880 - components: - - type: Transform - pos: -65.5,3.5 - parent: 2 - - uid: 10881 - components: - - type: Transform - pos: -65.5,4.5 - parent: 2 - - uid: 10882 - components: - - type: Transform - pos: -65.5,5.5 - parent: 2 - - uid: 10883 - components: - - type: Transform - pos: -63.5,6.5 - parent: 2 - - uid: 10884 - components: - - type: Transform - pos: 5.5,35.5 - parent: 2 - - uid: 10885 - components: - - type: Transform - pos: 16.5,34.5 - parent: 2 - - uid: 10886 - components: - - type: Transform - pos: 35.5,28.5 - parent: 2 - - uid: 10887 - components: - - type: Transform - pos: 3.5,38.5 - parent: 2 - - uid: 10888 - components: - - type: Transform - pos: -57.5,6.5 - parent: 2 - - uid: 10889 - components: - - type: Transform - pos: -59.5,6.5 - parent: 2 - - uid: 10890 - components: - - type: Transform - pos: -54.5,6.5 - parent: 2 - - uid: 10891 - components: - - type: Transform - pos: -63.5,-4.5 - parent: 2 - - uid: 10892 - components: - - type: Transform - pos: -53.5,5.5 - parent: 2 - - uid: 10893 - components: - - type: Transform - pos: -55.5,5.5 - parent: 2 - - uid: 10894 - components: - - type: Transform - pos: -64.5,-4.5 - parent: 2 - - uid: 10895 - components: - - type: Transform - pos: -62.5,-19.5 - parent: 2 - - uid: 10896 - components: - - type: Transform - pos: -57.5,5.5 - parent: 2 - - uid: 10897 - components: - - type: Transform - pos: -58.5,5.5 - parent: 2 - - uid: 10898 - components: - - type: Transform - pos: -59.5,5.5 - parent: 2 - - uid: 10899 - components: - - type: Transform - pos: -60.5,5.5 - parent: 2 - - uid: 10900 - components: - - type: Transform - pos: -61.5,5.5 - parent: 2 - - uid: 10901 - components: - - type: Transform - pos: -62.5,5.5 - parent: 2 - - uid: 10902 - components: - - type: Transform - pos: -64.5,2.5 - parent: 2 - - uid: 10903 - components: - - type: Transform - pos: -63.5,2.5 - parent: 2 - - uid: 10904 - components: - - type: Transform - pos: -63.5,-1.5 - parent: 2 - - uid: 10905 - components: - - type: Transform - pos: -66.5,0.5 - parent: 2 - - uid: 10906 - components: - - type: Transform - pos: -66.5,-0.5 - parent: 2 - - uid: 10907 - components: - - type: Transform - pos: -66.5,-2.5 - parent: 2 - - uid: 10908 - components: - - type: Transform - pos: -66.5,-3.5 - parent: 2 - - uid: 10909 - components: - - type: Transform - pos: -66.5,-5.5 - parent: 2 - - uid: 10910 - components: - - type: Transform - pos: -66.5,-6.5 - parent: 2 - - uid: 10911 - components: - - type: Transform - pos: -65.5,-4.5 - parent: 2 - - uid: 10912 - components: - - type: Transform - pos: -63.5,-3.5 - parent: 2 - - uid: 10913 - components: - - type: Transform - pos: -63.5,-0.5 - parent: 2 - - uid: 10914 - components: - - type: Transform - pos: -63.5,0.5 - parent: 2 - - uid: 10915 - components: - - type: Transform - pos: -63.5,1.5 - parent: 2 - - uid: 10916 - components: - - type: Transform - pos: -64.5,-1.5 - parent: 2 - - uid: 10917 - components: - - type: Transform - pos: -65.5,-1.5 - parent: 2 - - uid: 10918 - components: - - type: Transform - pos: -64.5,-5.5 - parent: 2 - - uid: 10919 - components: - - type: Transform - pos: -64.5,-6.5 - parent: 2 - - uid: 10920 - components: - - type: Transform - pos: -64.5,-14.5 - parent: 2 - - uid: 10921 - components: - - type: Transform - pos: -65.5,-7.5 - parent: 2 - - uid: 10922 - components: - - type: Transform - pos: -65.5,-8.5 - parent: 2 - - uid: 10923 - components: - - type: Transform - pos: -65.5,-9.5 - parent: 2 - - uid: 10924 - components: - - type: Transform - pos: -65.5,-10.5 - parent: 2 - - uid: 10925 - components: - - type: Transform - pos: -67.5,-11.5 - parent: 2 - - uid: 10926 - components: - - type: Transform - pos: -67.5,-12.5 - parent: 2 - - uid: 10927 - components: - - type: Transform - pos: -67.5,-13.5 - parent: 2 - - uid: 10928 - components: - - type: Transform - pos: -65.5,-12.5 - parent: 2 - - uid: 10929 - components: - - type: Transform - pos: -65.5,-13.5 - parent: 2 - - uid: 10930 - components: - - type: Transform - pos: -64.5,-9.5 - parent: 2 - - uid: 10931 - components: - - type: Transform - pos: -63.5,-14.5 - parent: 2 - - uid: 10932 - components: - - type: Transform - pos: -63.5,-13.5 - parent: 2 - - uid: 10933 - components: - - type: Transform - pos: -63.5,-12.5 - parent: 2 - - uid: 10934 - components: - - type: Transform - pos: -63.5,-11.5 - parent: 2 - - uid: 10935 - components: - - type: Transform - pos: -64.5,-10.5 - parent: 2 - - uid: 10936 - components: - - type: Transform - pos: -63.5,-17.5 - parent: 2 - - uid: 10937 - components: - - type: Transform - pos: -63.5,-15.5 - parent: 2 - - uid: 10938 - components: - - type: Transform - pos: -62.5,-20.5 - parent: 2 - - uid: 10939 - components: - - type: Transform - pos: -61.5,-20.5 - parent: 2 - - uid: 10940 - components: - - type: Transform - pos: -61.5,-21.5 - parent: 2 - - uid: 10941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 2 - - uid: 10942 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 2 - - uid: 10943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 2 - - uid: 10944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,26.5 - parent: 2 - - uid: 10945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,31.5 - parent: 2 - - uid: 10946 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 2 - - uid: 10947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,25.5 - parent: 2 - - uid: 10948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,30.5 - parent: 2 - - uid: 10949 - components: - - type: Transform - pos: -23.5,-75.5 - parent: 2 - - uid: 10950 - components: - - type: Transform - pos: -24.5,-75.5 - parent: 2 - - uid: 10951 - components: - - type: Transform - pos: -25.5,-75.5 - parent: 2 - - uid: 10952 - components: - - type: Transform - pos: -23.5,-77.5 - parent: 2 - - uid: 10953 - components: - - type: Transform - pos: -24.5,-77.5 - parent: 2 - - uid: 10954 - components: - - type: Transform - pos: -25.5,-77.5 - parent: 2 - - uid: 10955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,31.5 - parent: 2 - - uid: 10956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 10957 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,48.5 - parent: 2 - - uid: 10958 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 2 - - uid: 10959 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 2 - - uid: 10960 - components: - - type: Transform - pos: -39.5,18.5 - parent: 2 - - uid: 10961 - components: - - type: Transform - pos: -39.5,19.5 - parent: 2 - - uid: 10962 - components: - - type: Transform - pos: 1.5,17.5 - parent: 2 - - uid: 10963 - components: - - type: Transform - pos: 0.5,17.5 - parent: 2 - - uid: 10964 - components: - - type: Transform - pos: 0.5,21.5 - parent: 2 - - uid: 10965 - components: - - type: Transform - pos: 1.5,21.5 - parent: 2 - - uid: 10966 - components: - - type: Transform - pos: 21.5,9.5 - parent: 2 - - uid: 10967 - components: - - type: Transform - pos: 18.5,2.5 - parent: 2 - - uid: 10968 - components: - - type: Transform - pos: 21.5,2.5 - parent: 2 - - uid: 10969 - components: - - type: Transform - pos: 22.5,2.5 - parent: 2 - - uid: 10970 - components: - - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 10971 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - - uid: 10972 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - - uid: 10973 - components: - - type: Transform - pos: 18.5,17.5 - parent: 2 - - uid: 10974 - components: - - type: Transform - pos: 11.5,18.5 - parent: 2 - - uid: 10975 - components: - - type: Transform - pos: 11.5,19.5 - parent: 2 - - uid: 10976 - components: - - type: Transform - pos: -40.5,4.5 - parent: 2 - - uid: 10977 - components: - - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 10978 - components: - - type: Transform - pos: 15.5,17.5 - parent: 2 - - uid: 10979 - components: - - type: Transform - pos: -39.5,4.5 - parent: 2 - - uid: 10980 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - - uid: 10981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,24.5 - parent: 2 - - uid: 10982 - components: - - type: Transform - pos: 11.5,26.5 - parent: 2 - - uid: 10983 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 2 - - uid: 10984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-86.5 - parent: 2 - - uid: 10985 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-86.5 - parent: 2 - - uid: 10986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-86.5 - parent: 2 - - uid: 10987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-86.5 - parent: 2 - - uid: 10988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-86.5 - parent: 2 - - uid: 10989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-86.5 - parent: 2 - - uid: 10990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-86.5 - parent: 2 - - uid: 10991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-86.5 - parent: 2 - - uid: 10992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-86.5 - parent: 2 - - uid: 10993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-88.5 - parent: 2 - - uid: 10994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-89.5 - parent: 2 - - uid: 10995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-89.5 - parent: 2 - - uid: 10996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-89.5 - parent: 2 - - uid: 10997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-89.5 - parent: 2 - - uid: 10998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-89.5 - parent: 2 - - uid: 10999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-89.5 - parent: 2 - - uid: 11000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-89.5 - parent: 2 - - uid: 11001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-89.5 - parent: 2 - - uid: 11002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-89.5 - parent: 2 - - uid: 11003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-88.5 - parent: 2 - - uid: 11004 - components: - - type: Transform - pos: -44.5,-31.5 - parent: 2 - - uid: 11005 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-87.5 - parent: 2 - - uid: 11006 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-87.5 - parent: 2 - - uid: 11007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-87.5 - parent: 2 - - uid: 11008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-87.5 - parent: 2 - - uid: 11009 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-86.5 - parent: 2 - - uid: 11010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-86.5 - parent: 2 - - uid: 11011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-87.5 - parent: 2 - - uid: 11012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-86.5 - parent: 2 - - uid: 11013 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-86.5 - parent: 2 - - uid: 11014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-85.5 - parent: 2 - - uid: 11015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-81.5 - parent: 2 - - uid: 11016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-80.5 - parent: 2 - - uid: 11017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-80.5 - parent: 2 - - uid: 11018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-79.5 - parent: 2 - - uid: 11019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-78.5 - parent: 2 - - uid: 11020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-75.5 - parent: 2 - - uid: 11021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-74.5 - parent: 2 - - uid: 11022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-73.5 - parent: 2 - - uid: 11023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-72.5 - parent: 2 - - uid: 11024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-70.5 - parent: 2 - - uid: 11025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-71.5 - parent: 2 - - uid: 11026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-69.5 - parent: 2 - - uid: 11027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-67.5 - parent: 2 - - uid: 11028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-66.5 - parent: 2 - - uid: 11029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-66.5 - parent: 2 - - uid: 11030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-65.5 - parent: 2 - - uid: 11031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-65.5 - parent: 2 - - uid: 11032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-65.5 - parent: 2 - - uid: 11033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-64.5 - parent: 2 - - uid: 11034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-64.5 - parent: 2 - - uid: 11035 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-64.5 - parent: 2 - - uid: 11036 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-64.5 - parent: 2 - - uid: 11037 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-64.5 - parent: 2 - - uid: 11038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-64.5 - parent: 2 - - uid: 11039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-64.5 - parent: 2 - - uid: 11040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-64.5 - parent: 2 - - uid: 11041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-64.5 - parent: 2 - - uid: 11042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-64.5 - parent: 2 - - uid: 11043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-64.5 - parent: 2 - - uid: 11044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-64.5 - parent: 2 - - uid: 11045 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-64.5 - parent: 2 - - uid: 11046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-65.5 - parent: 2 - - uid: 11047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-65.5 - parent: 2 - - uid: 11048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-65.5 - parent: 2 - - uid: 11049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-66.5 - parent: 2 - - uid: 11050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-66.5 - parent: 2 - - uid: 11051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-66.5 - parent: 2 - - uid: 11052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-66.5 - parent: 2 - - uid: 11053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-66.5 - parent: 2 - - uid: 11054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-66.5 - parent: 2 - - uid: 11055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-66.5 - parent: 2 - - uid: 11056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-67.5 - parent: 2 - - uid: 11057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-67.5 - parent: 2 - - uid: 11058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-67.5 - parent: 2 - - uid: 11059 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-66.5 - parent: 2 - - uid: 11060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-66.5 - parent: 2 - - uid: 11061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-67.5 - parent: 2 - - uid: 11062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-68.5 - parent: 2 - - uid: 11063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-69.5 - parent: 2 - - uid: 11064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-70.5 - parent: 2 - - uid: 11065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-71.5 - parent: 2 - - uid: 11066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-72.5 - parent: 2 - - uid: 11067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-75.5 - parent: 2 - - uid: 11068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-76.5 - parent: 2 - - uid: 11069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-77.5 - parent: 2 - - uid: 11070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-79.5 - parent: 2 - - uid: 11071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-81.5 - parent: 2 - - uid: 11072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-83.5 - parent: 2 - - uid: 11073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-85.5 - parent: 2 - - uid: 11074 - components: - - type: Transform - pos: -45.5,-27.5 - parent: 2 - - uid: 11075 - components: - - type: Transform - pos: -44.5,-29.5 - parent: 2 - - uid: 11076 - components: - - type: Transform - pos: -44.5,-32.5 - parent: 2 - - uid: 11077 - components: - - type: Transform - pos: 4.5,19.5 - parent: 2 - - uid: 11078 - components: - - type: Transform - pos: 4.5,20.5 - parent: 2 - - uid: 11079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,34.5 - parent: 2 - - uid: 11080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 2 - - uid: 11081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 2 - - uid: 11082 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-1.5 - parent: 2 - - uid: 11083 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,34.5 - parent: 2 - - uid: 11084 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,34.5 - parent: 2 - - uid: 11085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 2 - - uid: 11086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 2 - - uid: 11087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 2 - - uid: 11088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 2 - - uid: 11089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 2 - - uid: 11090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 2 - - uid: 11091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 2 - - uid: 11092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-2.5 - parent: 2 - - uid: 11093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-2.5 - parent: 2 - - uid: 11094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 2 - - uid: 11095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 - parent: 2 - - uid: 11096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 2 - - uid: 11097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-10.5 - parent: 2 - - uid: 11098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 2 - - uid: 11099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 2 - - uid: 11100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-15.5 - parent: 2 - - uid: 11101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 2 - - uid: 11102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 2 - - uid: 11103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 2 - - uid: 11104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 2 - - uid: 11105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-22.5 - parent: 2 - - uid: 11106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-20.5 - parent: 2 - - uid: 11107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 2 - - uid: 11108 - components: - - type: Transform - pos: 42.5,-23.5 - parent: 2 - - uid: 11109 - components: - - type: Transform - pos: 43.5,-21.5 - parent: 2 - - uid: 11110 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 2 - - uid: 11111 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 2 - - uid: 11112 - components: - - type: Transform - pos: 43.5,-6.5 - parent: 2 - - uid: 11113 - components: - - type: Transform - pos: 43.5,-7.5 - parent: 2 - - uid: 11114 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 2 - - uid: 11115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,33.5 - parent: 2 - - uid: 11116 - components: - - type: Transform - pos: 20.5,33.5 - parent: 2 - - uid: 11117 - components: - - type: Transform - pos: -41.5,4.5 - parent: 2 - - uid: 11118 - components: - - type: Transform - pos: -42.5,4.5 - parent: 2 - - uid: 11119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,32.5 - parent: 2 - - uid: 11120 - components: - - type: Transform - pos: 34.5,23.5 - parent: 2 - - uid: 11121 - components: - - type: Transform - pos: -43.5,4.5 - parent: 2 - - uid: 11122 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 11123 - components: - - type: Transform - pos: 46.5,9.5 - parent: 2 - - uid: 11124 - components: - - type: Transform - pos: 46.5,10.5 - parent: 2 - - uid: 11125 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 - - uid: 11126 - components: - - type: Transform - pos: 48.5,10.5 - parent: 2 - - uid: 11127 - components: - - type: Transform - pos: 48.5,12.5 - parent: 2 - - uid: 11128 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 - - uid: 11129 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 - - uid: 11130 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 11131 - components: - - type: Transform - pos: 15.5,14.5 - parent: 2 - - uid: 11132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,27.5 - parent: 2 - - uid: 11133 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 2 - - uid: 11134 - components: - - type: Transform - pos: 56.5,2.5 - parent: 2 - - uid: 11135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,37.5 - parent: 2 - - uid: 11136 - components: - - type: Transform - pos: 57.5,2.5 - parent: 2 - - uid: 11137 - components: - - type: Transform - pos: 58.5,2.5 - parent: 2 - - uid: 11138 - components: - - type: Transform - pos: 59.5,2.5 - parent: 2 - - uid: 11139 - components: - - type: Transform - pos: 62.5,3.5 - parent: 2 - - uid: 11140 - components: - - type: Transform - pos: 62.5,4.5 - parent: 2 - - uid: 11141 - components: - - type: Transform - pos: 62.5,5.5 - parent: 2 - - uid: 11142 - components: - - type: Transform - pos: 62.5,7.5 - parent: 2 - - uid: 11143 - components: - - type: Transform - pos: 62.5,8.5 - parent: 2 - - uid: 11144 - components: - - type: Transform - pos: 62.5,9.5 - parent: 2 - - uid: 11145 - components: - - type: Transform - pos: 64.5,9.5 - parent: 2 - - uid: 11146 - components: - - type: Transform - pos: 65.5,10.5 - parent: 2 - - uid: 11147 - components: - - type: Transform - pos: 65.5,12.5 - parent: 2 - - uid: 11148 - components: - - type: Transform - pos: 64.5,13.5 - parent: 2 - - uid: 11149 - components: - - type: Transform - pos: 63.5,13.5 - parent: 2 - - uid: 11150 - components: - - type: Transform - pos: 62.5,13.5 - parent: 2 - - uid: 11151 - components: - - type: Transform - pos: 62.5,15.5 - parent: 2 - - uid: 11152 - components: - - type: Transform - pos: 62.5,16.5 - parent: 2 - - uid: 11153 - components: - - type: Transform - pos: 62.5,17.5 - parent: 2 - - uid: 11154 - components: - - type: Transform - pos: 62.5,18.5 - parent: 2 - - uid: 11155 - components: - - type: Transform - pos: 62.5,19.5 - parent: 2 - - uid: 11156 - components: - - type: Transform - pos: 62.5,20.5 - parent: 2 - - uid: 11157 - components: - - type: Transform - pos: 61.5,20.5 - parent: 2 - - uid: 11158 - components: - - type: Transform - pos: 60.5,20.5 - parent: 2 - - uid: 11159 - components: - - type: Transform - pos: 59.5,20.5 - parent: 2 - - uid: 11160 - components: - - type: Transform - pos: 58.5,20.5 - parent: 2 - - uid: 11161 - components: - - type: Transform - pos: 57.5,20.5 - parent: 2 - - uid: 11162 - components: - - type: Transform - pos: 56.5,20.5 - parent: 2 - - uid: 11163 - components: - - type: Transform - pos: 55.5,20.5 - parent: 2 - - uid: 11164 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 2 - - uid: 11165 - components: - - type: Transform - pos: 51.5,20.5 - parent: 2 - - uid: 11166 - components: - - type: Transform - pos: 50.5,20.5 - parent: 2 - - uid: 11167 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 - - uid: 11168 - components: - - type: Transform - pos: 49.5,20.5 - parent: 2 - - uid: 11169 - components: - - type: Transform - pos: 48.5,20.5 - parent: 2 - - uid: 11170 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - - uid: 11171 - components: - - type: Transform - pos: 47.5,19.5 - parent: 2 - - uid: 11172 - components: - - type: Transform - pos: 47.5,18.5 - parent: 2 - - uid: 11173 - components: - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 11174 - components: - - type: Transform - pos: 47.5,16.5 - parent: 2 - - uid: 11175 - components: - - type: Transform - pos: -42.5,2.5 - parent: 2 - - uid: 11176 - components: - - type: Transform - pos: -23.5,37.5 - parent: 2 - - uid: 11177 - components: - - type: Transform - pos: -2.5,4.5 - parent: 2 - - uid: 11178 - components: - - type: Transform - pos: -48.5,24.5 - parent: 2 - - uid: 11179 - components: - - type: Transform - pos: 36.5,1.5 - parent: 2 - - uid: 11180 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 2 - - uid: 11181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,34.5 - parent: 2 - - uid: 11182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,25.5 - parent: 2 - - uid: 11183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,24.5 - parent: 2 - - uid: 11184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,23.5 - parent: 2 - - uid: 11185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,22.5 - parent: 2 - - uid: 11186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 2 - - uid: 11187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,33.5 - parent: 2 - - uid: 11188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 2 - - uid: 11189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,33.5 - parent: 2 - - uid: 11190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,33.5 - parent: 2 - - uid: 11191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,32.5 - parent: 2 - - uid: 11192 - components: - - type: Transform - pos: -52.5,7.5 - parent: 2 - - uid: 11193 - components: - - type: Transform - pos: -65.5,31.5 - parent: 2 - - uid: 11194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-25.5 - parent: 2 - - uid: 11195 - components: - - type: Transform - pos: -4.5,28.5 - parent: 2 - - uid: 11196 - components: - - type: Transform - pos: -4.5,32.5 - parent: 2 - - uid: 11197 - components: - - type: Transform - pos: -41.5,2.5 - parent: 2 - - uid: 11198 - components: - - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 11199 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 2 - - uid: 11200 - components: - - type: Transform - pos: -53.5,2.5 - parent: 2 - - uid: 11201 - components: - - type: Transform - pos: -14.5,-40.5 - parent: 2 - - uid: 11202 - components: - - type: Transform - pos: -40.5,2.5 - parent: 2 - - uid: 11203 - components: - - type: Transform - pos: -54.5,2.5 - parent: 2 - - uid: 11204 - components: - - type: Transform - pos: 2.5,42.5 - parent: 2 - - uid: 11205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,43.5 - parent: 2 - - uid: 11206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,44.5 - parent: 2 - - uid: 11207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,44.5 - parent: 2 - - uid: 11208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,44.5 - parent: 2 - - uid: 11209 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,45.5 - parent: 2 - - uid: 11210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,45.5 - parent: 2 - - uid: 11211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,45.5 - parent: 2 - - uid: 11212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,45.5 - parent: 2 - - uid: 11213 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,45.5 - parent: 2 - - uid: 11214 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,45.5 - parent: 2 - - uid: 11215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,44.5 - parent: 2 - - uid: 11216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,44.5 - parent: 2 - - uid: 11217 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 2 - - uid: 11218 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,43.5 - parent: 2 - - uid: 11219 - components: - - type: Transform - pos: -28.5,43.5 - parent: 2 - - uid: 11220 - components: - - type: Transform - pos: -26.5,45.5 - parent: 2 - - uid: 11221 - components: - - type: Transform - pos: -18.5,43.5 - parent: 2 - - uid: 11222 - components: - - type: Transform - pos: -19.5,43.5 - parent: 2 - - uid: 11223 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 11224 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 11225 - components: - - type: Transform - pos: -27.5,44.5 - parent: 2 - - uid: 11226 - components: - - type: Transform - pos: -27.5,43.5 - parent: 2 - - uid: 11227 - components: - - type: Transform - pos: -26.5,44.5 - parent: 2 - - uid: 11228 - components: - - type: Transform - pos: -21.5,45.5 - parent: 2 - - uid: 11229 - components: - - type: Transform - pos: -20.5,45.5 - parent: 2 - - uid: 11230 - components: - - type: Transform - pos: -22.5,45.5 - parent: 2 - - uid: 11231 - components: - - type: Transform - pos: -24.5,45.5 - parent: 2 - - uid: 11232 - components: - - type: Transform - pos: -23.5,45.5 - parent: 2 - - uid: 11233 - components: - - type: Transform - pos: -25.5,45.5 - parent: 2 - - uid: 11234 - components: - - type: Transform - pos: -33.5,27.5 - parent: 2 - - uid: 11235 - components: - - type: Transform - pos: -45.5,37.5 - parent: 2 - - uid: 11236 - components: - - type: Transform - pos: -49.5,24.5 - parent: 2 - - uid: 11237 - components: - - type: Transform - pos: -65.5,36.5 - parent: 2 - - uid: 11238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-65.5 - parent: 2 - - uid: 11239 - components: - - type: Transform - pos: -41.5,37.5 - parent: 2 - - uid: 11240 - components: - - type: Transform - pos: -45.5,36.5 - parent: 2 - - uid: 11241 - components: - - type: Transform - pos: -51.5,27.5 - parent: 2 - - uid: 11242 - components: - - type: Transform - pos: -51.5,26.5 - parent: 2 - - uid: 11243 - components: - - type: Transform - pos: -40.5,30.5 - parent: 2 - - uid: 11244 - components: - - type: Transform - pos: -46.5,38.5 - parent: 2 - - uid: 11245 - components: - - type: Transform - pos: 42.5,6.5 - parent: 2 - - uid: 11246 - components: - - type: Transform - pos: -41.5,36.5 - parent: 2 - - uid: 11247 - components: - - type: Transform - pos: 7.5,34.5 - parent: 2 - - uid: 11248 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - - uid: 11249 - components: - - type: Transform - pos: 6.5,37.5 - parent: 2 - - uid: 11250 - components: - - type: Transform - pos: 5.5,40.5 - parent: 2 - - uid: 11251 - components: - - type: Transform - pos: 3.5,44.5 - parent: 2 - - uid: 11252 - components: - - type: Transform - pos: 3.5,43.5 - parent: 2 - - uid: 11253 - components: - - type: Transform - pos: 2.5,45.5 - parent: 2 - - uid: 11254 - components: - - type: Transform - pos: 1.5,45.5 - parent: 2 - - uid: 11255 - components: - - type: Transform - pos: -1.5,45.5 - parent: 2 - - uid: 11256 - components: - - type: Transform - pos: -2.5,45.5 - parent: 2 - - uid: 11257 - components: - - type: Transform - pos: -2.5,46.5 - parent: 2 - - uid: 11258 - components: - - type: Transform - pos: -4.5,47.5 - parent: 2 - - uid: 11259 - components: - - type: Transform - pos: -5.5,48.5 - parent: 2 - - uid: 11260 - components: - - type: Transform - pos: -7.5,48.5 - parent: 2 - - uid: 11261 - components: - - type: Transform - pos: -8.5,48.5 - parent: 2 - - uid: 11262 - components: - - type: Transform - pos: -9.5,48.5 - parent: 2 - - uid: 11263 - components: - - type: Transform - pos: -12.5,49.5 - parent: 2 - - uid: 11264 - components: - - type: Transform - pos: -14.5,49.5 - parent: 2 - - uid: 11265 - components: - - type: Transform - pos: -16.5,49.5 - parent: 2 - - uid: 11266 - components: - - type: Transform - pos: -17.5,49.5 - parent: 2 - - uid: 11267 - components: - - type: Transform - pos: -23.5,49.5 - parent: 2 - - uid: 11268 - components: - - type: Transform - pos: -24.5,49.5 - parent: 2 - - uid: 11269 - components: - - type: Transform - pos: -25.5,49.5 - parent: 2 - - uid: 11270 - components: - - type: Transform - pos: -26.5,48.5 - parent: 2 - - uid: 11271 - components: - - type: Transform - pos: -26.5,47.5 - parent: 2 - - uid: 11272 - components: - - type: Transform - pos: -27.5,47.5 - parent: 2 - - uid: 11273 - components: - - type: Transform - pos: -28.5,46.5 - parent: 2 - - uid: 11274 - components: - - type: Transform - pos: -19.5,48.5 - parent: 2 - - uid: 11275 - components: - - type: Transform - pos: -20.5,48.5 - parent: 2 - - uid: 11276 - components: - - type: Transform - pos: -22.5,48.5 - parent: 2 - - uid: 11277 - components: - - type: Transform - pos: -21.5,48.5 - parent: 2 - - uid: 11278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,49.5 - parent: 2 - - uid: 11279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,48.5 - parent: 2 - - uid: 11280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,49.5 - parent: 2 - - uid: 11281 - components: - - type: Transform - pos: 4.5,41.5 - parent: 2 - - uid: 11282 - components: - - type: Transform - pos: 4.5,42.5 - parent: 2 - - uid: 11283 - components: - - type: Transform - pos: 7.5,36.5 - parent: 2 - - uid: 11284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,45.5 - parent: 2 - - uid: 11285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,45.5 - parent: 2 - - uid: 11286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-60.5 - parent: 2 - - uid: 11287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-59.5 - parent: 2 - - uid: 11288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-58.5 - parent: 2 - - uid: 11289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-57.5 - parent: 2 - - uid: 11290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-54.5 - parent: 2 - - uid: 11291 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-54.5 - parent: 2 - - uid: 11292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-54.5 - parent: 2 - - uid: 11293 - components: - - type: Transform - pos: -36.5,-49.5 - parent: 2 - - uid: 11294 - components: - - type: Transform - pos: -36.5,-50.5 - parent: 2 - - uid: 11295 - components: - - type: Transform - pos: -35.5,-50.5 - parent: 2 - - uid: 11296 - components: - - type: Transform - pos: -35.5,-54.5 - parent: 2 - - uid: 11297 - components: - - type: Transform - pos: -34.5,-55.5 - parent: 2 - - uid: 11298 - components: - - type: Transform - pos: -34.5,-56.5 - parent: 2 - - uid: 11299 - components: - - type: Transform - pos: -34.5,-57.5 - parent: 2 - - uid: 11300 - components: - - type: Transform - pos: -34.5,-58.5 - parent: 2 - - uid: 11301 - components: - - type: Transform - pos: -34.5,-59.5 - parent: 2 - - uid: 11302 - components: - - type: Transform - pos: -34.5,-60.5 - parent: 2 - - uid: 11303 - components: - - type: Transform - pos: -35.5,-62.5 - parent: 2 - - uid: 11304 - components: - - type: Transform - pos: -35.5,-63.5 - parent: 2 - - uid: 11305 - components: - - type: Transform - pos: -35.5,-64.5 - parent: 2 - - uid: 11306 - components: - - type: Transform - pos: -37.5,68.5 - parent: 2 - - uid: 11307 - components: - - type: Transform - pos: -38.5,68.5 - parent: 2 - - uid: 11308 - components: - - type: Transform - pos: -54.5,42.5 - parent: 2 - - uid: 11309 - components: - - type: Transform - pos: -55.5,42.5 - parent: 2 - - uid: 11310 - components: - - type: Transform - pos: -53.5,42.5 - parent: 2 - - uid: 11311 - components: - - type: Transform - pos: -56.5,39.5 - parent: 2 - - uid: 11312 - components: - - type: Transform - pos: -52.5,39.5 - parent: 2 - - uid: 11313 - components: - - type: Transform - pos: -52.5,41.5 - parent: 2 - - uid: 11314 - components: - - type: Transform - pos: -52.5,40.5 - parent: 2 - - uid: 11315 - components: - - type: Transform - pos: -56.5,41.5 - parent: 2 - - uid: 11316 - components: - - type: Transform - pos: -56.5,40.5 - parent: 2 - - uid: 11317 - components: - - type: Transform - pos: -36.5,68.5 - parent: 2 - - uid: 11318 - components: - - type: Transform - pos: -50.5,39.5 - parent: 2 - - uid: 11319 - components: - - type: Transform - pos: -50.5,40.5 - parent: 2 - - uid: 11320 - components: - - type: Transform - pos: -40.5,69.5 - parent: 2 - - uid: 11321 - components: - - type: Transform - pos: -32.5,65.5 - parent: 2 - - uid: 11322 - components: - - type: Transform - pos: -44.5,68.5 - parent: 2 - - uid: 11323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,6.5 - parent: 2 - - uid: 11324 - components: - - type: Transform - pos: -32.5,59.5 - parent: 2 - - uid: 11325 - components: - - type: Transform - pos: -35.5,68.5 - parent: 2 - - uid: 11326 - components: - - type: Transform - pos: -58.5,32.5 - parent: 2 - - uid: 11327 - components: - - type: Transform - pos: -60.5,37.5 - parent: 2 - - uid: 11328 - components: - - type: Transform - pos: -52.5,63.5 - parent: 2 - - uid: 11329 - components: - - type: Transform - pos: -60.5,31.5 - parent: 2 - - uid: 11330 - components: - - type: Transform - pos: -49.5,54.5 - parent: 2 - - uid: 11331 - components: - - type: Transform - pos: -52.5,67.5 - parent: 2 - - uid: 11332 - components: - - type: Transform - pos: -32.5,57.5 - parent: 2 - - uid: 11333 - components: - - type: Transform - pos: -52.5,66.5 - parent: 2 - - uid: 11334 - components: - - type: Transform - pos: -32.5,67.5 - parent: 2 - - uid: 11335 - components: - - type: Transform - pos: -35.5,54.5 - parent: 2 - - uid: 11336 - components: - - type: Transform - pos: -52.5,55.5 - parent: 2 - - uid: 11337 - components: - - type: Transform - pos: -32.5,56.5 - parent: 2 - - uid: 11338 - components: - - type: Transform - pos: -52.5,56.5 - parent: 2 - - uid: 11339 - components: - - type: Transform - pos: -52.5,58.5 - parent: 2 - - uid: 11340 - components: - - type: Transform - pos: -60.5,36.5 - parent: 2 - - uid: 11341 - components: - - type: Transform - pos: -61.5,36.5 - parent: 2 - - uid: 11342 - components: - - type: Transform - pos: -62.5,36.5 - parent: 2 - - uid: 11343 - components: - - type: Transform - pos: -58.5,33.5 - parent: 2 - - uid: 11344 - components: - - type: Transform - pos: -60.5,32.5 - parent: 2 - - uid: 11345 - components: - - type: Transform - pos: -61.5,32.5 - parent: 2 - - uid: 11346 - components: - - type: Transform - pos: -62.5,32.5 - parent: 2 - - uid: 11347 - components: - - type: Transform - pos: -58.5,35.5 - parent: 2 - - uid: 11348 - components: - - type: Transform - pos: -58.5,36.5 - parent: 2 - - uid: 11349 - components: - - type: Transform - pos: -58.5,37.5 - parent: 2 - - uid: 11350 - components: - - type: Transform - pos: -32.5,58.5 - parent: 2 - - uid: 11351 - components: - - type: Transform - pos: -44.5,69.5 - parent: 2 - - uid: 11352 - components: - - type: Transform - pos: -58.5,31.5 - parent: 2 - - uid: 11353 - components: - - type: Transform - pos: -32.5,58.5 - parent: 2 - - uid: 11354 - components: - - type: Transform - pos: -36.5,54.5 - parent: 2 - - uid: 11355 - components: - - type: Transform - pos: -52.5,57.5 - parent: 2 - - uid: 11356 - components: - - type: Transform - pos: -50.5,54.5 - parent: 2 - - uid: 11357 - components: - - type: Transform - pos: -41.5,70.5 - parent: 2 - - uid: 11358 - components: - - type: Transform - pos: -38.5,54.5 - parent: 2 - - uid: 11359 - components: - - type: Transform - pos: -34.5,54.5 - parent: 2 - - uid: 11360 - components: - - type: Transform - pos: -32.5,64.5 - parent: 2 - - uid: 11361 - components: - - type: Transform - pos: -47.5,68.5 - parent: 2 - - uid: 11362 - components: - - type: Transform - pos: -32.5,66.5 - parent: 2 - - uid: 11363 - components: - - type: Transform - pos: -52.5,59.5 - parent: 2 - - uid: 11364 - components: - - type: Transform - pos: -52.5,64.5 - parent: 2 - - uid: 11365 - components: - - type: Transform - pos: -52.5,65.5 - parent: 2 - - uid: 11366 - components: - - type: Transform - pos: -51.5,68.5 - parent: 2 - - uid: 11367 - components: - - type: Transform - pos: -45.5,68.5 - parent: 2 - - uid: 11368 - components: - - type: Transform - pos: -51.5,35.5 - parent: 2 - - uid: 11369 - components: - - type: Transform - pos: -51.5,34.5 - parent: 2 - - uid: 11370 - components: - - type: Transform - pos: -50.5,68.5 - parent: 2 - - uid: 11371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,42.5 - parent: 2 - - uid: 11372 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,43.5 - parent: 2 - - uid: 11373 - components: - - type: Transform - pos: 3.5,39.5 - parent: 2 - - uid: 11374 - components: - - type: Transform - pos: 18.5,34.5 - parent: 2 - - uid: 11375 - components: - - type: Transform - pos: 15.5,34.5 - parent: 2 - - uid: 11376 - components: - - type: Transform - pos: 16.5,14.5 - parent: 2 - - uid: 11377 - components: - - type: Transform - pos: -47.5,8.5 - parent: 2 - - uid: 11378 - components: - - type: Transform - pos: -41.5,8.5 - parent: 2 - - uid: 11379 - components: - - type: Transform - pos: -43.5,16.5 - parent: 2 - - uid: 11380 - components: - - type: Transform - pos: -54.5,12.5 - parent: 2 - - uid: 11381 - components: - - type: Transform - pos: -51.5,12.5 - parent: 2 - - uid: 11382 - components: - - type: Transform - pos: -52.5,15.5 - parent: 2 - - uid: 11383 - components: - - type: Transform - pos: -52.5,16.5 - parent: 2 - - uid: 11384 - components: - - type: Transform - pos: -52.5,17.5 - parent: 2 - - uid: 11385 - components: - - type: Transform - pos: -51.5,20.5 - parent: 2 - - uid: 11386 - components: - - type: Transform - pos: -54.5,20.5 - parent: 2 - - uid: 11387 - components: - - type: Transform - pos: -11.5,-20.5 - parent: 2 - - uid: 11388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,24.5 - parent: 2 - - uid: 11389 - components: - - type: Transform - pos: -52.5,-18.5 - parent: 2 - - uid: 11390 - components: - - type: Transform - pos: -55.5,-18.5 - parent: 2 - - uid: 11391 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 2 - - uid: 11392 - components: - - type: Transform - pos: -60.5,-11.5 - parent: 2 - - uid: 11393 - components: - - type: Transform - pos: -61.5,-1.5 - parent: 2 - - uid: 11394 - components: - - type: Transform - pos: -61.5,-0.5 - parent: 2 - - uid: 11395 - components: - - type: Transform - pos: -58.5,3.5 - parent: 2 - - uid: 11397 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 2 - - uid: 11398 - components: - - type: Transform - pos: 27.5,3.5 - parent: 2 - - uid: 11399 - components: - - type: Transform - pos: 4.5,18.5 - parent: 2 - - uid: 11400 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - - uid: 11401 - components: - - type: Transform - pos: 12.5,-37.5 - parent: 2 - - uid: 11402 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 2 - - uid: 11403 - components: - - type: Transform - pos: -25.5,28.5 - parent: 2 - - uid: 11404 - components: - - type: Transform - pos: -64.5,-8.5 - parent: 2 - - uid: 11405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-25.5 - parent: 2 - - uid: 11406 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 2 - - uid: 11407 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 2 - - uid: 11408 - components: - - type: Transform - pos: -25.5,29.5 - parent: 2 - - uid: 11409 - components: - - type: Transform - pos: -25.5,30.5 - parent: 2 - - uid: 11410 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 2 - - uid: 11411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-34.5 - parent: 2 - - uid: 11412 - components: - - type: Transform - pos: -62.5,-4.5 - parent: 2 - - uid: 11413 - components: - - type: Transform - pos: -26.5,7.5 - parent: 2 - - uid: 11414 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 2 - - uid: 11415 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 2 - - uid: 11416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,37.5 - parent: 2 - - uid: 11417 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 2 - - uid: 11418 - components: - - type: Transform - pos: -51.5,9.5 - parent: 2 - - uid: 11419 - components: - - type: Transform - pos: -6.5,4.5 - parent: 2 - - uid: 11420 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - - uid: 11421 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 2 - - uid: 11422 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 2 - - uid: 11423 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 2 - - uid: 11424 - components: - - type: Transform - pos: -13.5,-10.5 - parent: 2 - - uid: 11425 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 2 - - uid: 11426 - components: - - type: Transform - pos: -33.5,4.5 - parent: 2 - - uid: 11427 - components: - - type: Transform - pos: -23.5,9.5 - parent: 2 - - uid: 11428 - components: - - type: Transform - pos: 42.5,4.5 - parent: 2 - - uid: 11429 - components: - - type: Transform - pos: -67.5,-9.5 - parent: 2 - - uid: 11430 - components: - - type: Transform - pos: -64.5,-7.5 - parent: 2 - - uid: 11431 - components: - - type: Transform - pos: -67.5,-8.5 - parent: 2 - - uid: 11432 - components: - - type: Transform - pos: -62.5,41.5 - parent: 2 - - uid: 11433 - components: - - type: Transform - pos: -65.5,35.5 - parent: 2 - - uid: 11434 - components: - - type: Transform - pos: -65.5,33.5 - parent: 2 - - uid: 11435 - components: - - type: Transform - pos: -66.5,34.5 - parent: 2 - - uid: 11436 - components: - - type: Transform - pos: -65.5,32.5 - parent: 2 - - uid: 11437 - components: - - type: Transform - pos: -61.5,-3.5 - parent: 2 - - uid: 11438 - components: - - type: Transform - pos: -13.5,24.5 - parent: 2 - - uid: 11439 - components: - - type: Transform - pos: 9.5,-53.5 - parent: 2 - - uid: 11440 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 2 - - uid: 11441 - components: - - type: Transform - pos: -51.5,28.5 - parent: 2 - - uid: 11442 - components: - - type: Transform - pos: -51.5,23.5 - parent: 2 - - uid: 11443 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - - uid: 11444 - components: - - type: Transform - pos: -21.5,34.5 - parent: 2 - - uid: 11445 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - - uid: 11446 - components: - - type: Transform - pos: -18.5,34.5 - parent: 2 - - uid: 11447 - components: - - type: Transform - pos: -40.5,52.5 - parent: 2 - - uid: 11448 - components: - - type: Transform - pos: -41.5,52.5 - parent: 2 - - uid: 11449 - components: - - type: Transform - pos: -41.5,53.5 - parent: 2 - - uid: 11450 - components: - - type: Transform - pos: -41.5,54.5 - parent: 2 - - uid: 11451 - components: - - type: Transform - pos: -43.5,54.5 - parent: 2 - - uid: 11452 - components: - - type: Transform - pos: -43.5,53.5 - parent: 2 - - uid: 11453 - components: - - type: Transform - pos: -43.5,52.5 - parent: 2 - - uid: 11454 - components: - - type: Transform - pos: -44.5,52.5 - parent: 2 - - uid: 11455 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 2 - - uid: 11456 - components: - - type: Transform - pos: -2.5,12.5 - parent: 2 - - uid: 11457 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 2 - - uid: 11458 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 2 - - uid: 11459 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 2 - - uid: 11460 - components: - - type: Transform - pos: -20.5,1.5 - parent: 2 - - uid: 11461 - components: - - type: Transform - pos: 23.5,-31.5 - parent: 2 - - uid: 11462 - components: - - type: Transform - pos: 25.5,34.5 - parent: 2 - - uid: 11463 - components: - - type: Transform - pos: 24.5,34.5 - parent: 2 - - uid: 11464 - components: - - type: Transform - pos: 32.5,31.5 - parent: 2 - - uid: 11465 - components: - - type: Transform - pos: 23.5,-30.5 - parent: 2 - - uid: 11466 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 11467 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - uid: 11468 - components: - - type: Transform - pos: -2.5,3.5 - parent: 2 - - uid: 11469 - components: - - type: Transform - pos: -63.5,-10.5 - parent: 2 - - uid: 11470 - components: - - type: Transform - pos: -57.5,3.5 - parent: 2 - - uid: 11471 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 2 - - uid: 11472 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 2 - - uid: 11473 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 2 - - uid: 11474 - components: - - type: Transform - pos: -42.5,38.5 - parent: 2 - - uid: 11475 - components: - - type: Transform - pos: 13.5,35.5 - parent: 2 - - uid: 11476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,48.5 - parent: 2 - - uid: 11477 - components: - - type: Transform - pos: -34.5,44.5 - parent: 2 - - uid: 11478 - components: - - type: Transform - pos: 11.5,31.5 - parent: 2 - - uid: 11479 - components: - - type: Transform - pos: 13.5,-31.5 - parent: 2 - - uid: 11481 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,48.5 - parent: 2 - - uid: 11482 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 2 - - uid: 11483 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 2 - - uid: 11484 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - - uid: 11485 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 - - uid: 11486 - components: - - type: Transform - pos: 9.5,10.5 - parent: 2 - - uid: 11487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-49.5 - parent: 2 - - uid: 11493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-51.5 - parent: 2 - - uid: 11494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 2 - - uid: 11496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-48.5 - parent: 2 - - uid: 11497 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-47.5 - parent: 2 - - uid: 11498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-50.5 - parent: 2 - - uid: 11499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-51.5 - parent: 2 - - uid: 11500 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-42.5 - parent: 2 - - uid: 11501 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 2 - - uid: 11502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 2 - - uid: 11503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 2 - - uid: 11504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-46.5 - parent: 2 - - uid: 11505 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 2 - - uid: 11508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 2 - - uid: 11512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 2 - - uid: 11513 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-43.5 - parent: 2 - - uid: 11514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-46.5 - parent: 2 - - uid: 15024 - components: - - type: Transform - pos: 6.5,-27.5 - parent: 2 - - uid: 16100 - components: - - type: Transform - pos: 8.5,-27.5 - parent: 2 - - uid: 17478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-48.5 - parent: 2 - - uid: 17489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-46.5 - parent: 2 - - uid: 17497 - components: - - type: Transform - pos: -28.5,-33.5 - parent: 2 - - uid: 17499 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 2 - - uid: 17500 - components: - - type: Transform - pos: -28.5,-34.5 - parent: 2 - - uid: 17501 - components: - - type: Transform - pos: -34.5,-43.5 - parent: 2 - - uid: 17502 - components: - - type: Transform - pos: -34.5,-33.5 - parent: 2 - - uid: 17506 - components: - - type: Transform - pos: -34.5,-34.5 - parent: 2 - - uid: 17507 - components: - - type: Transform - pos: -36.5,-35.5 - parent: 2 - - uid: 17516 - components: - - type: Transform - pos: -34.5,-42.5 - parent: 2 - - uid: 17518 - components: - - type: Transform - pos: -28.5,-43.5 - parent: 2 - - uid: 17519 - components: - - type: Transform - pos: -28.5,-42.5 - parent: 2 - - uid: 17581 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 2 - - uid: 17694 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-47.5 - parent: 2 - - uid: 17777 - components: - - type: Transform - pos: -29.5,-39.5 - parent: 2 - - uid: 17779 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 2 - - uid: 17780 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 17781 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 17782 - components: - - type: Transform - pos: -33.5,-39.5 - parent: 2 - - uid: 17790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-48.5 - parent: 2 -- proto: GrilleBroken - entities: - - uid: 11522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-48.5 - parent: 2 - - uid: 11523 - components: - - type: Transform - pos: -53.5,-22.5 - parent: 2 - - uid: 11524 - components: - - type: Transform - pos: -60.5,6.5 - parent: 2 - - uid: 11525 - components: - - type: Transform - pos: -53.5,6.5 - parent: 2 - - uid: 11526 - components: - - type: Transform - pos: 15.5,34.5 - parent: 2 - - uid: 11527 - components: - - type: Transform - pos: 17.5,34.5 - parent: 2 - - uid: 11528 - components: - - type: Transform - pos: 16.5,34.5 - parent: 2 - - uid: 11529 - components: - - type: Transform - pos: -52.5,6.5 - parent: 2 - - uid: 11530 - components: - - type: Transform - pos: 3.5,-82.5 - parent: 2 - - uid: 11531 - components: - - type: Transform - pos: -65.5,-11.5 - parent: 2 - - uid: 11532 - components: - - type: Transform - pos: -58.5,6.5 - parent: 2 - - uid: 11533 - components: - - type: Transform - pos: -60.5,-20.5 - parent: 2 - - uid: 11534 - components: - - type: Transform - pos: -59.5,-19.5 - parent: 2 - - uid: 11535 - components: - - type: Transform - pos: -62.5,-17.5 - parent: 2 - - uid: 11536 - components: - - type: Transform - pos: -62.5,-13.5 - parent: 2 - - uid: 11537 - components: - - type: Transform - pos: -66.5,-10.5 - parent: 2 - - uid: 11538 - components: - - type: Transform - pos: -64.5,-7.5 - parent: 2 - - uid: 11539 - components: - - type: Transform - pos: -63.5,-2.5 - parent: 2 - - uid: 11540 - components: - - type: Transform - pos: -65.5,2.5 - parent: 2 - - uid: 11541 - components: - - type: Transform - pos: -63.5,5.5 - parent: 2 - - uid: 11542 - components: - - type: Transform - pos: -56.5,5.5 - parent: 2 - - uid: 11543 - components: - - type: Transform - pos: -54.5,5.5 - parent: 2 - - uid: 11544 - components: - - type: Transform - pos: -63.5,-10.5 - parent: 2 - - uid: 11545 - components: - - type: Transform - pos: -25.5,-86.5 - parent: 2 - - uid: 11546 - components: - - type: Transform - pos: -24.5,-86.5 - parent: 2 - - uid: 11547 - components: - - type: Transform - pos: -9.5,-89.5 - parent: 2 - - uid: 11548 - components: - - type: Transform - pos: -19.5,-89.5 - parent: 2 - - uid: 11549 - components: - - type: Transform - pos: 3.5,-83.5 - parent: 2 - - uid: 11550 - components: - - type: Transform - pos: 5.5,-77.5 - parent: 2 - - uid: 11551 - components: - - type: Transform - pos: 3.5,-68.5 - parent: 2 - - uid: 11552 - components: - - type: Transform - pos: -5.5,-64.5 - parent: 2 - - uid: 11553 - components: - - type: Transform - pos: -2.5,-87.5 - parent: 2 - - uid: 11554 - components: - - type: Transform - pos: -38.5,-80.5 - parent: 2 - - uid: 11555 - components: - - type: Transform - pos: -45.5,-24.5 - parent: 2 - - uid: 11556 - components: - - type: Transform - pos: -39.5,-73.5 - parent: 2 - - uid: 11557 - components: - - type: Transform - pos: -45.5,-25.5 - parent: 2 - - uid: 11558 - components: - - type: Transform - pos: -44.5,-30.5 - parent: 2 - - uid: 11559 - components: - - type: Transform - pos: -45.5,-28.5 - parent: 2 - - uid: 11560 - components: - - type: Transform - pos: 43.5,-5.5 - parent: 2 - - uid: 11561 - components: - - type: Transform - pos: 43.5,-15.5 - parent: 2 - - uid: 11562 - components: - - type: Transform - pos: 43.5,-22.5 - parent: 2 - - uid: 11563 - components: - - type: Transform - pos: 54.5,2.5 - parent: 2 - - uid: 11564 - components: - - type: Transform - pos: 55.5,2.5 - parent: 2 - - uid: 11565 - components: - - type: Transform - pos: 61.5,2.5 - parent: 2 - - uid: 11566 - components: - - type: Transform - pos: 62.5,2.5 - parent: 2 - - uid: 11567 - components: - - type: Transform - pos: 62.5,6.5 - parent: 2 - - uid: 11568 - components: - - type: Transform - pos: 65.5,13.5 - parent: 2 - - uid: 11569 - components: - - type: Transform - pos: 53.5,20.5 - parent: 2 - - uid: 11570 - components: - - type: Transform - pos: 52.5,20.5 - parent: 2 - - uid: 11571 - components: - - type: Transform - pos: 39.5,21.5 - parent: 2 - - uid: 11572 - components: - - type: Transform - pos: 39.5,20.5 - parent: 2 - - uid: 11573 - components: - - type: Transform - pos: 31.5,31.5 - parent: 2 - - uid: 11574 - components: - - type: Transform - pos: 14.5,34.5 - parent: 2 - - uid: 11575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,37.5 - parent: 2 - - uid: 11576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,37.5 - parent: 2 - - uid: 11577 - components: - - type: Transform - pos: -0.5,45.5 - parent: 2 - - uid: 11578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,47.5 - parent: 2 - - uid: 11579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,37.5 - parent: 2 - - uid: 11580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,48.5 - parent: 2 - - uid: 11581 - components: - - type: Transform - pos: -6.5,49.5 - parent: 2 - - uid: 11582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,48.5 - parent: 2 - - uid: 11583 - components: - - type: Transform - pos: 0.5,45.5 - parent: 2 - - uid: 11584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,48.5 - parent: 2 - - uid: 11585 - components: - - type: Transform - pos: 3.5,-62.5 - parent: 2 - - uid: 11586 - components: - - type: Transform - pos: 3.5,-64.5 - parent: 2 - - uid: 11587 - components: - - type: Transform - pos: 3.5,-61.5 - parent: 2 - - uid: 11588 - components: - - type: Transform - pos: 3.5,-63.5 - parent: 2 - - uid: 11589 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 2 - - uid: 11590 - components: - - type: Transform - pos: -35.5,-53.5 - parent: 2 - - uid: 11591 - components: - - type: Transform - pos: -35.5,-52.5 - parent: 2 - - uid: 11592 - components: - - type: Transform - pos: -34.5,-61.5 - parent: 2 - - uid: 11593 - components: - - type: Transform - pos: -35.5,-65.5 - parent: 2 - - uid: 11594 - components: - - type: Transform - pos: -45.5,54.5 - parent: 2 - - uid: 11595 - components: - - type: Transform - pos: -49.5,68.5 - parent: 2 - - uid: 11596 - components: - - type: Transform - pos: -32.5,62.5 - parent: 2 - - uid: 11597 - components: - - type: Transform - pos: -32.5,63.5 - parent: 2 - - uid: 11598 - components: - - type: Transform - pos: -52.5,60.5 - parent: 2 - - uid: 11599 - components: - - type: Transform - pos: -32.5,55.5 - parent: 2 - - uid: 11600 - components: - - type: Transform - pos: -48.5,68.5 - parent: 2 - - uid: 11601 - components: - - type: Transform - pos: -37.5,54.5 - parent: 2 - - uid: 11602 - components: - - type: Transform - pos: -40.5,68.5 - parent: 2 - - uid: 11603 - components: - - type: Transform - pos: -32.5,60.5 - parent: 2 - - uid: 11604 - components: - - type: Transform - pos: -34.5,68.5 - parent: 2 - - uid: 11605 - components: - - type: Transform - pos: -43.5,70.5 - parent: 2 - - uid: 11606 - components: - - type: Transform - pos: -52.5,61.5 - parent: 2 - - uid: 11607 - components: - - type: Transform - pos: -56.5,45.5 - parent: 2 - - uid: 11608 - components: - - type: Transform - pos: -59.5,44.5 - parent: 2 - - uid: 11609 - components: - - type: Transform - pos: -59.5,41.5 - parent: 2 - - uid: 11610 - components: - - type: Transform - pos: -57.5,45.5 - parent: 2 - - uid: 11611 - components: - - type: Transform - pos: -58.5,44.5 - parent: 2 - - uid: 11612 - components: - - type: Transform - pos: -59.5,40.5 - parent: 2 - - uid: 11613 - components: - - type: Transform - pos: 13.5,36.5 - parent: 2 - - uid: 11614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,36.5 - parent: 2 - - uid: 11615 - components: - - type: Transform - pos: -64.5,39.5 - parent: 2 - - uid: 11616 - components: - - type: Transform - pos: -63.5,40.5 - parent: 2 - - uid: 11617 - components: - - type: Transform - pos: -61.5,41.5 - parent: 2 - - uid: 11618 - components: - - type: Transform - pos: -60.5,41.5 - parent: 2 - - uid: 11619 - components: - - type: Transform - pos: -65.5,38.5 - parent: 2 - - uid: 11620 - components: - - type: Transform - pos: -65.5,37.5 - parent: 2 - - uid: 11621 - components: - - type: Transform - pos: -65.5,34.5 - parent: 2 - - uid: 11622 - components: - - type: Transform - pos: -31.5,48.5 - parent: 2 - - uid: 11623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,48.5 - parent: 2 - - uid: 11624 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,48.5 - parent: 2 - - uid: 11625 - components: - - type: Transform - pos: -28.5,48.5 - parent: 2 - - uid: 15228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-48.5 - parent: 2 - - uid: 15229 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-48.5 - parent: 2 - - uid: 15244 - components: - - type: Transform - pos: -46.5,-45.5 - parent: 2 - - uid: 15245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-48.5 - parent: 2 - - uid: 17477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-48.5 - parent: 2 - - uid: 17842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-39.5 - parent: 2 - - uid: 17843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-42.5 - parent: 2 - - uid: 17844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-37.5 - parent: 2 - - uid: 17845 - components: - - type: Transform - pos: -46.5,-38.5 - parent: 2 - - uid: 17846 - components: - - type: Transform - pos: -46.5,-41.5 - parent: 2 - - uid: 17847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-35.5 - parent: 2 -- proto: GunSafe - entities: - - uid: 11626 - components: - - type: Transform - pos: -43.5,-4.5 - parent: 2 -- proto: GunSafeLaserCarbine - entities: - - uid: 11627 - components: - - type: Transform - pos: -43.5,-1.5 - parent: 2 -- proto: GunSafePistolMk58 - entities: - - uid: 11628 - components: - - type: Transform - pos: -44.5,-4.5 - parent: 2 -- proto: GunSafeRifleLecter - entities: - - uid: 11629 - components: - - type: Transform - pos: -43.5,-2.5 - parent: 2 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 11630 - components: - - type: Transform - pos: -43.5,-0.5 - parent: 2 -- proto: HandheldStationMap - entities: - - uid: 6236 - components: - - type: Transform - pos: -10.483878,-30.367462 - parent: 2 - - uid: 6242 - components: - - type: Transform - pos: -20.39384,-25.21746 - parent: 2 -- proto: HandLabeler - entities: - - uid: 11631 - components: - - type: Transform - pos: 4.671028,-3.138898 - parent: 2 - - uid: 11632 - components: - - type: Transform - pos: 16.646406,11.096404 - parent: 2 - - uid: 11633 - components: - - type: Transform - pos: 19.420631,21.73208 - parent: 2 - - uid: 11634 - components: - - type: Transform - pos: 12.324071,-10.753526 - parent: 2 -- proto: HatSpawner - entities: - - uid: 11635 - components: - - type: Transform - pos: -31.5,9.5 - parent: 2 - - uid: 11636 - components: - - type: Transform - pos: -38.5,17.5 - parent: 2 -- proto: HeatExchanger - entities: - - uid: 17484 - components: - - type: Transform - pos: -45.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17876 - components: - - type: Transform - pos: -44.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17877 - components: - - type: Transform - pos: -43.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17878 - components: - - type: Transform - pos: -42.5,-40.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: HighSecArmoryLocked - entities: - - uid: 11637 - components: - - type: Transform - pos: -41.5,-3.5 - parent: 2 -- proto: HighSecCommandLocked - entities: - - uid: 11638 - components: - - type: Transform - pos: -16.5,-62.5 - parent: 2 - - uid: 11639 - components: - - type: Transform - pos: -16.5,-65.5 - parent: 2 - - uid: 11640 - components: - - type: Transform - pos: -16.5,-69.5 - parent: 2 - - uid: 11641 - components: - - type: Transform - pos: -16.5,-73.5 - parent: 2 - - uid: 11642 - components: - - type: Transform - pos: -23.5,-76.5 - parent: 2 - - uid: 11643 - components: - - type: Transform - pos: -18.5,-76.5 - parent: 2 - - uid: 11644 - components: - - type: Transform - pos: -13.5,-76.5 - parent: 2 - - uid: 11645 - components: - - type: Transform - pos: -25.5,-76.5 - parent: 2 - - uid: 11646 - components: - - type: Transform - pos: -16.5,-79.5 - parent: 2 - - uid: 11647 - components: - - type: Transform - pos: -16.5,-84.5 - parent: 2 - - uid: 11648 - components: - - type: Transform - pos: -1.5,19.5 - parent: 2 -- proto: HolofanProjector - entities: - - uid: 11649 - components: - - type: Transform - pos: -2.214195,-30.719608 - parent: 2 -- proto: HoloprojectorEngineering - entities: - - uid: 11650 - components: - - type: Transform - pos: 26.690435,-21.281763 - parent: 2 - - uid: 11651 - components: - - type: Transform - pos: -2.596038,-15.598579 - parent: 2 - - uid: 11652 - components: - - type: Transform - pos: -2.283538,-15.239204 - parent: 2 -- proto: HoloprojectorSecurity - entities: - - uid: 11653 - components: - - type: Transform - pos: -26.45485,-11.639819 - parent: 2 -- proto: HospitalCurtainsOpen - entities: - - uid: 11656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 2 - - uid: 11657 - components: - - type: Transform - pos: -21.5,19.5 - parent: 2 - - uid: 11658 - components: - - type: Transform - pos: -21.5,20.5 - parent: 2 - - uid: 11659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 2 - - uid: 11660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 2 - - uid: 11661 - components: - - type: Transform - pos: -36.5,9.5 - parent: 2 - - uid: 11662 - components: - - type: Transform - pos: -37.5,9.5 - parent: 2 - - uid: 11663 - components: - - type: Transform - pos: 10.5,19.5 - parent: 2 - - uid: 11664 - components: - - type: Transform - pos: 10.5,18.5 - parent: 2 - - uid: 11665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 - parent: 2 - - uid: 11666 - components: - - type: Transform - pos: 15.5,24.5 - parent: 2 - - uid: 11667 - components: - - type: Transform - pos: 15.5,23.5 - parent: 2 - - uid: 11668 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,31.5 - parent: 2 - - uid: 11669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,26.5 - parent: 2 - - uid: 11670 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 2 - - uid: 11671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,31.5 - parent: 2 - - uid: 11672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,31.5 - parent: 2 -- proto: HotplateMachineCircuitboard - entities: - - uid: 11673 - components: - - type: Transform - pos: -14.571217,-26.652689 - parent: 2 -- proto: hydroponicsSoil - entities: - - uid: 11674 - components: - - type: Transform - pos: -60.5,-5.5 - parent: 2 - - uid: 11675 - components: - - type: Transform - pos: -59.5,-5.5 - parent: 2 - - uid: 11676 - components: - - type: Transform - pos: -58.5,-5.5 - parent: 2 - - uid: 11677 - components: - - type: Transform - pos: -58.5,-9.5 - parent: 2 - - uid: 11678 - components: - - type: Transform - pos: -59.5,-9.5 - parent: 2 - - uid: 11679 - components: - - type: Transform - pos: -60.5,-9.5 - parent: 2 - - uid: 11680 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 2 - - uid: 11681 - components: - - type: Transform - pos: 35.5,-12.5 - parent: 2 -- proto: HydroponicsToolClippers - entities: - - uid: 11682 - components: - - type: Transform - pos: -58.898293,-6.196193 - parent: 2 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 11683 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.378174,-12.47862 - parent: 2 - - uid: 11684 - components: - - type: Transform - pos: -58.492043,-5.866701 - parent: 2 -- proto: HydroponicsToolSpade - entities: - - uid: 11685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.63213,-12.732526 - parent: 2 - - uid: 11686 - components: - - type: Transform - pos: -58.382668,-9.429201 - parent: 2 -- proto: hydroponicsTray - entities: - - uid: 11687 - components: - - type: Transform - pos: -18.5,3.5 - parent: 2 - - uid: 11688 - components: - - type: Transform - pos: -19.5,3.5 - parent: 2 - - uid: 11689 - components: - - type: Transform - pos: -20.5,3.5 - parent: 2 - - uid: 11690 - components: - - type: Transform - pos: -21.5,3.5 - parent: 2 - - uid: 11691 - components: - - type: Transform - pos: -18.5,4.5 - parent: 2 - - uid: 11692 - components: - - type: Transform - pos: -19.5,4.5 - parent: 2 - - uid: 11693 - components: - - type: Transform - pos: -20.5,4.5 - parent: 2 - - uid: 11694 - components: - - type: Transform - pos: -21.5,4.5 - parent: 2 -- proto: HydroponicsTrayMachineCircuitboard - entities: - - uid: 14065 - components: - - type: Transform - pos: -20.702688,9.770643 - parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 11695 - components: - - type: Transform - pos: -14.627064,-28.345179 - parent: 2 -- proto: Igniter - entities: - - uid: 11696 - components: - - type: Transform - pos: -7.4670944,-48.448364 - parent: 2 - - type: DeviceLinkSink - links: - - 13453 -- proto: IngotSilver - entities: - - uid: 11698 - components: - - type: Transform - pos: 0.10978508,18.573301 - parent: 2 -- proto: IntercomAll - entities: - - uid: 11699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,40.5 - parent: 2 - - uid: 11700 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,34.5 - parent: 2 -- proto: IntercomCommand - entities: - - uid: 11701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,37.5 - parent: 2 -- proto: IntercomCommon - entities: - - uid: 11702 - components: - - type: Transform - pos: -8.5,-75.5 - parent: 2 - - uid: 11703 - components: - - type: Transform - pos: 38.5,2.5 - parent: 2 - - uid: 11704 - components: - - type: Transform - pos: 37.5,-14.5 - parent: 2 - - uid: 11705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-80.5 - parent: 2 - - uid: 11706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-81.5 - parent: 2 - - uid: 11707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-80.5 - parent: 2 - - uid: 11708 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-72.5 - parent: 2 - - uid: 11709 - components: - - type: Transform - pos: -6.5,-71.5 - parent: 2 - - uid: 11710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-72.5 - parent: 2 - - uid: 11711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 2 - - uid: 11712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 2 - - uid: 11713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,14.5 - parent: 2 -- proto: IntercomEngineering - entities: - - uid: 11714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 - parent: 2 - - uid: 11715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 - parent: 2 - - uid: 11716 - components: - - type: Transform - pos: -14.5,-50.5 - parent: 2 - - uid: 11717 - components: - - type: Transform - pos: 49.5,12.5 - parent: 2 - - uid: 11718 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 2 - - uid: 17486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-39.5 - parent: 2 -- proto: IntercomMedical - entities: - - uid: 11719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,5.5 - parent: 2 - - uid: 11720 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,13.5 - parent: 2 - - uid: 11721 - components: - - type: Transform - pos: 9.5,2.5 - parent: 2 - - uid: 11722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,0.5 - parent: 2 -- proto: IntercomScience - entities: - - uid: 11723 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 -- proto: IntercomSecurity - entities: - - uid: 11724 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 2 - - uid: 11725 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - - uid: 11726 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-6.5 - parent: 2 - - uid: 11727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,6.5 - parent: 2 - - uid: 11728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 2 - - uid: 11729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-2.5 - parent: 2 -- proto: IntercomService - entities: - - uid: 11730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,13.5 - parent: 2 - - uid: 11731 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 2 - - uid: 11732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,9.5 - parent: 2 - - uid: 11733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,9.5 - parent: 2 - - uid: 11734 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 2 -- proto: IntercomSupply - entities: - - uid: 11735 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 2 - - uid: 11736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-35.5 - parent: 2 - - uid: 11737 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-18.5 - parent: 2 - - uid: 11738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-22.5 - parent: 2 -- proto: JanitorialTrolley - entities: - - uid: 11739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 2 -- proto: JetpackMiniFilled - entities: - - uid: 11740 - components: - - type: Transform - pos: -24.579163,-23.571226 - parent: 2 - - uid: 11741 - components: - - type: Transform - pos: -24.48149,-23.278257 - parent: 2 -- proto: Jug - entities: - - uid: 11742 - components: - - type: MetaData - name: jug (hydrogen) - - type: Transform - pos: 15.368045,21.754807 - parent: 2 - - type: SolutionContainerManager - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 200 - name: null - reagents: - - data: null - ReagentId: Hydrogen - Quantity: 200 - - uid: 11743 - components: - - type: MetaData - name: jug (oxygen) - - type: Transform - pos: 16.85395,13.577293 - parent: 2 - - type: SolutionContainerManager - solutions: - beaker: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 200 - name: null - reagents: - - data: null - ReagentId: Oxygen - Quantity: 200 -- proto: KitchenDeepFryer - entities: - - uid: 11744 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,14.5 - parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 3708 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 11745 - components: - - type: Transform - pos: -6.5,16.5 - parent: 2 - - uid: 11746 - components: - - type: Transform - pos: -10.5,12.5 - parent: 2 - - uid: 11747 - components: - - type: Transform - pos: -20.5,-16.5 - parent: 2 - - uid: 11748 - components: - - type: Transform - pos: -13.5,-37.5 - parent: 2 - - uid: 11749 - components: - - type: Transform - pos: -57.5,2.5 - parent: 2 - - uid: 11750 - components: - - type: Transform - pos: -22.5,-73.5 - parent: 2 - - uid: 11751 - components: - - type: Transform - pos: 6.5,6.5 - parent: 2 - - uid: 11752 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 3707 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 - - uid: 11753 - components: - - type: Transform - pos: -9.5,12.5 - parent: 2 - - uid: 11754 - components: - - type: Transform - pos: -19.5,7.5 - parent: 2 - - uid: 11755 - components: - - type: Transform - pos: -58.5,2.5 - parent: 2 - - uid: 11756 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 2 - - uid: 11757 - components: - - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 11758 - components: - - type: Transform - pos: -36.5,27.5 - parent: 2 -- proto: KitchenSpike - entities: - - uid: 11759 - components: - - type: Transform - pos: -13.5,12.5 - parent: 2 -- proto: KnifePlastic - entities: - - uid: 11760 - components: - - type: Transform - pos: -50.834995,46.600662 - parent: 2 -- proto: Lamp - entities: - - uid: 11761 - components: - - type: Transform - pos: -29.751759,-5.001006 - parent: 2 - - uid: 11762 - components: - - type: Transform - rot: 1.571183399358068 rad - pos: -31.572754,11.73662 - parent: 2 - - uid: 11763 - components: - - type: Transform - pos: -35.505363,-5.032391 - parent: 2 -- proto: LampBanana - entities: - - uid: 11764 - components: - - type: Transform - pos: -34.775867,12.178839 - parent: 2 -- proto: LampGold - entities: - - uid: 3 - components: - - type: Transform - pos: -1.036339,-51.081 - parent: 2 - - type: HandheldLight - toggleActionEntity: 4 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 4 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 11765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.393183,-78.510345 - parent: 2 - - uid: 11766 - components: - - type: Transform - pos: -35.60518,35.00326 - parent: 2 - - uid: 11767 - components: - - type: MetaData - desc: It's a light emitting device that would look great on a desk, your honor. - name: your honor's desk lamp - - type: Transform - pos: -24.372782,44.17426 - parent: 2 - - uid: 11769 - components: - - type: Transform - rot: -1.5604093829777579 rad - pos: -49.27722,-0.13982904 - parent: 2 - - uid: 11990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.8466065,41.135147 - parent: 2 -- proto: LandMineExplosive - entities: - - uid: 11770 - components: - - type: Transform - pos: -43.123215,3.5202084 - parent: 2 - - uid: 11771 - components: - - type: Transform - pos: -41.60759,3.5045834 - parent: 2 - - uid: 11772 - components: - - type: Transform - pos: -39.92009,3.5514584 - parent: 2 -- proto: LargeBeaker - entities: - - uid: 11773 - components: - - type: Transform - pos: -28.754606,3.898841 - parent: 2 - - uid: 11774 - components: - - type: Transform - pos: 15.320686,21.09547 - parent: 2 -- proto: LauncherCreamPie - entities: - - uid: 11775 - components: - - type: Transform - pos: -34.2789,11.509767 - parent: 2 -- proto: Lighter - entities: - - uid: 11776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.32283,13.430806 - parent: 2 - - uid: 11777 - components: - - type: Transform - pos: -6.7160864,-10.619381 - parent: 2 -- proto: LiquidNitrogenCanister - entities: - - uid: 17783 - components: - - type: Transform - pos: -36.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: LiquidOxygenCanister - entities: - - uid: 17784 - components: - - type: Transform - pos: -35.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: LockableButtonChiefEngineer - entities: - - uid: 17654 - components: - - type: MetaData - desc: An attached note reads, "Go get your CE if you want to start the SME." - name: core shutters - - type: Transform - pos: -20.5,-35.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17767: - - Pressed: Toggle - 17766: - - Pressed: Toggle - 12740: - - Pressed: Toggle - 3898: - - Pressed: Toggle - 17509: - - Pressed: Toggle - 17505: - - Pressed: Toggle - 17508: - - Pressed: Toggle - 17597: - - Pressed: Toggle - 17596: - - Pressed: Toggle - 17595: - - Pressed: Toggle - 17594: - - Pressed: Toggle - 17593: - - Pressed: Toggle - 17588: - - Pressed: Toggle - 17589: - - Pressed: Toggle - 17590: - - Pressed: Toggle - 17591: - - Pressed: Toggle - 17592: - - Pressed: Toggle - - uid: 17680 - components: - - type: MetaData - desc: This button toggles the emitters that start the Supermatter reaction. - name: toggle emitters - - type: Transform - pos: -18.5,-35.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 3904: - - Pressed: Toggle - 2673: - - Pressed: Toggle - 3902: - - Pressed: Toggle - 17875: - - Pressed: Toggle -- proto: LockerAtmosphericsFilled - entities: - - uid: 11778 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 2 - - uid: 11779 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 2 -- proto: LockerBoozeFilled - entities: - - uid: 11780 - components: - - type: Transform - pos: -12.5,-5.5 - parent: 2 - - uid: 11781 - components: - - type: Transform - pos: 35.5,-9.5 - parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 11782 - components: - - type: Transform - pos: -22.5,11.5 - parent: 2 - - uid: 11783 - components: - - type: Transform - pos: -22.5,10.5 - parent: 2 -- proto: LockerCaptainFilledHardsuit - entities: - - uid: 11784 - components: - - type: Transform - pos: 2.5,38.5 - parent: 2 -- proto: LockerChemistryFilled - entities: - - uid: 11785 - components: - - type: Transform - pos: -29.5,1.5 - parent: 2 - - uid: 11786 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 -- proto: LockerChiefEngineerFilledHardsuit - entities: - - uid: 11516 - components: - - type: Transform - pos: -0.5,-30.5 - parent: 2 -- proto: LockerChiefMedicalOfficerFilledHardsuit - entities: - - uid: 11788 - components: - - type: Transform - pos: 8.5,18.5 - parent: 2 -- proto: LockerClown - entities: - - uid: 12701 - components: - - type: Transform - pos: -33.5,11.5 - parent: 2 -- proto: LockerDetectiveFilled - entities: - - uid: 11789 - components: - - type: Transform - pos: 25.5,4.5 - parent: 2 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 11790 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 2 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 11791 - components: - - type: Transform - pos: -2.5,-19.5 - parent: 2 - - uid: 11792 - components: - - type: Transform - pos: -0.5,-19.5 - parent: 2 - - uid: 11793 - components: - - type: Transform - pos: -0.5,-17.5 - parent: 2 - - uid: 11794 - components: - - type: Transform - pos: -1.5,-19.5 - parent: 2 - - uid: 11795 - components: - - type: Transform - pos: -0.5,-16.5 - parent: 2 -- proto: LockerEvidence - entities: - - uid: 11796 - components: - - type: Transform - pos: -40.762257,-11.504958 - parent: 2 - - uid: 11797 - components: - - type: Transform - pos: -34.272675,-15.476467 - parent: 2 - - uid: 11798 - components: - - type: Transform - pos: -38.251842,-15.48689 - parent: 2 - - uid: 11799 - components: - - type: Transform - pos: -40.751842,-13.516771 - parent: 2 -- proto: LockerForensicMantisFilled - entities: - - uid: 11800 - components: - - type: Transform - pos: -36.5,31.5 - parent: 2 -- proto: LockerFreezer - entities: - - uid: 11801 - components: - - type: MetaData - name: standing freezer - - type: Transform - pos: -15.5,13.5 - parent: 2 -- proto: LockerFreezerVaultFilled - entities: - - uid: 16976 - components: - - type: Transform - pos: 0.50842816,20.89434 - parent: 2 -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 11802 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 2 -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 11803 - components: - - type: Transform - pos: -32.5,-15.5 - parent: 2 -- proto: LockerMedicalFilled - entities: - - uid: 11804 - components: - - type: Transform - pos: 6.5,11.5 - parent: 2 - - uid: 11805 - components: - - type: Transform - pos: 6.5,9.5 - parent: 2 - - uid: 11806 - components: - - type: Transform - pos: 6.5,10.5 - parent: 2 - - uid: 11807 - components: - - type: Transform - pos: 6.5,8.5 - parent: 2 -- proto: LockerMedicineFilled - entities: - - uid: 11808 - components: - - type: Transform - pos: 16.5,26.5 - parent: 2 -- proto: LockerMime - entities: - - uid: 5913 - components: - - type: Transform - pos: -38.5,11.5 - parent: 2 -- proto: LockerParamedicFilledHardsuit - entities: - - uid: 11809 - components: - - type: Transform - pos: 7.5,12.5 - parent: 2 - - uid: 11810 - components: - - type: Transform - pos: 8.5,12.5 - parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 7112 - components: - - type: Transform - pos: 4.5,-17.5 - parent: 2 -- proto: LockerResearchDirectorFilledHardsuit - entities: - - uid: 11812 - components: - - type: Transform - pos: -49.5,39.5 - parent: 2 -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 11813 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 2 - - uid: 11814 - components: - - type: Transform - pos: 12.5,-30.5 - parent: 2 - - uid: 11815 - components: - - type: Transform - pos: 12.5,-29.5 - parent: 2 - - uid: 11816 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 2 -- proto: LockerScienceFilled - entities: - - uid: 11817 - components: - - type: Transform - pos: -38.5,34.5 - parent: 2 - - uid: 11818 - components: - - type: Transform - pos: -38.5,37.5 - parent: 2 - - uid: 11819 - components: - - type: Transform - pos: -38.5,35.5 - parent: 2 - - uid: 11820 - components: - - type: Transform - pos: -38.5,36.5 - parent: 2 -- proto: LockerSecurityFilled - entities: - - uid: 11821 - components: - - type: Transform - pos: -23.5,-16.5 - parent: 2 - - uid: 11822 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - - uid: 11823 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 2 - - uid: 11824 - components: - - type: Transform - pos: -23.5,-14.5 - parent: 2 -- proto: LockerWardenFilledHardsuit - entities: - - uid: 11825 - components: - - type: Transform - pos: -38.5,-4.5 - parent: 2 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 11826 - components: - - type: Transform - pos: -36.5,-1.5 - parent: 2 -- proto: MachineAnomalyGenerator - entities: - - uid: 11827 - components: - - type: Transform - pos: -39.5,43.5 - parent: 2 -- proto: MachineAnomalyVessel - entities: - - uid: 11828 - components: - - type: Transform - pos: -41.5,44.5 - parent: 2 -- proto: MachineAPE - entities: - - uid: 11829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,44.5 - parent: 2 -- proto: MachineArtifactAnalyzer - entities: - - uid: 11830 - components: - - type: Transform - pos: -54.5,40.5 - parent: 2 - - type: DeviceLinkSink - links: - - 6133 -- proto: MachineFrameDestroyed - entities: - - uid: 11831 - components: - - type: Transform - pos: -14.5,-71.5 - parent: 2 -- proto: MagazineBoxPistolRubber - entities: - - uid: 11832 - components: - - type: Transform - pos: -40.250866,-4.7284784 - parent: 2 -- proto: MailTeleporter - entities: - - uid: 11833 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 2 -- proto: MaintenanceFluffSpawner - entities: - - uid: 11834 - components: - - type: Transform - pos: 26.5,28.5 - parent: 2 - - uid: 11835 - components: - - type: Transform - pos: -10.5,29.5 - parent: 2 - - uid: 11836 - components: - - type: Transform - pos: -19.5,30.5 - parent: 2 - - uid: 11837 - components: - - type: Transform - pos: 37.5,17.5 - parent: 2 - - uid: 11838 - components: - - type: Transform - pos: -27.5,-18.5 - parent: 2 - - uid: 11839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,47.5 - parent: 2 - - uid: 11840 - components: - - type: Transform - pos: 13.5,30.5 - parent: 2 - - uid: 11841 - components: - - type: Transform - pos: -36.5,-0.5 - parent: 2 - - uid: 11842 - components: - - type: Transform - pos: -38.5,23.5 - parent: 2 - - uid: 11843 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 - - uid: 11844 - components: - - type: Transform - pos: 17.5,-12.5 - parent: 2 - - uid: 11845 - components: - - type: Transform - pos: 4.5,24.5 - parent: 2 - - uid: 11846 - components: - - type: Transform - pos: -24.5,-28.5 - parent: 2 - - uid: 11847 - components: - - type: Transform - pos: -19.5,16.5 - parent: 2 - - uid: 11848 - components: - - type: Transform - pos: -13.5,18.5 - parent: 2 -- proto: MaintenancePlantSpawner - entities: - - uid: 11849 - components: - - type: Transform - pos: -33.5,-21.5 - parent: 2 - - uid: 11850 - components: - - type: Transform - pos: -34.5,41.5 - parent: 2 -- proto: MaintenanceToolSpawner - entities: - - uid: 11851 - components: - - type: Transform - pos: 41.5,5.5 - parent: 2 - - uid: 11852 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 11853 - components: - - type: Transform - pos: -27.5,34.5 - parent: 2 - - uid: 11854 - components: - - type: Transform - pos: -35.5,40.5 - parent: 2 - - uid: 11855 - components: - - type: Transform - pos: -43.5,47.5 - parent: 2 - - uid: 11856 - components: - - type: Transform - pos: -32.5,-20.5 - parent: 2 - - uid: 11857 - components: - - type: Transform - pos: 5.5,-19.5 - parent: 2 - - uid: 11858 - components: - - type: Transform - pos: -47.5,-0.5 - parent: 2 - - uid: 11859 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 11860 - components: - - type: Transform - pos: 6.5,19.5 - parent: 2 - - uid: 11861 - components: - - type: Transform - pos: 4.5,13.5 - parent: 2 - - uid: 11862 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 2 - - uid: 11863 - components: - - type: Transform - pos: -28.5,-26.5 - parent: 2 - - uid: 11864 - components: - - type: Transform - pos: 12.5,28.5 - parent: 2 - - uid: 11865 - components: - - type: Transform - pos: 5.5,3.5 - parent: 2 - - type: RandomSpawner - chance: 1 - - uid: 11866 - components: - - type: Transform - pos: 2.5,7.5 - parent: 2 - - uid: 11867 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 2 - - uid: 11868 - components: - - type: Transform - pos: 20.5,-19.5 - parent: 2 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 11869 - components: - - type: Transform - pos: -16.5,30.5 - parent: 2 - - uid: 11870 - components: - - type: Transform - pos: -52.5,50.5 - parent: 2 - - uid: 11871 - components: - - type: Transform - pos: -28.5,21.5 - parent: 2 - - uid: 11872 - components: - - type: Transform - pos: -0.5,6.5 - parent: 2 - - uid: 11873 - components: - - type: Transform - pos: -28.5,-1.5 - parent: 2 - - uid: 11874 - components: - - type: Transform - pos: -59.5,-11.5 - parent: 2 - - type: RandomSpawner - chance: 0.33 - - uid: 11875 - components: - - type: Transform - pos: -49.5,1.5 - parent: 2 - - type: RandomSpawner - chance: 0.33 - - uid: 11876 - components: - - type: Transform - pos: -51.5,3.5 - parent: 2 -- proto: Matchbox - entities: - - uid: 11877 - components: - - type: Transform - pos: -10.623214,-40.594276 - parent: 2 - - uid: 11878 - components: - - type: Transform - pos: -1.6566803,-9.189967 - parent: 2 -- proto: MatchstickSpent - entities: - - uid: 11879 - components: - - type: Transform - pos: -1.4587636,-11.702128 - parent: 2 - - uid: 11880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.2504303,-7.866131 - parent: 2 -- proto: MaterialBiomass - entities: - - uid: 11881 - components: - - type: Transform - pos: 23.304926,26.475252 - parent: 2 -- proto: MaterialCloth - entities: - - uid: 11882 - components: - - type: Transform - pos: -3.5870895,35.598076 - parent: 2 -- proto: MaterialDurathread - entities: - - uid: 11883 - components: - - type: Transform - pos: -3.2246723,35.358982 - parent: 2 -- proto: MaterialReclaimer - entities: - - uid: 11884 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - - uid: 11885 - components: - - type: Transform - pos: 1.5,9.5 - parent: 2 -- proto: Mattress - entities: - - uid: 11886 - components: - - type: Transform - pos: -59.5,-16.5 - parent: 2 - - uid: 11887 - components: - - type: Transform - pos: -55.5,-17.5 - parent: 2 - - uid: 11888 - components: - - type: Transform - pos: -53.5,-17.5 - parent: 2 - - uid: 11889 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 2 - - uid: 11890 - components: - - type: Transform - pos: -58.5,-11.5 - parent: 2 -- proto: MedicalBed - entities: - - uid: 11892 - components: - - type: Transform - pos: -33.5,1.5 - parent: 2 - - uid: 11893 - components: - - type: Transform - pos: -32.5,1.5 - parent: 2 - - uid: 11894 - components: - - type: Transform - pos: -33.5,3.5 - parent: 2 - - uid: 11895 - components: - - type: Transform - pos: -32.5,3.5 - parent: 2 - - uid: 11896 - components: - - type: Transform - pos: 23.5,3.5 - parent: 2 - - uid: 11897 - components: - - type: Transform - pos: 23.5,5.5 - parent: 2 - - uid: 11898 - components: - - type: Transform - pos: 17.5,5.5 - parent: 2 - - uid: 11899 - components: - - type: Transform - pos: 21.5,3.5 - parent: 2 - - uid: 11900 - components: - - type: Transform - pos: 19.5,3.5 - parent: 2 - - uid: 11901 - components: - - type: Transform - pos: 19.5,5.5 - parent: 2 - - uid: 11902 - components: - - type: Transform - pos: 21.5,5.5 - parent: 2 - - uid: 11903 - components: - - type: Transform - pos: 17.5,3.5 - parent: 2 -- proto: MedicalScanner - entities: - - uid: 11768 - components: - - type: Transform - pos: 22.5,23.5 - parent: 2 - - type: DeviceLinkSink - links: - - 6138 -- proto: MedicalTechFab - entities: - - uid: 11905 - components: - - type: Transform - pos: 8.5,10.5 - parent: 2 -- proto: MedkitAdvancedFilled - entities: - - uid: 11906 - components: - - type: Transform - pos: -33.61622,-0.22362387 - parent: 2 - - uid: 11907 - components: - - type: Transform - pos: -39.61396,1.6954846 - parent: 2 - - uid: 11908 - components: - - type: Transform - pos: 21.629698,12.608099 - parent: 2 -- proto: MedkitBruteFilled - entities: - - uid: 11909 - components: - - type: Transform - pos: 18.426147,3.446567 - parent: 2 - - uid: 11910 - components: - - type: Transform - pos: 31.466284,3.6528134 - parent: 2 - - uid: 11911 - components: - - type: Transform - pos: -47.34356,-12.883555 - parent: 2 -- proto: MedkitBurnFilled - entities: - - uid: 11912 - components: - - type: Transform - pos: 22.281868,3.3742456 - parent: 2 -- proto: MedkitCombatFilled - entities: - - uid: 11913 - components: - - type: Transform - pos: -39.36741,1.3493237 - parent: 2 - - uid: 11914 - components: - - type: Transform - pos: 8.371661,19.445524 - parent: 2 -- proto: MedkitFilled - entities: - - uid: 11915 - components: - - type: Transform - pos: -33.319344,-0.42689192 - parent: 2 - - uid: 11916 - components: - - type: Transform - pos: 8.264449,-31.267378 - parent: 2 - - uid: 11917 - components: - - type: Transform - pos: 12.546082,7.3016906 - parent: 2 - - uid: 11918 - components: - - type: Transform - pos: 12.389832,7.676951 - parent: 2 - - uid: 11919 - components: - - type: Transform - pos: 18.691772,3.6967406 - parent: 2 - - uid: 11920 - components: - - type: Transform - pos: 22.676147,3.6185603 - parent: 2 - - uid: 11921 - components: - - type: Transform - pos: -36.566994,-12.461372 - parent: 2 - - uid: 11922 - components: - - type: Transform - pos: -20.280146,-14.31227 - parent: 2 -- proto: MedkitRadiationFilled - entities: - - uid: 11923 - components: - - type: Transform - pos: -48.61617,35.53166 - parent: 2 - - uid: 11924 - components: - - type: Transform - pos: -33.098217,-0.17433691 - parent: 2 - - uid: 11925 - components: - - type: Transform - pos: -10.281632,-37.66223 - parent: 2 - - uid: 11926 - components: - - type: Transform - pos: -10.583715,-37.391212 - parent: 2 - - uid: 13156 - components: - - type: Transform - pos: -22.78128,-36.23169 - parent: 2 - - uid: 13157 - components: - - type: Transform - pos: -22.489613,-36.45059 - parent: 2 -- proto: MedkitToxinFilled - entities: - - uid: 11927 - components: - - type: Transform - pos: -48.33895,35.24449 - parent: 2 - - uid: 11928 - components: - - type: Transform - pos: 21.408052,12.925943 - parent: 2 -- proto: MicrophoneInstrument - entities: - - uid: 11929 - components: - - type: Transform - pos: -12.9764385,22.003674 - parent: 2 -- proto: MinimoogInstrument - entities: - - uid: 11930 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-5.5 - parent: 2 -- proto: Mirror - entities: - - uid: 11931 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-14.5 - parent: 2 - - uid: 11932 - components: - - type: Transform - pos: -27.5,13.5 - parent: 2 -- proto: MopBucketFull - entities: - - uid: 11934 - components: - - type: Transform - pos: -52.276764,-6.6527042 - parent: 2 - - uid: 11935 - components: - - type: Transform - pos: 22.5,-14.5 - parent: 2 - - uid: 11936 - components: - - type: Transform - pos: 0.6900537,9.946262 - parent: 2 -- proto: MopItem - entities: - - uid: 11937 - components: - - type: Transform - pos: -52.354904,-6.2620792 - parent: 2 - - uid: 11940 - components: - - type: Transform - pos: -1.657238,12.537073 - parent: 2 - - uid: 11941 - components: - - type: Transform - pos: -1.313488,12.490166 - parent: 2 -- proto: Morgue - entities: - - uid: 11942 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,20.5 - parent: 2 - - uid: 11943 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,21.5 - parent: 2 - - uid: 11944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,20.5 - parent: 2 - - uid: 11945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,21.5 - parent: 2 - - uid: 11946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,22.5 - parent: 2 -- proto: Multitool - entities: - - uid: 11947 - components: - - type: Transform - pos: 22.429926,26.647127 - parent: 2 - - uid: 11948 - components: - - type: Transform - pos: 4.79707,-10.595353 - parent: 2 -- proto: NitrogenCanister - entities: - - uid: 57 - components: - - type: Transform - pos: -22.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 6090 - components: - - type: Transform - pos: -13.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 6231 - components: - - type: Transform - pos: -12.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 11949 - components: - - type: Transform - pos: -0.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: NitrousOxideCanister - entities: - - uid: 11950 - components: - - type: Transform - pos: 1.5,-35.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 11951 - components: - - type: Transform - pos: -40.5,-6.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 12742 - components: - - type: Transform - pos: -12.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: NoticeBoard - entities: - - uid: 12888 - components: - - type: Transform - pos: 1.5,5.5 - parent: 2 -- proto: NuclearBomb - entities: - - uid: 11952 - components: - - type: Transform - pos: 1.5,19.5 - parent: 2 -- proto: OilJarCorn - entities: - - uid: 11953 - components: - - type: Transform - pos: -10.322607,14.570831 - parent: 2 -- proto: OperatingTable - entities: - - uid: 11954 - components: - - type: Transform - pos: 17.5,24.5 - parent: 2 - - uid: 11955 - components: - - type: Transform - pos: 27.5,20.5 - parent: 2 - - uid: 11956 - components: - - type: Transform - pos: -39.5,-24.5 - parent: 2 -- proto: Oracle - entities: - - uid: 11957 - components: - - type: Transform - pos: -28.5,32.5 - parent: 2 -- proto: OreBox - entities: - - uid: 5189 - components: - - type: Transform - pos: 21.5,-45.5 - parent: 2 -- proto: OreProcessor - entities: - - uid: 11959 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 2 -- proto: OreProcessorMachineCircuitboard - entities: - - uid: 11960 - components: - - type: Transform - pos: -14.342051,-26.350395 - parent: 2 -- proto: OrganHumanKidneys - entities: - - uid: 11961 - components: - - type: Transform - pos: -38.592125,-22.352108 - parent: 2 -- proto: OxygenCanister - entities: - - uid: 54 - components: - - type: Transform - pos: -23.5,-23.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 11962 - components: - - type: Transform - pos: -36.5,1.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 11963 - components: - - type: Transform - pos: 4.5,30.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 11964 - components: - - type: Transform - pos: -28.5,-19.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 11965 - components: - - type: Transform - pos: -0.5,-36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 13022 - components: - - type: Transform - pos: -11.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: PaintingAmogusTriptych - entities: - - uid: 11966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,36.5 - parent: 2 - - uid: 11967 - components: - - type: Transform - pos: -50.5,51.5 - parent: 2 - - uid: 11968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,45.5 - parent: 2 -- proto: PaintingMothBigCatch - entities: - - uid: 11969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 2 -- proto: PaintingPrayerHands - entities: - - uid: 11970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,37.5 - parent: 2 -- proto: PaintingRedBlueYellow - entities: - - uid: 11971 - components: - - type: Transform - pos: 6.5,25.5 - parent: 2 -- proto: PaintingSkeletonBoof - entities: - - uid: 11972 - components: - - type: Transform - pos: -57.5,-17.5 - parent: 2 -- proto: Paper - entities: - - uid: 11973 - components: - - type: MetaData - desc: Nobody forces you to read it, you decide for yourself if you will or won't. - name: unaddressed letter - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.60897,1.5066981 - parent: 2 - - type: Paper - content: >- - The forest hardly changes - given any amount of time; - a bird can caw, a branch could fall, - but it'd still remain sublime. - - The forest sometimes changes - as the years go by; - a seed that is placed, soon becomes a new face - in a world where it lives and dies. - - The forest always changes - despite what I may say. - As generations pass, the forest lasts - to be enjoyed by another that day. - - - Edge Station was made possible with the help of Scientist, Redsky, ps3moira, and contributors in the #mapping channel in the Delta V discord. - - - Thank you for playing on Edge! - - Colin_Tel - - uid: 13160 - components: - - type: Transform - pos: -21.463436,-38.470703 - parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >2- - Supermatter and You - - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - - 1. The supermatter is constantly converting nitrogen into oxygen and plasma. ANYTHING that touches the supermatter will be turned into ash instantaneously. (including you) - - - 2. Once the supermatter is active, it will output radiation and heated gases (specifically O2 and Plasma) by consuming any surrounding nitrogen. Supermatter *will* ignite gases around it, so be cautious of what gases are near it. - - - 3. The supermatter's radiation output is directly related to the temperature and pressure of its surroundings. This means the following... - - - low temperature = low pressure = low radiation output - - high temperature = high pressure = high radiation output - - - You must exercise caution when deciding to increase the temperature around the supermatter, as it can quickly spiral out of control. - - - 4. The integrity of the supermatter will degrade if it is too hot and too pressurized. The supermatter will alert engineers that its integrity is falling, and prompt action is required to return it to a safe state, where it will gradually return to 100% integrity by itself. - - - 5. In the event that the Supermatter has reached 0% integrity, catastrophic failure is certain, and you have seconds to react. It is advised that anyone near the supermatter quickly make their way as far away from it as possible. Do not walk, run instead; alert command as soon as possible so that they may secure a route of evacuation for survivors. - - uid: 17850 - components: - - type: Transform - pos: -26.685799,-38.90153 - parent: 2 - - type: Paper - content: >- - To whom it may concern, - - - For this air alarm: - - - Turn off "auto mode" - - Set scrubbers to "siphon" and all gases - - Set vents to Internal bound at max pressure - - - DON'T TOUCH THE CRYSTAL!! -- proto: PaperBin10 - entities: - - uid: 11974 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 2 - - uid: 11975 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - - uid: 11976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-12.5 - parent: 2 - - uid: 11977 - components: - - type: Transform - pos: -11.5,-73.5 - parent: 2 - - uid: 11978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-33.5 - parent: 2 - - uid: 11979 - components: - - type: MetaData - desc: The only thing that prevents you from taking paper from this bin is your honor. - name: your honor's paper bin - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,44.5 - parent: 2 - - uid: 11980 - components: - - type: Transform - pos: -43.5,28.5 - parent: 2 - - uid: 11981 - components: - - type: Transform - pos: -8.5,44.5 - parent: 2 - - uid: 11982 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 2 - - uid: 11983 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,21.5 - parent: 2 - - uid: 11984 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 2 - - uid: 11985 - components: - - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 11986 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-51.5 - parent: 2 -- proto: PaperCaptainsThoughts - entities: - - uid: 11989 - components: - - type: Transform - pos: 1.3153565,40.666073 - parent: 2 - - uid: 13906 - components: - - type: Transform - pos: 1.3778565,40.572258 - parent: 2 -- proto: PaperOffice - entities: - - uid: 11992 - components: - - type: Transform - pos: -31.276249,11.482831 - parent: 2 - - uid: 11993 - components: - - type: Transform - pos: -10.698187,33.26429 - parent: 2 - - uid: 11994 - components: - - type: Transform - pos: -9.487024,34.37757 - parent: 2 - - uid: 11995 - components: - - type: Transform - pos: -9.643303,33.44007 - parent: 2 - - uid: 11996 - components: - - type: Transform - pos: -35.21398,34.534798 - parent: 2 - - uid: 11997 - components: - - type: Transform - pos: -20.671059,41.71369 - parent: 2 - - uid: 11998 - components: - - type: Transform - pos: -20.530434,41.573067 - parent: 2 - - uid: 11999 - components: - - type: MetaData - desc: A plain sheet of office paper for other presumably important information, your honor. - name: your honor's other office paper - - type: Transform - rot: 3.141592653589793 rad - pos: -23.217934,43.541817 - parent: 2 - - uid: 12000 - components: - - type: Transform - pos: -25.702309,41.61994 - parent: 2 - - uid: 12001 - components: - - type: Transform - pos: -25.561684,41.510567 - parent: 2 - - uid: 12002 - components: - - type: MetaData - desc: A plain sheet of office paper for important note-taking, your honor. - name: your honor's office paper - - type: Transform - rot: 3.141592653589793 rad - pos: -23.702309,43.635567 - parent: 2 - - uid: 12003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.515285,0.51080203 - parent: 2 - - uid: 12004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.452785,0.35455203 - parent: 2 -- proto: ParchisBoard - entities: - - uid: 12005 - components: - - type: Transform - pos: -36.470303,-13.543975 - parent: 2 -- proto: PartRodMetal1 - entities: - - uid: 12013 - components: - - type: Transform - pos: 49.496426,11.719856 - parent: 2 - - uid: 12014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.87421,4.833787 - parent: 2 - - uid: 12015 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.617245,16.938051 - parent: 2 - - uid: 12016 - components: - - type: Transform - pos: 52.733746,3.4080057 - parent: 2 - - uid: 12017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.40329,3.5484595 - parent: 2 - - uid: 12018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.489803,6.0484595 - parent: 2 - - uid: 12019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.60236,11.888304 - parent: 2 - - uid: 12020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.774414,11.285003 - parent: 2 - - uid: 12021 - components: - - type: Transform - pos: 53.980965,20.74139 - parent: 2 - - uid: 12022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.73162,14.471336 - parent: 2 - - uid: 12023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.76232,16.22641 - parent: 2 - - uid: 12024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.969765,2.739564 - parent: 2 - - uid: 12025 - components: - - type: Transform - pos: 51.391308,13.731575 - parent: 2 - - uid: 12026 - components: - - type: Transform - pos: -3.9439821,45.494835 - parent: 2 - - uid: 12027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.371998,47.40885 - parent: 2 - - uid: 12028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.418755,-5.455823 - parent: 2 - - uid: 12029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.4546337,-58.60449 - parent: 2 - - uid: 12030 - components: - - type: Transform - pos: -42.28986,65.33305 - parent: 2 - - uid: 12031 - components: - - type: Transform - pos: -46.903656,61.37159 - parent: 2 - - uid: 12032 - components: - - type: Transform - pos: -50.654354,61.176277 - parent: 2 - - uid: 12033 - components: - - type: Transform - pos: -45.47761,57.738777 - parent: 2 - - uid: 12034 - components: - - type: Transform - pos: -49.40412,56.937996 - parent: 2 - - uid: 12035 - components: - - type: Transform - pos: -48.64226,54.867683 - parent: 2 - - uid: 12036 - components: - - type: Transform - pos: -47.62645,65.487564 - parent: 2 - - uid: 12037 - components: - - type: Transform - pos: -44.911102,66.07365 - parent: 2 - - uid: 12038 - components: - - type: Transform - pos: -35.901894,57.245884 - parent: 2 - - uid: 12039 - components: - - type: Transform - pos: -38.217133,66.06448 - parent: 2 - - uid: 12040 - components: - - type: Transform - pos: -35.54085,64.834015 - parent: 2 - - uid: 12041 - components: - - type: Transform - pos: -34.749336,61.669937 - parent: 2 - - uid: 12042 - components: - - type: Transform - pos: -39.92608,60.687206 - parent: 2 - - uid: 12043 - components: - - type: Transform - pos: -40.429897,56.24979 - parent: 2 - - uid: 12044 - components: - - type: Transform - pos: -33.49501,54.70682 - parent: 2 - - uid: 12045 - components: - - type: Transform - pos: -32.576874,60.48807 - parent: 2 - - uid: 12046 - components: - - type: Transform - pos: -33.221523,68.63313 - parent: 2 - - uid: 12047 - components: - - type: Transform - pos: -40.454643,68.73079 - parent: 2 - - uid: 12048 - components: - - type: Transform - pos: -43.460148,70.66438 - parent: 2 - - uid: 12049 - components: - - type: Transform - pos: -49.58039,68.6136 - parent: 2 - - uid: 12050 - components: - - type: Transform - pos: -51.35794,54.15061 - parent: 2 - - uid: 12051 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.567333,7.2012386 - parent: 2 - - uid: 12052 - components: - - type: Transform - pos: 51.680824,5.4629574 - parent: 2 - - uid: 12053 - components: - - type: Transform - pos: -64.69886,36.786247 - parent: 2 - - uid: 12054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.18723,37.76281 - parent: 2 - - uid: 12055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.82351,39.65734 - parent: 2 - - uid: 12056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.123978,41.395622 - parent: 2 - - uid: 12057 - components: - - type: Transform - pos: -62.217934,34.18859 - parent: 2 - - uid: 12058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.7184,30.559227 - parent: 2 - - uid: 12059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.137184,44.835064 - parent: 2 -- proto: Pen - entities: - - uid: 12060 - components: - - type: Transform - pos: -35.573357,34.456673 - parent: 2 - - uid: 12061 - components: - - type: Transform - pos: -26.686684,41.49494 - parent: 2 - - uid: 12062 - components: - - type: Transform - pos: -21.717934,41.52619 - parent: 2 - - uid: 12063 - components: - - type: Transform - pos: -49.573605,0.93681246 - parent: 2 - - uid: 12064 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 2 -- proto: PersonalAI - entities: - - uid: 12065 - components: - - type: Transform - pos: -48.4323,34.57368 - parent: 2 -- proto: PhoneInstrument - entities: - - uid: 12066 - components: - - type: Transform - pos: -11.485,-79.481026 - parent: 2 - - uid: 12067 - components: - - type: Transform - pos: -19.510458,-79.507164 - parent: 2 -- proto: PillMindbreakerToxin - entities: - - uid: 12068 - components: - - type: Transform - pos: -34.354607,34.588753 - parent: 2 - - uid: 12069 - components: - - type: Transform - pos: -34.479607,34.760628 - parent: 2 -- proto: PinpointerNuclear - entities: - - uid: 12070 - components: - - type: Transform - pos: -0.56012964,20.614931 - parent: 2 -- proto: PlantBag - entities: - - uid: 12071 - components: - - type: Transform - pos: -62.631588,-5.6212254 - parent: 2 -- proto: PlaqueAtmos - entities: - - uid: 12072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-52.5 - parent: 2 -- proto: PlasmaCanister - entities: - - uid: 6235 - components: - - type: Transform - pos: -12.5,-46.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 12074 - components: - - type: Transform - pos: 1.5,-36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 12075 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,1.5 - parent: 2 - - uid: 12076 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,1.5 - parent: 2 - - uid: 13138 - components: - - type: Transform - pos: -28.5,-38.5 - parent: 2 -- proto: PlasmaTankFilled - entities: - - uid: 17769 - components: - - type: Transform - pos: -24.689806,-42.62592 - parent: 2 - - type: GasTank - toggleActionEntity: 17770 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 17770 - - uid: 17771 - components: - - type: Transform - pos: -24.408556,-42.37592 - parent: 2 - - type: GasTank - toggleActionEntity: 17772 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 17772 - - uid: 17773 - components: - - type: Transform - pos: -24.714287,-42.35479 - parent: 2 - - uid: 17797 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.62771,-43.660828 - parent: 2 - - uid: 17798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.62771,-43.348328 - parent: 2 - - uid: 17799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.31521,-43.567078 - parent: 2 - - uid: 17896 - components: - - type: Transform - pos: -27.632969,-35.47815 - parent: 2 - - uid: 17897 - components: - - type: Transform - pos: -27.382969,-35.5719 - parent: 2 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 12078 - components: - - type: Transform - pos: 15.5,-11.5 - parent: 2 - - uid: 12079 - components: - - type: Transform - pos: 22.5,-35.5 - parent: 2 - - uid: 12080 - components: - - type: Transform - pos: 18.5,-35.5 - parent: 2 - - uid: 12081 - components: - - type: Transform - pos: 11.5,-18.5 - parent: 2 - - uid: 12082 - components: - - type: Transform - pos: 22.5,-33.5 - parent: 2 - - uid: 12083 - components: - - type: Transform - pos: 18.5,-33.5 - parent: 2 -- proto: PlasticFlapsOpaque - entities: - - uid: 12084 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 2 -- proto: PlushieBee - entities: - - uid: 12085 - components: - - type: Transform - pos: -8.650637,1.4858495 - parent: 2 -- proto: PlushieMothRandom - entities: - - uid: 12086 - components: - - type: Transform - pos: 7.4780726,-23.615965 - parent: 2 -- proto: PlushieNuke - entities: - - uid: 12087 - components: - - type: MetaData - desc: A stuffed toy that resembles a security guard. - name: security guard plushie - - type: Transform - pos: -17.374437,38.554455 - parent: 2 -- proto: PlushieSharkPink - entities: - - uid: 12088 - components: - - type: Transform - pos: 28.51114,14.444282 - parent: 2 -- proto: PlushieSpaceLizard - entities: - - uid: 12090 - components: - - type: Transform - pos: -4.3050823,46.367626 - parent: 2 -- proto: PortableFlasher - entities: - - uid: 12091 - components: - - type: Transform - pos: -40.5,1.5 - parent: 2 - - uid: 12092 - components: - - type: Transform - pos: -42.5,1.5 - parent: 2 - - uid: 12093 - components: - - type: Transform - pos: -42.5,-4.5 - parent: 2 - - uid: 12094 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 2 -- proto: PortableGeneratorJrPacman - entities: - - uid: 12095 - components: - - type: Transform - pos: 23.5,-21.5 - parent: 2 - - uid: 12096 - components: - - type: Transform - pos: -30.5,-21.5 - parent: 2 - - uid: 12097 - components: - - type: Transform - pos: -15.5,18.5 - parent: 2 - - uid: 13155 - components: - - type: Transform - pos: -20.5,-21.5 - parent: 2 - - uid: 17849 - components: - - type: Transform - pos: -24.5,-45.5 - parent: 2 -- proto: PortableGeneratorPacman - entities: - - uid: 12098 - components: - - type: Transform - pos: -2.5,-26.5 - parent: 2 -- proto: PortableGeneratorPacmanMachineCircuitboard - entities: - - uid: 12099 - components: - - type: Transform - pos: -13.592051,-26.621416 - parent: 2 - - uid: 12100 - components: - - type: Transform - pos: -13.3628845,-26.402514 - parent: 2 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 12102 - components: - - type: Transform - pos: -3.5,-26.5 - parent: 2 -- proto: PortableScrubber - entities: - - uid: 12104 - components: - - type: Transform - pos: -8.5,-35.5 - parent: 2 - - uid: 12105 - components: - - type: Transform - pos: -8.5,-34.5 - parent: 2 - - uid: 12106 - components: - - type: Transform - pos: -52.5,31.5 - parent: 2 - - uid: 12107 - components: - - type: Transform - pos: -18.5,13.5 - parent: 2 -- proto: PositronicBrain - entities: - - uid: 12108 - components: - - type: Transform - pos: -41.489174,39.571587 - parent: 2 -- proto: PosterContrabandClown - entities: - - uid: 12111 - components: - - type: Transform - pos: -35.5,8.5 - parent: 2 -- proto: PosterContrabandFunPolice - entities: - - uid: 12113 - components: - - type: Transform - pos: -50.5,-11.5 - parent: 2 -- proto: PosterContrabandLamarr - entities: - - uid: 12114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,42.5 - parent: 2 -- proto: PosterContrabandMissingGloves - entities: - - uid: 12116 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 12117 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 2 -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 12118 - components: - - type: Transform - pos: 2.5,19.5 - parent: 2 -- proto: PosterContrabandRevolver - entities: - - uid: 12119 - components: - - type: Transform - pos: -44.5,-13.5 - parent: 2 -- proto: PosterContrabandSafetyMothSyndie - entities: - - uid: 12120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,20.5 - parent: 2 -- proto: PosterContrabandTools - entities: - - uid: 12121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-41.5 - parent: 2 - - uid: 12122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-16.5 - parent: 2 -- proto: PosterLegit12Gauge - entities: - - uid: 12123 - components: - - type: Transform - pos: -44.5,-3.5 - parent: 2 -- proto: PosterLegitBlessThisSpess - entities: - - uid: 12124 - components: - - type: Transform - pos: -48.5,43.5 - parent: 2 -- proto: PosterLegitBuild - entities: - - uid: 12125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-22.5 - parent: 2 -- proto: PosterLegitCleanliness - entities: - - uid: 12126 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 2 -- proto: PosterLegitDoNotQuestion - entities: - - uid: 12127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-10.5 - parent: 2 -- proto: PosterLegitEnlist - entities: - - uid: 12128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 2 -- proto: PosterLegitFuckAround - entities: - - uid: 12129 - components: - - type: Transform - pos: -57.5,-12.5 - parent: 2 -- proto: PosterLegitHelpOthers - entities: - - uid: 12130 - components: - - type: Transform - pos: 16.5,8.5 - parent: 2 -- proto: PosterLegitHereForYourSafety - entities: - - uid: 12131 - components: - - type: Transform - pos: -1.5,20.5 - parent: 2 -- proto: PosterLegitJustAWeekAway - entities: - - uid: 12132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,26.5 - parent: 2 -- proto: PosterLegitLoveIan - entities: - - uid: 12133 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 2 - - uid: 12134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-6.5 - parent: 2 - - uid: 12135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,18.5 - parent: 2 -- proto: PosterLegitMedicate - entities: - - uid: 12136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,9.5 - parent: 2 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 12137 - components: - - type: Transform - pos: -26.5,44.5 - parent: 2 - - uid: 12138 - components: - - type: Transform - pos: -4.5,32.5 - parent: 2 - - uid: 12139 - components: - - type: Transform - pos: -18.5,34.5 - parent: 2 - - uid: 12140 - components: - - type: Transform - pos: -23.5,37.5 - parent: 2 - - uid: 12141 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 12142 - components: - - type: Transform - pos: -22.5,45.5 - parent: 2 - - uid: 12143 - components: - - type: Transform - pos: -24.5,45.5 - parent: 2 -- proto: PosterLegitNoERP - entities: - - uid: 12144 - components: - - type: Transform - pos: -26.5,11.5 - parent: 2 -- proto: PosterLegitObey - entities: - - uid: 12145 - components: - - type: Transform - pos: -1.5,18.5 - parent: 2 -- proto: PosterLegitPDAAd - entities: - - uid: 12146 - components: - - type: Transform - pos: 21.5,-2.5 - parent: 2 -- proto: PosterLegitPeriodicTable - entities: - - uid: 12147 - components: - - type: Transform - pos: -2.5,-52.5 - parent: 2 -- proto: PosterLegitReportCrimes - entities: - - uid: 12148 - components: - - type: Transform - pos: 29.5,2.5 - parent: 2 - - uid: 12149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-6.5 - parent: 2 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 12150 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 2 -- proto: PosterLegitSafetyInternals - entities: - - uid: 6240 - components: - - type: Transform - pos: -28.5,-36.5 - parent: 2 -- proto: PosterLegitSafetyMothBoH - entities: - - uid: 12151 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 2 -- proto: PosterLegitSafetyMothDelam - entities: - - uid: 12152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,45.5 - parent: 2 -- proto: PosterLegitSafetyMothGlimmer - entities: - - uid: 12153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,35.5 - parent: 2 -- proto: PosterLegitSafetyMothHardhat - entities: - - uid: 12154 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 2 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 12155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,13.5 - parent: 2 -- proto: PosterLegitSafetyMothPills - entities: - - uid: 12156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,11.5 - parent: 2 -- proto: PosterLegitSafetyMothPoisoning - entities: - - uid: 12157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,4.5 - parent: 2 - - uid: 12158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 12159 - components: - - type: Transform - pos: -19.5,-11.5 - parent: 2 - - uid: 12160 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-5.5 - parent: 2 -- proto: PosterLegitSpaceCops - entities: - - uid: 12161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-12.5 - parent: 2 -- proto: PosterLegitStateLaws - entities: - - uid: 12162 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-72.5 - parent: 2 - - uid: 12163 - components: - - type: Transform - pos: -43.5,-3.5 - parent: 2 -- proto: PottedPlant1 - entities: - - uid: 12164 - components: - - type: Transform - pos: -3.6492977,-32.762848 - parent: 2 -- proto: PottedPlant21 - entities: - - uid: 12165 - components: - - type: Transform - pos: -11.5,37.5 - parent: 2 - - type: ScaleVisuals - - type: Appearance - - uid: 12166 - components: - - type: Transform - pos: -8.5,37.5 - parent: 2 - - type: ScaleVisuals - - type: Appearance -- proto: PottedPlant26 - entities: - - uid: 12167 - components: - - type: Transform - pos: -27.5,11.5 - parent: 2 -- proto: PottedPlant28 - entities: - - uid: 12168 - components: - - type: Transform - pos: 28.5,8.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 12169 - - uid: 12170 - components: - - type: Transform - pos: 33.5,-16.5 - parent: 2 -- proto: PottedPlant29 - entities: - - uid: 12171 - components: - - type: Transform - pos: 8.300806,20.221859 - parent: 2 -- proto: PottedPlantBioluminscent - entities: - - uid: 12172 - components: - - type: Transform - pos: -40.48007,31.244905 - parent: 2 - - uid: 12173 - components: - - type: Transform - pos: 21.5,32.5 - parent: 2 - - type: ScaleVisuals - - type: Appearance -- proto: PottedPlantRandom - entities: - - uid: 12174 - components: - - type: Transform - pos: -7.5,3.5 - parent: 2 - - uid: 12175 - components: - - type: Transform - pos: -39.5,7.5 - parent: 2 - - uid: 12176 - components: - - type: Transform - pos: -15.5,7.5 - parent: 2 - - uid: 12177 - components: - - type: Transform - pos: -21.5,21.5 - parent: 2 - - uid: 12178 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 12179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-75.5 - parent: 2 - - uid: 12180 - components: - - type: Transform - pos: 10.5,24.5 - parent: 2 - - uid: 12181 - components: - - type: Transform - pos: 10.5,8.5 - parent: 2 - - uid: 12182 - components: - - type: Transform - pos: -21.5,1.5 - parent: 2 - - uid: 12183 - components: - - type: Transform - pos: 23.5,-8.5 - parent: 2 - - uid: 12184 - components: - - type: Transform - pos: -12.5,27.5 - parent: 2 - - uid: 12185 - components: - - type: Transform - pos: -2.5,8.5 - parent: 2 - - uid: 12186 - components: - - type: Transform - pos: 21.5,19.5 - parent: 2 - - uid: 12187 - components: - - type: Transform - pos: -43.5,13.5 - parent: 2 - - uid: 12188 - components: - - type: Transform - pos: -43.5,19.5 - parent: 2 - - uid: 12189 - components: - - type: Transform - pos: -18.5,-5.5 - parent: 2 - - uid: 12190 - components: - - type: Transform - pos: -27.5,7.5 - parent: 2 - - uid: 12191 - components: - - type: Transform - pos: -12.5,1.5 - parent: 2 - - uid: 12192 - components: - - type: Transform - pos: -6.5,27.5 - parent: 2 - - uid: 12193 - components: - - type: Transform - pos: -2.5,27.5 - parent: 2 -- proto: PottedPlantRandomPlastic - entities: - - uid: 12194 - components: - - type: Transform - pos: -27.5,1.5 - parent: 2 - - uid: 12195 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 2 - - uid: 12196 - components: - - type: Transform - pos: -30.5,3.5 - parent: 2 - - uid: 12197 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - uid: 12198 - components: - - type: Transform - pos: 19.5,26.5 - parent: 2 - - uid: 12199 - components: - - type: Transform - pos: 9.5,-27.5 - parent: 2 - - uid: 12200 - components: - - type: Transform - pos: -5.5,-12.5 - parent: 2 - - uid: 12201 - components: - - type: Transform - pos: -36.5,18.5 - parent: 2 - - uid: 12202 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 2 - - uid: 12203 - components: - - type: Transform - pos: -18.5,-7.5 - parent: 2 - - uid: 12204 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 -- proto: PowerCellRecharger - entities: - - uid: 12205 - components: - - type: Transform - pos: 14.5,-32.5 - parent: 2 - - uid: 12206 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 2 - - uid: 12207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 2 - - uid: 12208 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 2 - - uid: 12209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,7.5 - parent: 2 - - uid: 12210 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 2 - - uid: 12211 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 2 - - uid: 12212 - components: - - type: Transform - pos: -26.5,22.5 - parent: 2 - - uid: 12213 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - - uid: 12214 - components: - - type: Transform - pos: 21.5,8.5 - parent: 2 - - uid: 17841 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 2 -- proto: Poweredlight - entities: - - uid: 10626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,19.5 - parent: 2 - - uid: 11491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,19.5 - parent: 2 - - uid: 12215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 - parent: 2 - - uid: 12216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,22.5 - parent: 2 - - uid: 12217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-17.5 - parent: 2 - - uid: 12218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,19.5 - parent: 2 - - uid: 12219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 2 - - uid: 12220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-7.5 - parent: 2 - - uid: 12221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-10.5 - parent: 2 - - uid: 12222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,9.5 - parent: 2 - - uid: 12223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-15.5 - parent: 2 - - uid: 12224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,0.5 - parent: 2 - - uid: 12225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-13.5 - parent: 2 - - uid: 12226 - components: - - type: Transform - pos: -13.5,7.5 - parent: 2 - - uid: 12227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,8.5 - parent: 2 - - uid: 12228 - components: - - type: Transform - pos: 16.5,-24.5 - parent: 2 - - uid: 12229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-15.5 - parent: 2 - - uid: 12230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,18.5 - parent: 2 - - uid: 12231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,2.5 - parent: 2 - - uid: 12232 - components: - - type: Transform - pos: 9.5,22.5 - parent: 2 - - uid: 12233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 2 - - uid: 12234 - components: - - type: Transform - pos: -16.5,-51.5 - parent: 2 - - uid: 12235 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - - uid: 12236 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,31.5 - parent: 2 - - uid: 12237 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-23.5 - parent: 2 - - uid: 12238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,34.5 - parent: 2 - - uid: 12239 - components: - - type: Transform - pos: -8.5,39.5 - parent: 2 - - uid: 12240 - components: - - type: Transform - pos: 0.5,42.5 - parent: 2 - - uid: 12241 - components: - - type: Transform - pos: -14.5,39.5 - parent: 2 - - uid: 12242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,34.5 - parent: 2 - - uid: 12243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-9.5 - parent: 2 - - uid: 12244 - components: - - type: Transform - pos: -50.5,50.5 - parent: 2 - - uid: 12245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,45.5 - parent: 2 - - uid: 12246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,42.5 - parent: 2 - - uid: 12247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 2 - - uid: 12248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-28.5 - parent: 2 - - uid: 12249 - components: - - type: Transform - pos: 3.5,-22.5 - parent: 2 - - uid: 12250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,20.5 - parent: 2 - - uid: 12251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,12.5 - parent: 2 - - uid: 12252 - components: - - type: Transform - pos: 0.5,12.5 - parent: 2 - - uid: 12253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-32.5 - parent: 2 - - uid: 12254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,9.5 - parent: 2 - - uid: 12255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,14.5 - parent: 2 - - uid: 12256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,20.5 - parent: 2 - - uid: 12257 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,12.5 - parent: 2 - - uid: 12258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,13.5 - parent: 2 - - uid: 12260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,14.5 - parent: 2 - - uid: 12263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,10.5 - parent: 2 - - uid: 12264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,10.5 - parent: 2 - - uid: 12265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,10.5 - parent: 2 - - uid: 12266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,25.5 - parent: 2 - - uid: 12267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,30.5 - parent: 2 - - uid: 12268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,26.5 - parent: 2 - - uid: 12269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,31.5 - parent: 2 - - uid: 12270 - components: - - type: Transform - pos: -36.5,29.5 - parent: 2 - - uid: 12271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,30.5 - parent: 2 - - uid: 12272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,24.5 - parent: 2 - - uid: 12273 - components: - - type: Transform - pos: -49.5,30.5 - parent: 2 - - uid: 12274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,32.5 - parent: 2 - - uid: 12275 - components: - - type: Transform - pos: -50.5,37.5 - parent: 2 - - uid: 12276 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,36.5 - parent: 2 - - type: Timer - - uid: 12277 - components: - - type: Transform - pos: -38.5,37.5 - parent: 2 - - uid: 12278 - components: - - type: Transform - pos: -48.5,41.5 - parent: 2 - - uid: 12279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,42.5 - parent: 2 - - uid: 12280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,42.5 - parent: 2 - - uid: 12281 - components: - - type: Transform - pos: -54.5,41.5 - parent: 2 - - uid: 12282 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,31.5 - parent: 2 - - uid: 12283 - components: - - type: Transform - pos: -56.5,37.5 - parent: 2 - - uid: 12284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,31.5 - parent: 2 - - uid: 12285 - components: - - type: Transform - pos: -61.5,37.5 - parent: 2 - - uid: 12286 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,50.5 - parent: 2 - - uid: 12287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,42.5 - parent: 2 - - uid: 12288 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,42.5 - parent: 2 - - uid: 12289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,37.5 - parent: 2 - - uid: 12290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,37.5 - parent: 2 - - uid: 12291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,35.5 - parent: 2 - - uid: 12292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,30.5 - parent: 2 - - uid: 12293 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,24.5 - parent: 2 - - uid: 12294 - components: - - type: Transform - pos: -17.5,11.5 - parent: 2 - - uid: 12295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,5.5 - parent: 2 - - uid: 12296 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,5.5 - parent: 2 - - uid: 12297 - components: - - type: Transform - pos: -41.5,1.5 - parent: 2 - - uid: 12298 - components: - - type: Transform - pos: -36.5,-4.5 - parent: 2 - - uid: 12299 - components: - - type: Transform - pos: -33.5,-4.5 - parent: 2 - - uid: 12300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-10.5 - parent: 2 - - uid: 12301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-9.5 - parent: 2 - - uid: 12302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-5.5 - parent: 2 - - uid: 12303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 2 - - uid: 12304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-17.5 - parent: 2 - - uid: 12305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-4.5 - parent: 2 - - uid: 12306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 - parent: 2 - - uid: 12307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-15.5 - parent: 2 - - uid: 12308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 - parent: 2 - - uid: 12309 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 2 - - uid: 12310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 2 - - uid: 12311 - components: - - type: Transform - pos: -1.5,-21.5 - parent: 2 - - uid: 12312 - components: - - type: Transform - pos: 7.5,-23.5 - parent: 2 - - uid: 12313 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-8.5 - parent: 2 - - uid: 12314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-7.5 - parent: 2 - - uid: 12315 - components: - - type: Transform - pos: -0.5,4.5 - parent: 2 - - uid: 12316 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 2 - - uid: 12317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,8.5 - parent: 2 - - uid: 12318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,11.5 - parent: 2 - - uid: 12319 - components: - - type: Transform - pos: -9.5,18.5 - parent: 2 - - uid: 12320 - components: - - type: Transform - pos: -11.5,7.5 - parent: 2 - - uid: 12321 - components: - - type: Transform - pos: -12.5,1.5 - parent: 2 - - uid: 12322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 - parent: 2 - - uid: 12323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,19.5 - parent: 2 - - uid: 12324 - components: - - type: Transform - pos: -8.5,27.5 - parent: 2 - - uid: 12325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,20.5 - parent: 2 - - uid: 12326 - components: - - type: Transform - pos: -19.5,23.5 - parent: 2 - - uid: 12327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,29.5 - parent: 2 - - uid: 12328 - components: - - type: Transform - pos: 0.5,35.5 - parent: 2 - - uid: 12329 - components: - - type: Transform - pos: -17.5,36.5 - parent: 2 - - uid: 12330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,33.5 - parent: 2 - - uid: 12331 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,31.5 - parent: 2 - - uid: 12332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,36.5 - parent: 2 - - uid: 12333 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 2 - - uid: 12334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-23.5 - parent: 2 - - uid: 12335 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 2 - - uid: 12336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-25.5 - parent: 2 - - uid: 12337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,10.5 - parent: 2 - - uid: 12338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-1.5 - parent: 2 - - uid: 12339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-3.5 - parent: 2 - - uid: 12340 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-3.5 - parent: 2 - - type: Timer - - uid: 12341 - components: - - type: Transform - pos: -48.5,-6.5 - parent: 2 - - type: Timer - - uid: 12342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-9.5 - parent: 2 - - uid: 12343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-9.5 - parent: 2 - - uid: 12344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 2 - - uid: 12345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-15.5 - parent: 2 - - uid: 12346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-18.5 - parent: 2 - - uid: 12347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-18.5 - parent: 2 - - uid: 12348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-17.5 - parent: 2 - - uid: 12349 - components: - - type: Transform - pos: -53.5,-16.5 - parent: 2 - - uid: 12350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-17.5 - parent: 2 - - uid: 12351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-17.5 - parent: 2 - - uid: 12352 - components: - - type: Transform - pos: -59.5,-11.5 - parent: 2 - - uid: 12353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-13.5 - parent: 2 - - uid: 12354 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-14.5 - parent: 2 - - uid: 12355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-6.5 - parent: 2 - - type: Timer - - uid: 12356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 2 - - uid: 12357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,42.5 - parent: 2 - - uid: 12358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-22.5 - parent: 2 - - uid: 12359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-22.5 - parent: 2 - - uid: 12360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-4.5 - parent: 2 - - uid: 12361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-0.5 - parent: 2 - - uid: 12362 - components: - - type: Transform - pos: 26.5,-7.5 - parent: 2 - - uid: 12363 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-11.5 - parent: 2 - - uid: 12364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 2 - - uid: 12365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-6.5 - parent: 2 - - uid: 12366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 - parent: 2 - - uid: 12367 - components: - - type: Transform - pos: 20.5,1.5 - parent: 2 - - uid: 12368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,2.5 - parent: 2 - - uid: 12369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 2 - - uid: 12370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,15.5 - parent: 2 - - uid: 12371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-61.5 - parent: 2 - - uid: 12372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 - parent: 2 - - uid: 12373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,25.5 - parent: 2 - - uid: 12374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,25.5 - parent: 2 - - uid: 12375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,12.5 - parent: 2 - - uid: 12376 - components: - - type: Transform - pos: 27.5,22.5 - parent: 2 - - uid: 12377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 - parent: 2 - - uid: 12378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,26.5 - parent: 2 - - uid: 12379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,11.5 - parent: 2 - - uid: 12380 - components: - - type: Transform - pos: 20.5,8.5 - parent: 2 - - uid: 12381 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 2 - - uid: 12382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 - parent: 2 - - uid: 12383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-0.5 - parent: 2 - - uid: 12384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,3.5 - parent: 2 - - uid: 12385 - components: - - type: Transform - pos: -31.5,-12.5 - parent: 2 - - uid: 12386 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-13.5 - parent: 2 - - uid: 12387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-16.5 - parent: 2 - - uid: 12388 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 2 - - uid: 12389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 2 - - uid: 12390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-45.5 - parent: 2 - - uid: 12391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-47.5 - parent: 2 - - uid: 12392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-38.5 - parent: 2 - - uid: 12393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-38.5 - parent: 2 - - uid: 12394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-38.5 - parent: 2 - - uid: 12395 - components: - - type: Transform - pos: -12.5,-32.5 - parent: 2 - - uid: 12396 - components: - - type: Transform - pos: 38.5,1.5 - parent: 2 - - uid: 12397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-27.5 - parent: 2 - - uid: 12398 - components: - - type: Transform - pos: -12.5,-26.5 - parent: 2 - - uid: 12399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 2 - - uid: 12400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,12.5 - parent: 2 - - uid: 12401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-44.5 - parent: 2 - - uid: 12402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-71.5 - parent: 2 - - uid: 12403 - components: - - type: Transform - pos: 2.5,-35.5 - parent: 2 - - uid: 12404 - components: - - type: Transform - pos: -9.5,-73.5 - parent: 2 - - uid: 12405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-76.5 - parent: 2 - - uid: 12406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-79.5 - parent: 2 - - uid: 12407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-76.5 - parent: 2 - - uid: 12408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-77.5 - parent: 2 - - uid: 12409 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-75.5 - parent: 2 - - uid: 12410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-82.5 - parent: 2 - - uid: 12411 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-79.5 - parent: 2 - - uid: 12412 - components: - - type: Transform - pos: -29.5,-73.5 - parent: 2 - - uid: 12413 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-73.5 - parent: 2 - - uid: 12414 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-79.5 - parent: 2 - - uid: 12415 - components: - - type: Transform - pos: 14.5,16.5 - parent: 2 - - uid: 12416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-73.5 - parent: 2 - - uid: 12417 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 2 - - uid: 12418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-79.5 - parent: 2 - - uid: 12419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,23.5 - parent: 2 - - uid: 12420 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - - uid: 12421 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - uid: 12422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 2 - - uid: 12423 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 - parent: 2 - - uid: 12424 - components: - - type: Transform - pos: 0.5,-30.5 - parent: 2 - - uid: 12425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-28.5 - parent: 2 - - uid: 12426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - uid: 12427 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,13.5 - parent: 2 - - uid: 12428 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,3.5 - parent: 2 - - uid: 12429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,3.5 - parent: 2 - - uid: 12430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,18.5 - parent: 2 - - uid: 12431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,22.5 - parent: 2 - - uid: 12432 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,23.5 - parent: 2 - - uid: 12433 - components: - - type: Transform - pos: -40.5,-8.5 - parent: 2 - - uid: 12434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,16.5 - parent: 2 - - uid: 12435 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-16.5 - parent: 2 - - uid: 12436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,3.5 - parent: 2 - - uid: 12437 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 2 - - uid: 12438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-29.5 - parent: 2 - - uid: 12439 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 - parent: 2 - - uid: 12440 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-32.5 - parent: 2 - - uid: 12441 - components: - - type: Transform - pos: -45.5,23.5 - parent: 2 - - uid: 12442 - components: - - type: Transform - pos: -45.5,-12.5 - parent: 2 - - uid: 12443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-18.5 - parent: 2 - - uid: 12444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-18.5 - parent: 2 - - uid: 12445 - components: - - type: Transform - pos: -15.5,-63.5 - parent: 2 - - uid: 12446 - components: - - type: Transform - pos: 7.5,12.5 - parent: 2 - - uid: 12447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 2 - - uid: 12448 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,5.5 - parent: 2 - - uid: 12449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 2 - - uid: 12450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 2 - - uid: 12451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-49.5 - parent: 2 - - uid: 12452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 2 - - uid: 12453 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - - uid: 12454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,25.5 - parent: 2 - - uid: 12455 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,14.5 - parent: 2 - - uid: 12456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,11.5 - parent: 2 - - uid: 12457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,12.5 - parent: 2 - - uid: 12458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-15.5 - parent: 2 - - uid: 12459 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,8.5 - parent: 2 - - uid: 12460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,5.5 - parent: 2 - - uid: 12461 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-31.5 - parent: 2 - - uid: 12462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-35.5 - parent: 2 - - uid: 12463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-61.5 - parent: 2 - - uid: 12464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 2 - - uid: 12465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-3.5 - parent: 2 - - uid: 12466 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 - parent: 2 - - uid: 12467 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 2 - - uid: 12468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-3.5 - parent: 2 - - uid: 12469 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 2 - - uid: 12470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-9.5 - parent: 2 - - uid: 12471 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 2 - - uid: 12472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 2 - - uid: 12473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 2 - - uid: 12474 - components: - - type: Transform - pos: -21.5,7.5 - parent: 2 - - uid: 12475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 2 - - uid: 12476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,9.5 - parent: 2 - - uid: 12477 - components: - - type: Transform - pos: 36.5,-18.5 - parent: 2 - - uid: 12478 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 2 - - uid: 12479 - components: - - type: Transform - pos: 31.5,-18.5 - parent: 2 - - uid: 12480 - components: - - type: Transform - pos: 37.5,-15.5 - parent: 2 - - uid: 12481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 2 - - uid: 12482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 2 - - uid: 12483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-68.5 - parent: 2 - - uid: 12484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,20.5 - parent: 2 - - uid: 12485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-2.5 - parent: 2 - - uid: 12486 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 2 - - uid: 12487 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 2 - - uid: 12488 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,25.5 - parent: 2 - - uid: 12489 - components: - - type: Transform - pos: -20.5,27.5 - parent: 2 - - uid: 12490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,27.5 - parent: 2 - - uid: 12491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-4.5 - parent: 2 - - uid: 12492 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 2 - - uid: 12493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-15.5 - parent: 2 - - uid: 12494 - components: - - type: Transform - pos: 7.5,-9.5 - parent: 2 - - uid: 12495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 2 - - uid: 12496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,14.5 - parent: 2 - - uid: 12497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 - parent: 2 - - uid: 12498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 - parent: 2 - - uid: 12499 - components: - - type: Transform - pos: -19.5,-30.5 - parent: 2 - - uid: 12500 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-16.5 - parent: 2 - - uid: 12501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,15.5 - parent: 2 - - uid: 12502 - components: - - type: Transform - pos: -51.5,17.5 - parent: 2 - - uid: 12503 - components: - - type: Transform - pos: -47.5,23.5 - parent: 2 - - uid: 12504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-0.5 - parent: 2 - - uid: 12505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 2 - - uid: 12506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-13.5 - parent: 2 - - uid: 12507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 2 - - uid: 12508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 2 - - uid: 12509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,37.5 - parent: 2 - - uid: 12510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,21.5 - parent: 2 - - uid: 12511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,21.5 - parent: 2 - - uid: 12512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 - parent: 2 - - uid: 12513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 - parent: 2 - - uid: 12514 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 2 - - uid: 12515 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-39.5 - parent: 2 - - uid: 12516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-28.5 - parent: 2 - - uid: 12517 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 2 - - uid: 12518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-39.5 - parent: 2 - - uid: 12519 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-49.5 - parent: 2 - - uid: 12520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-44.5 - parent: 2 - - uid: 12521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-51.5 - parent: 2 - - uid: 12522 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-51.5 - parent: 2 - - uid: 12523 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 2 - - uid: 12524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 2 - - uid: 12525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-39.5 - parent: 2 - - uid: 12526 - components: - - type: Transform - pos: -3.5,-35.5 - parent: 2 - - uid: 12527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-40.5 - parent: 2 - - uid: 12528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-37.5 - parent: 2 -- proto: PoweredLightBlueInterior - entities: - - uid: 12529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-41.5 - parent: 2 - - uid: 12530 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-45.5 - parent: 2 - - uid: 12531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-43.5 - parent: 2 - - uid: 12532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 2 - - uid: 12533 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-49.5 - parent: 2 - - uid: 12534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-51.5 - parent: 2 - - uid: 12539 - components: - - type: Transform - pos: -38.5,-30.5 - parent: 2 - - uid: 12540 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-35.5 - parent: 2 - - uid: 12541 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-41.5 - parent: 2 - - uid: 12542 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-41.5 - parent: 2 - - uid: 12543 - components: - - type: Transform - pos: -25.5,-30.5 - parent: 2 - - uid: 12544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-46.5 - parent: 2 - - uid: 12545 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-46.5 - parent: 2 - - uid: 12546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-35.5 - parent: 2 - - uid: 12547 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,32.5 - parent: 2 - - uid: 12548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,8.5 - parent: 2 - - uid: 12549 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,4.5 - parent: 2 - - uid: 12550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,41.5 - parent: 2 - - uid: 12551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,44.5 - parent: 2 - - uid: 12552 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,37.5 - parent: 2 - - uid: 12553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,31.5 - parent: 2 - - uid: 12554 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,27.5 - parent: 2 - - uid: 12555 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,20.5 - parent: 2 - - uid: 12556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,15.5 - parent: 2 - - uid: 12557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,49.5 - parent: 2 - - uid: 12558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,52.5 - parent: 2 - - uid: 12559 - components: - - type: Transform - pos: -42.5,69.5 - parent: 2 - - uid: 12560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,11.5 - parent: 2 - - uid: 12561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,1.5 - parent: 2 - - uid: 12562 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 2 - - uid: 12563 - components: - - type: Transform - pos: -59.5,-19.5 - parent: 2 - - uid: 12564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-51.5 - parent: 2 - - uid: 12565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-27.5 - parent: 2 - - uid: 12566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-61.5 - parent: 2 - - uid: 12568 - components: - - type: Transform - pos: -22.5,-42.5 - parent: 2 - - uid: 12569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-34.5 - parent: 2 - - uid: 12570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,47.5 - parent: 2 - - uid: 17429 - components: - - type: Transform - pos: 20.5,-50.5 - parent: 2 - - uid: 17903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-41.5 - parent: 2 - - uid: 17904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-47.5 - parent: 2 -- proto: PoweredLightColoredBlack - entities: - - uid: 12535 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 2 -- proto: PoweredLightColoredFrostyBlue - entities: - - uid: 12536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-10.5 - parent: 2 - - uid: 12537 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-3.5 - parent: 2 -- proto: PoweredLightColoredRed - entities: - - uid: 12538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,38.5 - parent: 2 -- proto: PoweredlightLED - entities: - - uid: 12571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,4.5 - parent: 2 - - uid: 12572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 12573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,11.5 - parent: 2 - - uid: 12574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-3.5 - parent: 2 - - uid: 12575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,12.5 - parent: 2 -- proto: PoweredLightPostSmall - entities: - - uid: 5328 - components: - - type: Transform - pos: 17.5,-48.5 - parent: 2 - - uid: 17427 - components: - - type: Transform - pos: 23.5,-48.5 - parent: 2 -- proto: PoweredlightSodium - entities: - - uid: 12578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 2 - - uid: 12579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-5.5 - parent: 2 - - uid: 12580 - components: - - type: Transform - pos: 35.5,-11.5 - parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 6222 - components: - - type: Transform - pos: 12.5,-45.5 - parent: 2 - - uid: 12581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 - parent: 2 - - uid: 12582 - components: - - type: Transform - pos: 19.5,-24.5 - parent: 2 - - uid: 12583 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,37.5 - parent: 2 - - uid: 12584 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,33.5 - parent: 2 - - uid: 12585 - components: - - type: Transform - pos: 9.5,-42.5 - parent: 2 - - uid: 12587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-51.5 - parent: 2 - - uid: 12588 - components: - - type: Transform - pos: 2.5,-53.5 - parent: 2 -- proto: PoweredSmallLightMaintenance - entities: - - uid: 12589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-34.5 - parent: 2 - - uid: 12590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,37.5 - parent: 2 - - uid: 12591 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-34.5 - parent: 2 - - uid: 12592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,3.5 - parent: 2 - - uid: 12593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,35.5 - parent: 2 - - uid: 12594 - components: - - type: Transform - pos: 8.5,-30.5 - parent: 2 - - uid: 17816 - components: - - type: Transform - pos: -28.5,-37.5 - parent: 2 -- proto: PoweredSmallLightMaintenanceRed - entities: - - uid: 12595 - components: - - type: Transform - pos: 7.5,15.5 - parent: 2 - - uid: 12596 - components: - - type: Transform - pos: 2.5,16.5 - parent: 2 - - uid: 12597 - components: - - type: Transform - pos: 4.5,27.5 - parent: 2 - - uid: 12598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 2 - - uid: 12599 - components: - - type: Transform - pos: 20.5,-17.5 - parent: 2 - - uid: 12600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,21.5 - parent: 2 - - uid: 12601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-21.5 - parent: 2 - - uid: 12602 - components: - - type: Transform - pos: -41.5,47.5 - parent: 2 - - uid: 12603 - components: - - type: Transform - pos: -43.5,47.5 - parent: 2 - - uid: 12604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 - parent: 2 - - uid: 12605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,2.5 - parent: 2 - - uid: 12606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-2.5 - parent: 2 - - uid: 12607 - components: - - type: Transform - pos: -27.5,-0.5 - parent: 2 - - uid: 12608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,44.5 - parent: 2 - - uid: 12609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,40.5 - parent: 2 - - uid: 12610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-13.5 - parent: 2 - - uid: 12611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,22.5 - parent: 2 - - uid: 12612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,1.5 - parent: 2 - - uid: 12613 - components: - - type: Transform - pos: 19.5,29.5 - parent: 2 - - uid: 12614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,28.5 - parent: 2 - - uid: 12615 - components: - - type: Transform - pos: 0.5,7.5 - parent: 2 - - uid: 12616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 2 - - uid: 12617 - components: - - type: Transform - pos: 24.5,29.5 - parent: 2 - - uid: 12618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 2 - - uid: 12619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,26.5 - parent: 2 - - uid: 12620 - components: - - type: Transform - pos: 5.5,30.5 - parent: 2 - - uid: 12621 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-19.5 - parent: 2 - - uid: 12622 - components: - - type: Transform - pos: -27.5,35.5 - parent: 2 - - uid: 12623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-28.5 - parent: 2 - - uid: 12624 - components: - - type: Transform - pos: -15.5,18.5 - parent: 2 - - uid: 12625 - components: - - type: Transform - pos: 42.5,-1.5 - parent: 2 - - uid: 12626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 2 - - uid: 12627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 2 - - uid: 12628 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 2 - - type: Timer - - uid: 12629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-15.5 - parent: 2 - - uid: 12630 - components: - - type: Transform - pos: 19.5,-8.5 - parent: 2 - - uid: 12631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,16.5 - parent: 2 - - uid: 12632 - components: - - type: Transform - pos: -17.5,30.5 - parent: 2 - - uid: 12633 - components: - - type: Transform - pos: -9.5,30.5 - parent: 2 - - uid: 12634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-21.5 - parent: 2 - - uid: 12635 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-19.5 - parent: 2 - - uid: 12636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-18.5 - parent: 2 - - uid: 12637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-19.5 - parent: 2 - - uid: 12638 - components: - - type: Transform - pos: -36.5,23.5 - parent: 2 - - uid: 12639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,27.5 - parent: 2 - - uid: 12640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,20.5 - parent: 2 - - uid: 12641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,18.5 - parent: 2 - - uid: 12642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,12.5 - parent: 2 - - uid: 12643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,4.5 - parent: 2 - - uid: 12644 - components: - - type: Transform - pos: 49.5,11.5 - parent: 2 - - uid: 12645 - components: - - type: Transform - pos: -14.5,-51.5 - parent: 2 - - uid: 12646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,13.5 - parent: 2 - - uid: 12647 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,31.5 - parent: 2 - - uid: 12648 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,43.5 - parent: 2 - - uid: 12649 - components: - - type: Transform - pos: -31.5,-17.5 - parent: 2 - - uid: 12650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 2 - - uid: 12651 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 2 - - uid: 12652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,29.5 - parent: 2 - - uid: 12653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 2 - - uid: 12654 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,49.5 - parent: 2 - - uid: 12655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,55.5 - parent: 2 - - uid: 12656 - components: - - type: Transform - pos: -15.5,-85.5 - parent: 2 - - uid: 12657 - components: - - type: Transform - pos: 29.5,25.5 - parent: 2 - - uid: 12658 - components: - - type: Transform - pos: 42.5,-9.5 - parent: 2 - - uid: 12659 - components: - - type: Transform - pos: 42.5,-17.5 - parent: 2 - - uid: 12660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 2 -- proto: Protolathe - entities: - - uid: 12661 - components: - - type: Transform - pos: -37.5,29.5 - parent: 2 -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 12662 - components: - - type: Transform - pos: -14.6441345,-30.384445 - parent: 2 -- proto: Puddle - entities: - - uid: 12663 - components: - - type: Transform - pos: -49.5,46.5 - parent: 2 - - type: SolutionContainerManager - solutions: - puddle: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 1000 - name: null - reagents: - - data: null - ReagentId: Blood - Quantity: 40 - - type: StepTrigger - active: False - - uid: 12664 - components: - - type: Transform - pos: -39.5,-23.5 - parent: 2 - - type: SolutionContainerManager - solutions: - puddle: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 1000 - name: null - reagents: - - data: null - ReagentId: Blood - Quantity: 20 - - type: StepTrigger - active: False - - uid: 12665 - components: - - type: Transform - pos: -35.5,45.5 - parent: 2 - - type: SolutionContainerManager - solutions: - puddle: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 1000 - name: null - reagents: - - data: null - ReagentId: Blood - Quantity: 10 - - type: StepTrigger - active: False - - uid: 12666 - components: - - type: Transform - pos: -43.5,57.5 - parent: 2 - - type: SolutionContainerManager - solutions: - puddle: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 1000 - name: null - reagents: - - data: null - ReagentId: Blood - Quantity: 10 - - type: StepTrigger - active: False - - uid: 12667 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - type: SolutionContainerManager - solutions: - puddle: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 1000 - name: null - reagents: - - data: null - ReagentId: Blood - Quantity: 9 - - type: StepTrigger - active: False - - uid: 12668 - components: - - type: Transform - pos: -3.5,-13.5 - parent: 2 - - type: SolutionContainerManager - solutions: - puddle: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 1000 - name: null - reagents: - - data: null - ReagentId: Blood - Quantity: 10 - - type: StepTrigger - active: False -- proto: Rack - entities: - - uid: 1659 - components: - - type: Transform - pos: -34.5,19.5 - parent: 2 - - uid: 12669 - components: - - type: Transform - pos: -24.5,-23.5 - parent: 2 - - uid: 12670 - components: - - type: Transform - pos: -15.5,12.5 - parent: 2 - - uid: 12671 - components: - - type: Transform - pos: -25.5,-14.5 - parent: 2 - - uid: 12672 - components: - - type: Transform - pos: -15.5,14.5 - parent: 2 - - uid: 12673 - components: - - type: Transform - pos: -15.5,11.5 - parent: 2 - - uid: 12674 - components: - - type: Transform - pos: -15.5,15.5 - parent: 2 - - uid: 12675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 - parent: 2 - - uid: 12676 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 2 - - uid: 12677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-12.5 - parent: 2 - - uid: 12678 - components: - - type: Transform - pos: -13.5,11.5 - parent: 2 - - uid: 12679 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 2 - - uid: 12680 - components: - - type: Transform - pos: -10.5,-26.5 - parent: 2 - - uid: 12681 - components: - - type: Transform - pos: -1.5,12.5 - parent: 2 - - uid: 12682 - components: - - type: Transform - pos: 0.5,-27.5 - parent: 2 - - uid: 12683 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 2 - - uid: 12684 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 - - uid: 12685 - components: - - type: Transform - pos: -13.5,-26.5 - parent: 2 - - uid: 12686 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 2 - - uid: 12687 - components: - - type: Transform - pos: -2.5,-30.5 - parent: 2 - - uid: 12688 - components: - - type: Transform - pos: -18.5,-34.5 - parent: 2 - - uid: 12689 - components: - - type: Transform - pos: -18.5,-42.5 - parent: 2 - - uid: 12690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-30.5 - parent: 2 - - uid: 12691 - components: - - type: Transform - pos: -11.5,-26.5 - parent: 2 - - uid: 12692 - components: - - type: Transform - pos: -13.5,-7.5 - parent: 2 - - uid: 12693 - components: - - type: Transform - pos: -14.5,-29.5 - parent: 2 - - uid: 12694 - components: - - type: Transform - pos: 18.5,3.5 - parent: 2 - - uid: 12695 - components: - - type: Transform - pos: 22.5,3.5 - parent: 2 - - uid: 12696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-83.5 - parent: 2 - - uid: 12697 - components: - - type: Transform - pos: 8.5,19.5 - parent: 2 - - uid: 12698 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 2 - - uid: 12699 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 2 - - uid: 12700 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 2 - - uid: 12703 - components: - - type: Transform - pos: 19.5,24.5 - parent: 2 - - uid: 12704 - components: - - type: Transform - pos: 26.5,-21.5 - parent: 2 - - uid: 12705 - components: - - type: Transform - pos: -44.5,-6.5 - parent: 2 - - uid: 12706 - components: - - type: Transform - pos: -38.5,-22.5 - parent: 2 - - uid: 12707 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 2 - - uid: 12708 - components: - - type: Transform - pos: -48.5,32.5 - parent: 2 - - uid: 12709 - components: - - type: Transform - pos: -44.5,49.5 - parent: 2 - - uid: 12710 - components: - - type: Transform - pos: -36.5,25.5 - parent: 2 - - uid: 12711 - components: - - type: Transform - pos: -49.5,32.5 - parent: 2 - - uid: 12712 - components: - - type: Transform - pos: -35.5,25.5 - parent: 2 - - uid: 12713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-28.5 - parent: 2 - - uid: 12714 - components: - - type: Transform - pos: -40.5,-4.5 - parent: 2 - - uid: 12715 - components: - - type: Transform - pos: -14.5,-23.5 - parent: 2 - - uid: 12716 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 2 - - uid: 12717 - components: - - type: Transform - pos: -14.5,-21.5 - parent: 2 - - uid: 12718 - components: - - type: Transform - pos: -34.5,25.5 - parent: 2 - - uid: 12719 - components: - - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 12720 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 2 - - uid: 12721 - components: - - type: Transform - pos: 14.5,-30.5 - parent: 2 - - uid: 12722 - components: - - type: Transform - pos: 9.5,-45.5 - parent: 2 - - uid: 12723 - components: - - type: Transform - pos: -20.5,-25.5 - parent: 2 - - uid: 12725 - components: - - type: Transform - pos: -14.5,-22.5 - parent: 2 - - uid: 12726 - components: - - type: Transform - pos: -3.5,35.5 - parent: 2 - - uid: 12727 - components: - - type: Transform - pos: 29.5,24.5 - parent: 2 - - uid: 12728 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 2 - - uid: 12729 - components: - - type: Transform - pos: -10.5,-37.5 - parent: 2 - - uid: 12730 - components: - - type: Transform - pos: -47.5,43.5 - parent: 2 - - uid: 12732 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 2 - - uid: 12733 - components: - - type: Transform - pos: 17.5,21.5 - parent: 2 - - uid: 12734 - components: - - type: Transform - pos: 10.5,10.5 - parent: 2 - - uid: 12735 - components: - - type: Transform - pos: 14.5,-29.5 - parent: 2 - - uid: 12736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 2 - - uid: 17768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-42.5 - parent: 2 - - uid: 17796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-43.5 - parent: 2 - - uid: 17895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-35.5 - parent: 2 - - uid: 17898 - components: - - type: Transform - pos: -39.5,-31.5 - parent: 2 -- proto: RadiationCollectorNoTank - entities: - - uid: 2626 - components: - - type: Transform - pos: -29.5,-41.5 - parent: 2 - - uid: 2627 - components: - - type: Transform - pos: -30.5,-41.5 - parent: 2 - - uid: 2648 - components: - - type: Transform - pos: -32.5,-35.5 - parent: 2 - - uid: 3158 - components: - - type: Transform - pos: -34.5,-39.5 - parent: 2 - - uid: 3160 - components: - - type: Transform - pos: -34.5,-40.5 - parent: 2 - - type: RadiationCollector - enabled: True - - uid: 3213 - components: - - type: Transform - pos: -34.5,-37.5 - parent: 2 - - uid: 3814 - components: - - type: Transform - pos: -32.5,-41.5 - parent: 2 - - uid: 3819 - components: - - type: Transform - pos: -30.5,-35.5 - parent: 2 - - uid: 3820 - components: - - type: Transform - pos: -29.5,-35.5 - parent: 2 - - uid: 3919 - components: - - type: Transform - pos: -33.5,-41.5 - parent: 2 - - uid: 3920 - components: - - type: Transform - pos: -33.5,-35.5 - parent: 2 - - uid: 12739 - components: - - type: Transform - pos: -34.5,-36.5 - parent: 2 - - uid: 17760 - components: - - type: Transform - pos: -28.5,-39.5 - parent: 2 - - type: RadiationCollector - enabled: True - - uid: 17761 - components: - - type: Transform - pos: -28.5,-40.5 - parent: 2 -- proto: RadioHandheld - entities: - - uid: 12744 - components: - - type: Transform - pos: -19.549526,-73.391396 - parent: 2 - - uid: 12745 - components: - - type: Transform - pos: 12.664758,-32.312305 - parent: 2 - - uid: 12746 - components: - - type: Transform - pos: -49.194317,1.0024505 - parent: 2 - - uid: 12747 - components: - - type: Transform - pos: 12.352258,-32.499935 - parent: 2 -- proto: RagItem - entities: - - uid: 12748 - components: - - type: Transform - pos: -6.5395412,-4.15932 - parent: 2 - - uid: 12749 - components: - - type: Transform - pos: 2.551126,33.567097 - parent: 2 -- proto: Railing - entities: - - uid: 12750 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,12.5 - parent: 2 - - uid: 12751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-1.5 - parent: 2 - - uid: 12752 - components: - - type: Transform - pos: 33.5,-18.5 - parent: 2 - - uid: 12753 - components: - - type: Transform - pos: 34.5,-18.5 - parent: 2 - - uid: 12754 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 - - uid: 12755 - components: - - type: Transform - pos: -12.5,-11.5 - parent: 2 - - uid: 12756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 - parent: 2 - - uid: 12757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 2 - - uid: 12758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-11.5 - parent: 2 - - uid: 12759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-1.5 - parent: 2 - - uid: 12760 - components: - - type: Transform - pos: 20.5,-0.5 - parent: 2 - - uid: 12761 - components: - - type: Transform - pos: 18.5,-0.5 - parent: 2 - - uid: 12762 - components: - - type: Transform - pos: 19.5,-0.5 - parent: 2 - - uid: 12763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,7.5 - parent: 2 - - uid: 12764 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,22.5 - parent: 2 - - uid: 12765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,5.5 - parent: 2 - - uid: 12766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,23.5 - parent: 2 - - uid: 12767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,6.5 - parent: 2 - - uid: 12768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,9.5 - parent: 2 - - uid: 12769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,32.5 - parent: 2 - - uid: 12770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,24.5 - parent: 2 - - uid: 12771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,32.5 - parent: 2 - - uid: 12772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,10.5 - parent: 2 - - uid: 12773 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,24.5 - parent: 2 - - uid: 12774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-26.5 - parent: 2 - - uid: 12775 - components: - - type: Transform - pos: -15.5,27.5 - parent: 2 - - uid: 12776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,37.5 - parent: 2 - - uid: 12778 - components: - - type: Transform - pos: 11.5,-16.5 - parent: 2 - - uid: 12779 - components: - - type: Transform - pos: -15.5,39.5 - parent: 2 - - uid: 12780 - components: - - type: Transform - pos: -3.5,39.5 - parent: 2 - - uid: 12781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,37.5 - parent: 2 - - uid: 12782 - components: - - type: Transform - pos: -16.5,27.5 - parent: 2 - - uid: 12783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-14.5 - parent: 2 - - uid: 14157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-48.5 - parent: 2 -- proto: RailingCorner - entities: - - uid: 5702 - components: - - type: Transform - pos: 24.5,-47.5 - parent: 2 - - uid: 12784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 2 - - uid: 12785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 2 - - uid: 12786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 2 - - uid: 12787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 2 - - uid: 12788 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 2 - - uid: 12789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 - parent: 2 - - uid: 12790 - components: - - type: Transform - pos: -1.5,2.5 - parent: 2 - - uid: 12791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 2 - - uid: 12792 - components: - - type: Transform - pos: -14.5,27.5 - parent: 2 - - uid: 12793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-1.5 - parent: 2 - - uid: 12794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 2 - - uid: 12795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 - parent: 2 - - uid: 12796 - components: - - type: Transform - pos: 35.5,-18.5 - parent: 2 - - uid: 12797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-18.5 - parent: 2 - - uid: 12798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-22.5 - parent: 2 - - uid: 12799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-11.5 - parent: 2 - - uid: 12800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-8.5 - parent: 2 - - uid: 12801 - components: - - type: Transform - pos: 37.5,-12.5 - parent: 2 - - uid: 12802 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-22.5 - parent: 2 - - uid: 12803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-1.5 - parent: 2 - - uid: 12804 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,27.5 - parent: 2 - - uid: 12805 - components: - - type: Transform - pos: 10.5,2.5 - parent: 2 - - uid: 12806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,2.5 - parent: 2 - - uid: 12807 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 2 - - uid: 12808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,24.5 - parent: 2 - - uid: 12809 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,38.5 - parent: 2 - - uid: 12811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,38.5 - parent: 2 - - uid: 12812 - components: - - type: Transform - pos: -14.5,39.5 - parent: 2 - - uid: 12813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,39.5 - parent: 2 -- proto: RailingCornerSmall - entities: - - uid: 5703 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-46.5 - parent: 2 - - uid: 13470 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-47.5 - parent: 2 -- proto: RandomAnimalSpawner - entities: - - uid: 12816 - components: - - type: Transform - pos: -18.5,6.5 - parent: 2 -- proto: RandomArcade - entities: - - uid: 12817 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 2 -- proto: RandomArtifactSpawner - entities: - - uid: 12818 - components: - - type: Transform - pos: -54.5,41.5 - parent: 2 -- proto: RandomBoards - entities: - - uid: 12819 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 2 - - uid: 12820 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 2 -- proto: RandomDrinkBottle - entities: - - uid: 12821 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 -- proto: RandomDrinkGlass - entities: - - uid: 12822 - components: - - type: Transform - pos: 34.5,-7.5 - parent: 2 -- proto: RandomFoodMeal - entities: - - uid: 12823 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - - uid: 12824 - components: - - type: Transform - pos: -8.5,23.5 - parent: 2 -- proto: RandomFoodSingle - entities: - - uid: 12825 - components: - - type: Transform - pos: 34.5,-4.5 - parent: 2 - - uid: 12826 - components: - - type: Transform - pos: -6.5,22.5 - parent: 2 -- proto: RandomInstruments - entities: - - uid: 14915 - components: - - type: Transform - pos: -33.5,10.5 - parent: 2 -- proto: RandomItem - entities: - - uid: 12828 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 2 -- proto: RandomPainting - entities: - - uid: 12829 - components: - - type: Transform - pos: -37.5,33.5 - parent: 2 - - uid: 12830 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 12831 - components: - - type: Transform - pos: -43.5,29.5 - parent: 2 - - uid: 12832 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - - uid: 12833 - components: - - type: Transform - pos: -11.5,8.5 - parent: 2 - - uid: 12834 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 2 - - uid: 12835 - components: - - type: Transform - pos: -31.5,33.5 - parent: 2 - - uid: 12836 - components: - - type: Transform - pos: -27.5,33.5 - parent: 2 - - uid: 12837 - components: - - type: Transform - pos: -51.5,29.5 - parent: 2 - - uid: 12838 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 2 - - uid: 12839 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 2 - - uid: 12840 - components: - - type: Transform - pos: -50.5,6.5 - parent: 2 -- proto: RandomPosterAny - entities: - - uid: 11938 - components: - - type: Transform - pos: 2.5,12.5 - parent: 2 - - uid: 12702 - components: - - type: Transform - pos: 0.5,13.5 - parent: 2 - - uid: 12842 - components: - - type: Transform - pos: 19.5,-18.5 - parent: 2 - - uid: 12843 - components: - - type: Transform - pos: 42.5,9.5 - parent: 2 - - uid: 12844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,38.5 - parent: 2 - - uid: 12845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,41.5 - parent: 2 - - uid: 12846 - components: - - type: Transform - pos: -47.5,31.5 - parent: 2 - - uid: 12847 - components: - - type: Transform - pos: -37.5,48.5 - parent: 2 - - uid: 12848 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 2 - - uid: 12849 - components: - - type: Transform - pos: 27.5,-6.5 - parent: 2 - - uid: 12850 - components: - - type: Transform - pos: -16.5,12.5 - parent: 2 - - uid: 12851 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 2 - - uid: 12852 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - - uid: 12853 - components: - - type: Transform - pos: -18.5,18.5 - parent: 2 - - uid: 12854 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 2 - - uid: 17804 - components: - - type: Transform - pos: -34.5,-44.5 - parent: 2 - - uid: 17807 - components: - - type: Transform - pos: -28.5,-32.5 - parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 12855 - components: - - type: Transform - pos: -51.5,4.5 - parent: 2 - - uid: 12856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,17.5 - parent: 2 - - uid: 12857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,0.5 - parent: 2 - - uid: 12858 - components: - - type: Transform - pos: -15.5,30.5 - parent: 2 - - uid: 12859 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 2 - - uid: 12860 - components: - - type: Transform - pos: -35.5,-23.5 - parent: 2 -- proto: RandomPosterLegit - entities: - - uid: 7198 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 2 - - uid: 12112 - components: - - type: Transform - pos: -51.5,10.5 - parent: 2 - - uid: 12861 - components: - - type: Transform - pos: 23.5,2.5 - parent: 2 - - uid: 12862 - components: - - type: Transform - pos: -20.5,24.5 - parent: 2 - - uid: 12863 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 2 - - uid: 12864 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 12865 - components: - - type: Transform - pos: -25.5,33.5 - parent: 2 - - uid: 12866 - components: - - type: Transform - pos: -43.5,11.5 - parent: 2 - - uid: 12867 - components: - - type: Transform - pos: -35.5,20.5 - parent: 2 - - uid: 12868 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-7.5 - parent: 2 - - uid: 12869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 2 - - uid: 12870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,14.5 - parent: 2 - - uid: 12871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,23.5 - parent: 2 - - uid: 12872 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,28.5 - parent: 2 - - uid: 12873 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,22.5 - parent: 2 - - uid: 12875 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 2 - - uid: 12876 - components: - - type: Transform - pos: -9.5,-14.5 - parent: 2 - - uid: 12877 - components: - - type: Transform - pos: 27.5,-13.5 - parent: 2 - - uid: 12878 - components: - - type: Transform - pos: -44.5,0.5 - parent: 2 - - uid: 12879 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 2 - - uid: 12880 - components: - - type: Transform - pos: 3.5,2.5 - parent: 2 - - uid: 12881 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,30.5 - parent: 2 - - uid: 12882 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 2 - - uid: 12883 - components: - - type: Transform - pos: -1.5,23.5 - parent: 2 - - uid: 12884 - components: - - type: Transform - pos: 3.5,28.5 - parent: 2 - - uid: 12886 - components: - - type: Transform - pos: -25.5,21.5 - parent: 2 - - uid: 12887 - components: - - type: Transform - pos: -33.5,34.5 - parent: 2 - - uid: 12889 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 2 - - uid: 12890 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 2 - - uid: 12891 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 2 - - uid: 12892 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 2 - - uid: 12893 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 2 - - uid: 12894 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - - uid: 12895 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 2 - - uid: 12896 - components: - - type: Transform - pos: -9.5,-40.5 - parent: 2 - - uid: 12898 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 2 - - uid: 12899 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 2 - - uid: 12900 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 2 - - uid: 12901 - components: - - type: Transform - pos: -39.5,21.5 - parent: 2 - - uid: 12902 - components: - - type: Transform - pos: -11.5,24.5 - parent: 2 - - uid: 12903 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 2 - - uid: 12904 - components: - - type: Transform - pos: -14.5,-37.5 - parent: 2 - - uid: 12905 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 2 - - uid: 12906 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 12907 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 2 - - uid: 12908 - components: - - type: Transform - pos: -12.5,2.5 - parent: 2 - - uid: 12909 - components: - - type: Transform - pos: -6.5,2.5 - parent: 2 - - uid: 12910 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 2 - - uid: 12911 - components: - - type: Transform - pos: -43.5,8.5 - parent: 2 - - uid: 12912 - components: - - type: Transform - pos: -20.5,8.5 - parent: 2 - - uid: 12913 - components: - - type: Transform - pos: -19.5,12.5 - parent: 2 - - uid: 12914 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - uid: 12915 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - - uid: 12916 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 12917 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 2 - - uid: 12918 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 2 - - uid: 12919 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 - - uid: 12920 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 2 - - uid: 12921 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 2 - - uid: 12922 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 2 - - uid: 12923 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - - uid: 12924 - components: - - type: Transform - pos: 9.5,12.5 - parent: 2 - - uid: 13405 - components: - - type: Transform - pos: 6.5,-25.5 - parent: 2 - - uid: 13425 - components: - - type: Transform - pos: 8.5,-26.5 - parent: 2 - - uid: 17438 - components: - - type: Transform - pos: -1.5,5.5 - parent: 2 -- proto: RandomSnacks - entities: - - uid: 12925 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 12926 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 2 - - uid: 12927 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 - - uid: 12928 - components: - - type: Transform - pos: -15.5,-8.5 - parent: 2 - - uid: 12929 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 -- proto: RandomSoap - entities: - - uid: 12930 - components: - - type: Transform - pos: -51.5,-6.5 - parent: 2 - - uid: 12931 - components: - - type: Transform - pos: -28.5,10.5 - parent: 2 -- proto: RandomSpawner - entities: - - uid: 12932 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 2 - - uid: 12933 - components: - - type: Transform - pos: -25.5,0.5 - parent: 2 - - uid: 12934 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 2 - - uid: 12935 - components: - - type: Transform - pos: -35.5,41.5 - parent: 2 - - uid: 12936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,47.5 - parent: 2 - - uid: 12937 - components: - - type: Transform - pos: -26.5,35.5 - parent: 2 - - uid: 12938 - components: - - type: Transform - pos: 9.5,30.5 - parent: 2 - - uid: 12939 - components: - - type: Transform - pos: 6.5,17.5 - parent: 2 - - uid: 12940 - components: - - type: Transform - pos: 30.5,28.5 - parent: 2 - - uid: 12941 - components: - - type: Transform - pos: 36.5,16.5 - parent: 2 - - uid: 12942 - components: - - type: Transform - pos: 39.5,4.5 - parent: 2 - - uid: 12943 - components: - - type: Transform - pos: 18.5,-16.5 - parent: 2 - - uid: 12944 - components: - - type: Transform - pos: 18.5,-8.5 - parent: 2 - - uid: 12945 - components: - - type: Transform - pos: 0.5,-14.5 - parent: 2 - - uid: 12946 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 2 - - uid: 12947 - components: - - type: Transform - pos: -32.5,-21.5 - parent: 2 - - uid: 12948 - components: - - type: Transform - pos: -22.5,-18.5 - parent: 2 - - uid: 12949 - components: - - type: Transform - pos: -41.5,-21.5 - parent: 2 - - uid: 12950 - components: - - type: Transform - pos: -43.5,-15.5 - parent: 2 - - uid: 12951 - components: - - type: Transform - pos: -47.5,2.5 - parent: 2 - - uid: 12952 - components: - - type: Transform - pos: -49.5,18.5 - parent: 2 - - uid: 12953 - components: - - type: Transform - pos: 14.5,-1.5 - parent: 2 - - uid: 12954 - components: - - type: Transform - pos: 29.5,-22.5 - parent: 2 - - uid: 12955 - components: - - type: Transform - pos: -14.5,18.5 - parent: 2 - - uid: 12956 - components: - - type: Transform - pos: -18.5,16.5 - parent: 2 - - uid: 12957 - components: - - type: Transform - pos: -28.5,19.5 - parent: 2 - - uid: 12958 - components: - - type: Transform - pos: -6.5,21.5 - parent: 2 - - uid: 12959 - components: - - type: Transform - pos: -0.5,26.5 - parent: 2 - - uid: 12960 - components: - - type: Transform - pos: -9.5,21.5 - parent: 2 - - uid: 12961 - components: - - type: Transform - pos: 37.5,12.5 - parent: 2 - - uid: 12962 - components: - - type: Transform - pos: 11.5,-5.5 - parent: 2 - - uid: 12963 - components: - - type: Transform - pos: 33.5,-5.5 - parent: 2 - - uid: 12964 - components: - - type: Transform - pos: -39.5,-12.5 - parent: 2 - - uid: 12965 - components: - - type: Transform - pos: -35.5,-14.5 - parent: 2 - - uid: 12966 - components: - - type: Transform - pos: -0.5,-28.5 - parent: 2 - - uid: 12967 - components: - - type: Transform - pos: -1.5,3.5 - parent: 2 - - uid: 12968 - components: - - type: Transform - pos: -30.5,-28.5 - parent: 2 - - uid: 12969 - components: - - type: Transform - pos: -46.5,43.5 - parent: 2 - - uid: 12970 - components: - - type: Transform - pos: 4.5,-25.5 - parent: 2 - - uid: 12971 - components: - - type: Transform - pos: -19.5,-32.5 - parent: 2 - - uid: 12973 - components: - - type: Transform - pos: -19.5,-0.5 - parent: 2 - - uid: 12974 - components: - - type: Transform - pos: 1.5,7.5 - parent: 2 - - uid: 12975 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 12976 - components: - - type: Transform - pos: 4.5,10.5 - parent: 2 - - uid: 12977 - components: - - type: Transform - pos: -17.5,18.5 - parent: 2 - - uid: 12978 - components: - - type: Transform - pos: 5.5,30.5 - parent: 2 - - uid: 12979 - components: - - type: Transform - pos: -34.5,22.5 - parent: 2 - - uid: 12980 - components: - - type: Transform - pos: 21.5,-19.5 - parent: 2 - - uid: 12981 - components: - - type: Transform - pos: 20.5,-18.5 - parent: 2 - - uid: 12982 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 12983 - components: - - type: Transform - pos: 16.5,-22.5 - parent: 2 - - uid: 12984 - components: - - type: Transform - pos: 15.5,-21.5 - parent: 2 -- proto: RandomVending - entities: - - uid: 12985 - components: - - type: Transform - pos: -13.5,-36.5 - parent: 2 - - uid: 12986 - components: - - type: Transform - pos: -53.5,1.5 - parent: 2 - - uid: 12987 - components: - - type: Transform - pos: -43.5,12.5 - parent: 2 - - uid: 12988 - components: - - type: Transform - pos: -16.5,-23.5 - parent: 2 -- proto: RandomVendingDrinks - entities: - - uid: 12989 - components: - - type: Transform - pos: -12.5,7.5 - parent: 2 - - uid: 12990 - components: - - type: Transform - pos: -23.5,7.5 - parent: 2 - - uid: 12991 - components: - - type: Transform - pos: -10.5,27.5 - parent: 2 - - uid: 12992 - components: - - type: Transform - pos: -8.5,27.5 - parent: 2 - - uid: 12993 - components: - - type: Transform - pos: -1.5,4.5 - parent: 2 - - uid: 12994 - components: - - type: Transform - pos: -43.5,12.5 - parent: 2 - - uid: 12995 - components: - - type: Transform - pos: -15.5,-68.5 - parent: 2 - - uid: 12996 - components: - - type: Transform - pos: 14.5,-24.5 - parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 12997 - components: - - type: Transform - pos: -1.5,29.5 - parent: 2 - - uid: 12998 - components: - - type: Transform - pos: -15.5,-67.5 - parent: 2 - - uid: 12999 - components: - - type: Transform - pos: -43.5,20.5 - parent: 2 -- proto: RCD - entities: - - uid: 13000 - components: - - type: Transform - pos: -2.3680477,-30.285326 - parent: 2 -- proto: RCDAmmo - entities: - - uid: 13001 - components: - - type: Transform - pos: -2.4930477,-30.551136 - parent: 2 - - uid: 13002 - components: - - type: Transform - pos: -2.7430477,-30.5355 - parent: 2 -- proto: ReagentContainerFlour - entities: - - uid: 13003 - components: - - type: Transform - pos: -60.417053,-0.40202177 - parent: 2 - - uid: 13004 - components: - - type: Transform - pos: -60.573334,-0.26530302 - parent: 2 -- proto: ReagentContainerSugar - entities: - - uid: 13005 - components: - - type: Transform - pos: -60.749146,-0.655928 - parent: 2 - - uid: 13006 - components: - - type: Transform - pos: -60.358448,-0.71452177 - parent: 2 -- proto: Recycler - entities: - - uid: 13007 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,3.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14705 - - uid: 13008 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 - parent: 2 - - type: DeviceLinkSink - links: - - 14706 -- proto: ReinforcedGirder - entities: - - uid: 2623 - components: - - type: Transform - pos: -47.5,-41.5 - parent: 2 - - uid: 2624 - components: - - type: Transform - pos: -46.5,-43.5 - parent: 2 - - uid: 3212 - components: - - type: Transform - pos: -45.5,-34.5 - parent: 2 - - uid: 5696 - components: - - type: Transform - pos: 25.5,-46.5 - parent: 2 - - uid: 13009 - components: - - type: Transform - pos: 4.5,-56.5 - parent: 2 - - uid: 13010 - components: - - type: Transform - pos: 11.5,-48.5 - parent: 2 - - uid: 13011 - components: - - type: Transform - pos: -19.5,-50.5 - parent: 2 - - uid: 13012 - components: - - type: Transform - pos: 54.5,20.5 - parent: 2 - - uid: 13013 - components: - - type: Transform - pos: -52.5,6.5 - parent: 2 - - uid: 13014 - components: - - type: Transform - pos: 9.5,-54.5 - parent: 2 - - uid: 13015 - components: - - type: Transform - pos: -25.5,-50.5 - parent: 2 - - uid: 13016 - components: - - type: Transform - pos: 65.5,11.5 - parent: 2 - - uid: 13017 - components: - - type: Transform - pos: -55.5,6.5 - parent: 2 - - uid: 13018 - components: - - type: Transform - pos: -34.5,-48.5 - parent: 2 - - uid: 13019 - components: - - type: Transform - pos: -33.5,-48.5 - parent: 2 - - uid: 13020 - components: - - type: Transform - pos: -30.5,-48.5 - parent: 2 - - uid: 13021 - components: - - type: Transform - pos: -29.5,-48.5 - parent: 2 - - uid: 13023 - components: - - type: Transform - pos: -41.5,-40.5 - parent: 2 - - uid: 13024 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 2 - - uid: 13025 - components: - - type: Transform - pos: -41.5,-35.5 - parent: 2 - - uid: 13026 - components: - - type: Transform - pos: -53.5,-23.5 - parent: 2 - - uid: 13027 - components: - - type: Transform - pos: -61.5,-23.5 - parent: 2 - - uid: 13028 - components: - - type: Transform - pos: -66.5,1.5 - parent: 2 - - uid: 13029 - components: - - type: Transform - pos: -66.5,-1.5 - parent: 2 - - uid: 13030 - components: - - type: Transform - pos: -67.5,-14.5 - parent: 2 - - uid: 13031 - components: - - type: Transform - pos: -66.5,-7.5 - parent: 2 - - uid: 13032 - components: - - type: Transform - pos: -67.5,-10.5 - parent: 2 - - uid: 13033 - components: - - type: Transform - pos: -45.5,-29.5 - parent: 2 - - uid: 13034 - components: - - type: Transform - pos: -31.5,-86.5 - parent: 2 - - uid: 13035 - components: - - type: Transform - pos: -28.5,-86.5 - parent: 2 - - uid: 13036 - components: - - type: Transform - pos: -23.5,-89.5 - parent: 2 - - uid: 13037 - components: - - type: Transform - pos: -23.5,-87.5 - parent: 2 - - uid: 13038 - components: - - type: Transform - pos: -21.5,-89.5 - parent: 2 - - uid: 13039 - components: - - type: Transform - pos: -37.5,-84.5 - parent: 2 - - uid: 13040 - components: - - type: Transform - pos: -10.5,-89.5 - parent: 2 - - uid: 13041 - components: - - type: Transform - pos: -1.5,-86.5 - parent: 2 - - uid: 13042 - components: - - type: Transform - pos: -8.5,-89.5 - parent: 2 - - uid: 13043 - components: - - type: Transform - pos: -5.5,-87.5 - parent: 2 - - uid: 13044 - components: - - type: Transform - pos: -1.5,-87.5 - parent: 2 - - uid: 13045 - components: - - type: Transform - pos: 1.5,-86.5 - parent: 2 - - uid: 13046 - components: - - type: Transform - pos: -37.5,-66.5 - parent: 2 - - uid: 13047 - components: - - type: Transform - pos: 5.5,-80.5 - parent: 2 - - uid: 13048 - components: - - type: Transform - pos: 5.5,-76.5 - parent: 2 - - uid: 13049 - components: - - type: Transform - pos: 3.5,-72.5 - parent: 2 - - uid: 13050 - components: - - type: Transform - pos: 1.5,-66.5 - parent: 2 - - uid: 13051 - components: - - type: Transform - pos: -11.5,-64.5 - parent: 2 - - uid: 13052 - components: - - type: Transform - pos: 5.5,-72.5 - parent: 2 - - uid: 13053 - components: - - type: Transform - pos: -0.5,-65.5 - parent: 2 - - uid: 13054 - components: - - type: Transform - pos: -0.5,-66.5 - parent: 2 - - uid: 13055 - components: - - type: Transform - pos: -7.5,-64.5 - parent: 2 - - uid: 13056 - components: - - type: Transform - pos: -4.5,-64.5 - parent: 2 - - uid: 13057 - components: - - type: Transform - pos: -4.5,-65.5 - parent: 2 - - uid: 13058 - components: - - type: Transform - pos: -22.5,-65.5 - parent: 2 - - uid: 13059 - components: - - type: Transform - pos: -25.5,-65.5 - parent: 2 - - uid: 13060 - components: - - type: Transform - pos: -37.5,-80.5 - parent: 2 - - uid: 13061 - components: - - type: Transform - pos: -37.5,-86.5 - parent: 2 - - uid: 13062 - components: - - type: Transform - pos: -39.5,-78.5 - parent: 2 - - uid: 13063 - components: - - type: Transform - pos: -39.5,-74.5 - parent: 2 - - uid: 13064 - components: - - type: Transform - pos: -39.5,-72.5 - parent: 2 - - uid: 13065 - components: - - type: Transform - pos: -37.5,-82.5 - parent: 2 - - uid: 13066 - components: - - type: Transform - pos: -35.5,-86.5 - parent: 2 - - uid: 13067 - components: - - type: Transform - pos: -45.5,-26.5 - parent: 2 - - uid: 13068 - components: - - type: Transform - pos: 43.5,-23.5 - parent: 2 - - uid: 13069 - components: - - type: Transform - pos: 60.5,2.5 - parent: 2 - - uid: 13070 - components: - - type: Transform - pos: 65.5,9.5 - parent: 2 - - uid: 13071 - components: - - type: Transform - pos: 62.5,14.5 - parent: 2 - - uid: 13072 - components: - - type: Transform - pos: 46.5,16.5 - parent: 2 - - uid: 13073 - components: - - type: Transform - pos: 33.5,31.5 - parent: 2 - - uid: 13074 - components: - - type: Transform - pos: 39.5,22.5 - parent: 2 - - uid: 13075 - components: - - type: Transform - pos: 37.5,27.5 - parent: 2 - - uid: 13076 - components: - - type: Transform - pos: 35.5,29.5 - parent: 2 - - uid: 13077 - components: - - type: Transform - pos: 30.5,34.5 - parent: 2 - - uid: 13078 - components: - - type: Transform - pos: 27.5,34.5 - parent: 2 - - uid: 13079 - components: - - type: Transform - pos: 7.5,33.5 - parent: 2 - - uid: 13080 - components: - - type: Transform - pos: 13.5,33.5 - parent: 2 - - uid: 13081 - components: - - type: Transform - pos: -22.5,49.5 - parent: 2 - - uid: 13082 - components: - - type: Transform - pos: 13.5,37.5 - parent: 2 - - uid: 13083 - components: - - type: Transform - pos: -28.5,47.5 - parent: 2 - - uid: 13084 - components: - - type: Transform - pos: -26.5,49.5 - parent: 2 - - uid: 13085 - components: - - type: Transform - pos: -18.5,49.5 - parent: 2 - - uid: 13086 - components: - - type: Transform - pos: -11.5,49.5 - parent: 2 - - uid: 13087 - components: - - type: Transform - pos: -6.5,48.5 - parent: 2 - - uid: 13088 - components: - - type: Transform - pos: -4.5,48.5 - parent: 2 - - uid: 13089 - components: - - type: Transform - pos: -2.5,47.5 - parent: 2 - - uid: 13090 - components: - - type: Transform - pos: 3.5,45.5 - parent: 2 - - uid: 13091 - components: - - type: Transform - pos: 4.5,43.5 - parent: 2 - - uid: 13092 - components: - - type: Transform - pos: 5.5,41.5 - parent: 2 - - uid: 13093 - components: - - type: Transform - pos: 6.5,39.5 - parent: 2 - - uid: 13094 - components: - - type: Transform - pos: 7.5,37.5 - parent: 2 - - uid: 13095 - components: - - type: Transform - pos: 7.5,35.5 - parent: 2 - - uid: 13096 - components: - - type: Transform - pos: 4.5,-60.5 - parent: 2 - - uid: 13097 - components: - - type: Transform - pos: -35.5,-61.5 - parent: 2 - - uid: 13098 - components: - - type: Transform - pos: 19.5,34.5 - parent: 2 - - uid: 13099 - components: - - type: Transform - pos: -35.5,-55.5 - parent: 2 - - uid: 13100 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - - uid: 13101 - components: - - type: Transform - pos: -40.5,70.5 - parent: 2 - - uid: 13102 - components: - - type: Transform - pos: -44.5,70.5 - parent: 2 - - uid: 13103 - components: - - type: Transform - pos: -32.5,54.5 - parent: 2 - - uid: 13104 - components: - - type: Transform - pos: -52.5,68.5 - parent: 2 - - uid: 13105 - components: - - type: Transform - pos: -32.5,68.5 - parent: 2 - - uid: 13106 - components: - - type: Transform - pos: -52.5,54.5 - parent: 2 - - uid: 13107 - components: - - type: Transform - pos: -58.5,45.5 - parent: 2 - - uid: 13108 - components: - - type: Transform - pos: -55.5,51.5 - parent: 2 - - uid: 13109 - components: - - type: Transform - pos: -42.5,70.5 - parent: 2 - - uid: 13110 - components: - - type: Transform - pos: -67.5,-7.5 - parent: 2 - - uid: 13111 - components: - - type: Transform - pos: -66.5,33.5 - parent: 2 - - uid: 13112 - components: - - type: Transform - pos: -64.5,40.5 - parent: 2 - - uid: 13113 - components: - - type: Transform - pos: -65.5,39.5 - parent: 2 - - uid: 13114 - components: - - type: Transform - pos: -66.5,36.5 - parent: 2 - - uid: 13115 - components: - - type: Transform - pos: -66.5,30.5 - parent: 2 - - uid: 13116 - components: - - type: Transform - pos: -65.5,30.5 - parent: 2 - - uid: 13117 - components: - - type: Transform - pos: 49.5,12.5 - parent: 2 - - uid: 13120 - components: - - type: Transform - pos: -12.5,-51.5 - parent: 2 - - uid: 17428 - components: - - type: Transform - pos: 20.5,-49.5 - parent: 2 - - uid: 17805 - components: - - type: Transform - pos: -47.5,-36.5 - parent: 2 - - uid: 17806 - components: - - type: Transform - pos: -47.5,-38.5 - parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 3922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-35.5 - parent: 2 - - uid: 13121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 - parent: 2 - - uid: 13122 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-47.5 - parent: 2 - - uid: 13123 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-43.5 - parent: 2 - - uid: 13124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-49.5 - parent: 2 - - uid: 13125 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 2 - - uid: 13126 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 2 - - uid: 13127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-40.5 - parent: 2 - - uid: 13128 - components: - - type: Transform - pos: -14.5,-40.5 - parent: 2 - - uid: 13129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-39.5 - parent: 2 - - uid: 13130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-38.5 - parent: 2 - - uid: 13131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-36.5 - parent: 2 - - uid: 13132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-37.5 - parent: 2 - - uid: 13133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-26.5 - parent: 2 - - uid: 13134 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 2 - - uid: 13144 - components: - - type: Transform - pos: -23.5,-33.5 - parent: 2 - - uid: 13145 - components: - - type: Transform - pos: -23.5,-32.5 - parent: 2 - - uid: 13146 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 2 - - uid: 13147 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 2 - - uid: 13159 - components: - - type: Transform - pos: -32.5,-29.5 - parent: 2 - - uid: 13161 - components: - - type: Transform - pos: -41.5,2.5 - parent: 2 - - uid: 13162 - components: - - type: Transform - pos: -40.5,2.5 - parent: 2 - - uid: 13163 - components: - - type: Transform - pos: -42.5,2.5 - parent: 2 - - uid: 13164 - components: - - type: Transform - pos: 0.5,21.5 - parent: 2 - - uid: 13165 - components: - - type: Transform - pos: 1.5,21.5 - parent: 2 - - uid: 13166 - components: - - type: Transform - pos: 1.5,17.5 - parent: 2 - - uid: 13167 - components: - - type: Transform - pos: 0.5,17.5 - parent: 2 - - uid: 13168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-51.5 - parent: 2 - - uid: 13169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 2 - - uid: 17569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-35.5 - parent: 2 - - uid: 17570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-34.5 - parent: 2 - - uid: 17571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-33.5 - parent: 2 - - uid: 17572 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-33.5 - parent: 2 - - uid: 17573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-34.5 - parent: 2 - - uid: 17574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-41.5 - parent: 2 - - uid: 17575 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-41.5 - parent: 2 - - uid: 17576 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-42.5 - parent: 2 - - uid: 17577 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-43.5 - parent: 2 - - uid: 17578 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-42.5 - parent: 2 - - uid: 17579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-43.5 - parent: 2 -- proto: ReinforcedWindow - entities: - - uid: 10176 - components: - - type: Transform - pos: 6.5,-27.5 - parent: 2 - - uid: 12885 - components: - - type: Transform - pos: 8.5,-27.5 - parent: 2 - - uid: 13136 - components: - - type: Transform - pos: -30.5,-40.5 - parent: 2 - - uid: 13137 - components: - - type: Transform - pos: -33.5,-39.5 - parent: 2 - - uid: 13139 - components: - - type: Transform - pos: -31.5,-36.5 - parent: 2 - - uid: 13140 - components: - - type: Transform - pos: -31.5,-40.5 - parent: 2 - - uid: 13141 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 2 - - uid: 13142 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 13143 - components: - - type: Transform - pos: -33.5,-36.5 - parent: 2 - - uid: 13148 - components: - - type: Transform - pos: -33.5,-37.5 - parent: 2 - - uid: 13149 - components: - - type: Transform - pos: -29.5,-40.5 - parent: 2 - - uid: 13150 - components: - - type: Transform - pos: -33.5,-40.5 - parent: 2 - - uid: 13151 - components: - - type: Transform - pos: -29.5,-39.5 - parent: 2 - - uid: 13152 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 2 - - uid: 13153 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 13154 - components: - - type: Transform - pos: -32.5,-36.5 - parent: 2 - - uid: 13170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-52.5 - parent: 2 - - uid: 13171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-46.5 - parent: 2 - - uid: 13172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-52.5 - parent: 2 - - uid: 13173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 2 - - uid: 13174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-47.5 - parent: 2 - - uid: 13175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-49.5 - parent: 2 - - uid: 13176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 2 - - uid: 13177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 2 - - uid: 13178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 2 - - uid: 13179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-47.5 - parent: 2 - - uid: 13180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-46.5 - parent: 2 - - uid: 13181 - components: - - type: Transform - pos: 29.5,-24.5 - parent: 2 - - uid: 13182 - components: - - type: Transform - pos: -29.5,-13.5 - parent: 2 - - uid: 13183 - components: - - type: Transform - pos: -36.5,-7.5 - parent: 2 - - uid: 13184 - components: - - type: Transform - pos: -22.5,19.5 - parent: 2 - - uid: 13185 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - - uid: 13186 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 2 - - uid: 13187 - components: - - type: Transform - pos: 4.5,-34.5 - parent: 2 - - uid: 13188 - components: - - type: Transform - pos: 5.5,-34.5 - parent: 2 - - uid: 13189 - components: - - type: Transform - pos: -11.5,-20.5 - parent: 2 - - uid: 13190 - components: - - type: Transform - pos: 16.5,-4.5 - parent: 2 - - uid: 13191 - components: - - type: Transform - pos: 16.5,-5.5 - parent: 2 - - uid: 13192 - components: - - type: Transform - pos: -4.5,-32.5 - parent: 2 - - uid: 13193 - components: - - type: Transform - pos: -26.5,1.5 - parent: 2 - - uid: 13194 - components: - - type: Transform - pos: -64.5,-7.5 - parent: 2 - - uid: 13195 - components: - - type: Transform - pos: -28.5,4.5 - parent: 2 - - uid: 13196 - components: - - type: Transform - pos: -1.5,22.5 - parent: 2 - - uid: 13197 - components: - - type: Transform - pos: -5.5,-36.5 - parent: 2 - - uid: 13198 - components: - - type: Transform - pos: -1.5,16.5 - parent: 2 - - uid: 13199 - components: - - type: Transform - pos: -9.5,-15.5 - parent: 2 - - uid: 13200 - components: - - type: Transform - pos: -41.5,-14.5 - parent: 2 - - uid: 13201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-12.5 - parent: 2 - - uid: 13202 - components: - - type: Transform - pos: -34.5,-16.5 - parent: 2 - - uid: 13203 - components: - - type: Transform - pos: -40.5,-16.5 - parent: 2 - - uid: 13204 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,33.5 - parent: 2 - - uid: 13205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,33.5 - parent: 2 - - uid: 13206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,32.5 - parent: 2 - - uid: 13207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,33.5 - parent: 2 - - uid: 13208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,33.5 - parent: 2 - - uid: 13209 - components: - - type: Transform - pos: -22.5,20.5 - parent: 2 - - uid: 13210 - components: - - type: Transform - pos: -35.5,-7.5 - parent: 2 - - uid: 13211 - components: - - type: Transform - pos: -9.5,-17.5 - parent: 2 - - uid: 13212 - components: - - type: Transform - pos: 1.5,-31.5 - parent: 2 - - uid: 13213 - components: - - type: Transform - pos: 3.5,-29.5 - parent: 2 - - uid: 13215 - components: - - type: Transform - pos: 4.5,-29.5 - parent: 2 - - uid: 13216 - components: - - type: Transform - pos: -41.5,-11.5 - parent: 2 - - uid: 13217 - components: - - type: Transform - pos: -4.5,32.5 - parent: 2 - - uid: 13218 - components: - - type: Transform - pos: -8.5,-36.5 - parent: 2 - - uid: 13219 - components: - - type: Transform - pos: 1.5,-30.5 - parent: 2 - - uid: 13220 - components: - - type: Transform - pos: 41.5,-10.5 - parent: 2 - - uid: 13221 - components: - - type: Transform - pos: 31.5,-24.5 - parent: 2 - - uid: 13223 - components: - - type: Transform - pos: 6.5,-24.5 - parent: 2 - - uid: 13224 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - - uid: 13225 - components: - - type: Transform - pos: 5.5,34.5 - parent: 2 - - uid: 13226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-18.5 - parent: 2 - - uid: 13227 - components: - - type: Transform - pos: -19.5,-23.5 - parent: 2 - - uid: 13229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 2 - - uid: 13230 - components: - - type: Transform - pos: -16.5,-47.5 - parent: 2 - - uid: 13231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-37.5 - parent: 2 - - uid: 13232 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 2 - - uid: 13233 - components: - - type: Transform - pos: 3.5,-36.5 - parent: 2 - - uid: 13234 - components: - - type: Transform - pos: -50.5,-4.5 - parent: 2 - - uid: 13235 - components: - - type: Transform - pos: -50.5,-2.5 - parent: 2 - - uid: 13236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-18.5 - parent: 2 - - uid: 13237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-18.5 - parent: 2 - - uid: 13238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-18.5 - parent: 2 - - uid: 13239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,3.5 - parent: 2 - - uid: 13240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-1.5 - parent: 2 - - uid: 13241 - components: - - type: Transform - pos: 41.5,-22.5 - parent: 2 - - uid: 13242 - components: - - type: Transform - pos: -55.5,38.5 - parent: 2 - - uid: 13243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-6.5 - parent: 2 - - uid: 13244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-5.5 - parent: 2 - - uid: 13245 - components: - - type: Transform - pos: -16.5,-50.5 - parent: 2 - - uid: 13246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-7.5 - parent: 2 - - uid: 13247 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-14.5 - parent: 2 - - uid: 13248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 2 - - uid: 13249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 2 - - uid: 13250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-8.5 - parent: 2 - - uid: 13251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-11.5 - parent: 2 - - uid: 13252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,-0.5 - parent: 2 - - uid: 13253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-15.5 - parent: 2 - - uid: 13254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 - parent: 2 - - uid: 13255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 - parent: 2 - - uid: 13256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-2.5 - parent: 2 - - uid: 13257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-2.5 - parent: 2 - - uid: 13258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 2 - - uid: 13259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 2 - - uid: 13260 - components: - - type: Transform - pos: -64.5,-8.5 - parent: 2 - - uid: 13261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-21.5 - parent: 2 - - uid: 13262 - components: - - type: Transform - pos: 5.5,35.5 - parent: 2 - - uid: 13263 - components: - - type: Transform - pos: 41.5,-2.5 - parent: 2 - - uid: 13264 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 2 - - uid: 13265 - components: - - type: Transform - pos: -23.5,37.5 - parent: 2 - - uid: 13266 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 2 - - uid: 13267 - components: - - type: Transform - pos: 38.5,-24.5 - parent: 2 - - uid: 13268 - components: - - type: Transform - pos: 12.5,-43.5 - parent: 2 - - uid: 13269 - components: - - type: Transform - pos: -23.5,-75.5 - parent: 2 - - uid: 13270 - components: - - type: Transform - pos: -24.5,-75.5 - parent: 2 - - uid: 13271 - components: - - type: Transform - pos: -25.5,-75.5 - parent: 2 - - uid: 13272 - components: - - type: Transform - pos: -25.5,-77.5 - parent: 2 - - uid: 13273 - components: - - type: Transform - pos: -24.5,-77.5 - parent: 2 - - uid: 13274 - components: - - type: Transform - pos: -23.5,-77.5 - parent: 2 - - uid: 13275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-76.5 - parent: 2 - - uid: 13276 - components: - - type: Transform - pos: 11.5,19.5 - parent: 2 - - uid: 13277 - components: - - type: Transform - pos: 11.5,18.5 - parent: 2 - - uid: 13278 - components: - - type: Transform - pos: -40.5,4.5 - parent: 2 - - uid: 13279 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - - uid: 13280 - components: - - type: Transform - pos: 20.5,11.5 - parent: 2 - - uid: 13281 - components: - - type: Transform - pos: -41.5,4.5 - parent: 2 - - uid: 13282 - components: - - type: Transform - pos: -42.5,4.5 - parent: 2 - - uid: 13283 - components: - - type: Transform - pos: 36.5,-24.5 - parent: 2 - - uid: 13284 - components: - - type: Transform - pos: 25.5,-23.5 - parent: 2 - - uid: 13285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-19.5 - parent: 2 - - uid: 13286 - components: - - type: Transform - pos: 40.5,-14.5 - parent: 2 - - uid: 13287 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 - - uid: 13288 - components: - - type: Transform - pos: 34.5,23.5 - parent: 2 - - uid: 13289 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - - uid: 13290 - components: - - type: Transform - pos: 24.5,7.5 - parent: 2 - - uid: 13291 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 13292 - components: - - type: Transform - pos: 48.5,12.5 - parent: 2 - - uid: 13293 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 - - uid: 13294 - components: - - type: Transform - pos: 46.5,9.5 - parent: 2 - - uid: 13295 - components: - - type: Transform - pos: 46.5,10.5 - parent: 2 - - uid: 13296 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 - - uid: 13297 - components: - - type: Transform - pos: 48.5,10.5 - parent: 2 - - uid: 13298 - components: - - type: Transform - pos: 42.5,6.5 - parent: 2 - - uid: 13299 - components: - - type: Transform - pos: 16.5,14.5 - parent: 2 - - uid: 13300 - components: - - type: Transform - pos: 20.5,33.5 - parent: 2 - - uid: 13301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,32.5 - parent: 2 - - uid: 13302 - components: - - type: Transform - pos: -38.5,-25.5 - parent: 2 - - uid: 13303 - components: - - type: Transform - pos: 4.5,19.5 - parent: 2 - - uid: 13304 - components: - - type: Transform - pos: -37.5,-25.5 - parent: 2 - - uid: 13305 - components: - - type: Transform - pos: -51.5,12.5 - parent: 2 - - uid: 13306 - components: - - type: Transform - pos: -4.5,28.5 - parent: 2 - - uid: 13307 - components: - - type: Transform - pos: 5.5,33.5 - parent: 2 - - uid: 13308 - components: - - type: Transform - pos: -11.5,45.5 - parent: 2 - - uid: 13309 - components: - - type: Transform - pos: -21.5,34.5 - parent: 2 - - uid: 13310 - components: - - type: Transform - pos: -18.5,34.5 - parent: 2 - - uid: 13311 - components: - - type: Transform - pos: -7.5,44.5 - parent: 2 - - uid: 13312 - components: - - type: Transform - pos: -9.5,45.5 - parent: 2 - - uid: 13313 - components: - - type: Transform - pos: -54.5,2.5 - parent: 2 - - uid: 13314 - components: - - type: Transform - pos: -53.5,2.5 - parent: 2 - - uid: 13315 - components: - - type: Transform - pos: 2.5,42.5 - parent: 2 - - uid: 13316 - components: - - type: Transform - pos: -6.5,44.5 - parent: 2 - - uid: 13317 - components: - - type: Transform - pos: -10.5,45.5 - parent: 2 - - uid: 13318 - components: - - type: Transform - pos: -14.5,43.5 - parent: 2 - - uid: 13319 - components: - - type: Transform - pos: -5.5,43.5 - parent: 2 - - uid: 13320 - components: - - type: Transform - pos: -8.5,45.5 - parent: 2 - - uid: 13321 - components: - - type: Transform - pos: -5.5,44.5 - parent: 2 - - uid: 13322 - components: - - type: Transform - pos: -14.5,44.5 - parent: 2 - - uid: 13323 - components: - - type: Transform - pos: -13.5,44.5 - parent: 2 - - uid: 13324 - components: - - type: Transform - pos: -12.5,44.5 - parent: 2 - - uid: 13325 - components: - - type: Transform - pos: -7.5,45.5 - parent: 2 - - uid: 13326 - components: - - type: Transform - pos: -12.5,45.5 - parent: 2 - - uid: 13327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,17.5 - parent: 2 - - uid: 13328 - components: - - type: Transform - pos: -28.5,43.5 - parent: 2 - - uid: 13329 - components: - - type: Transform - pos: -27.5,43.5 - parent: 2 - - uid: 13330 - components: - - type: Transform - pos: -27.5,44.5 - parent: 2 - - uid: 13331 - components: - - type: Transform - pos: -26.5,44.5 - parent: 2 - - uid: 13332 - components: - - type: Transform - pos: -26.5,45.5 - parent: 2 - - uid: 13333 - components: - - type: Transform - pos: -25.5,45.5 - parent: 2 - - uid: 13334 - components: - - type: Transform - pos: -24.5,45.5 - parent: 2 - - uid: 13335 - components: - - type: Transform - pos: -23.5,45.5 - parent: 2 - - uid: 13336 - components: - - type: Transform - pos: -22.5,45.5 - parent: 2 - - uid: 13337 - components: - - type: Transform - pos: -21.5,45.5 - parent: 2 - - uid: 13338 - components: - - type: Transform - pos: -20.5,45.5 - parent: 2 - - uid: 13339 - components: - - type: Transform - pos: -20.5,44.5 - parent: 2 - - uid: 13340 - components: - - type: Transform - pos: -19.5,44.5 - parent: 2 - - uid: 13341 - components: - - type: Transform - pos: -19.5,43.5 - parent: 2 - - uid: 13342 - components: - - type: Transform - pos: -18.5,43.5 - parent: 2 - - uid: 13343 - components: - - type: Transform - pos: -33.5,27.5 - parent: 2 - - uid: 13344 - components: - - type: Transform - pos: -46.5,38.5 - parent: 2 - - uid: 13345 - components: - - type: Transform - pos: 42.5,4.5 - parent: 2 - - uid: 13346 - components: - - type: Transform - pos: -45.5,37.5 - parent: 2 - - uid: 13347 - components: - - type: Transform - pos: -45.5,36.5 - parent: 2 - - uid: 13348 - components: - - type: Transform - pos: -41.5,37.5 - parent: 2 - - uid: 13349 - components: - - type: Transform - pos: -41.5,36.5 - parent: 2 - - uid: 13350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,12.5 - parent: 2 - - uid: 13351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,15.5 - parent: 2 - - uid: 13352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,16.5 - parent: 2 - - uid: 13353 - components: - - type: Transform - pos: -52.5,41.5 - parent: 2 - - uid: 13354 - components: - - type: Transform - pos: -52.5,40.5 - parent: 2 - - uid: 13355 - components: - - type: Transform - pos: -52.5,39.5 - parent: 2 - - uid: 13356 - components: - - type: Transform - pos: -56.5,41.5 - parent: 2 - - uid: 13357 - components: - - type: Transform - pos: -56.5,40.5 - parent: 2 - - uid: 13358 - components: - - type: Transform - pos: -56.5,39.5 - parent: 2 - - uid: 13359 - components: - - type: Transform - pos: -53.5,42.5 - parent: 2 - - uid: 13360 - components: - - type: Transform - pos: -54.5,42.5 - parent: 2 - - uid: 13361 - components: - - type: Transform - pos: -55.5,42.5 - parent: 2 - - uid: 13362 - components: - - type: Transform - pos: -50.5,40.5 - parent: 2 - - uid: 13363 - components: - - type: Transform - pos: -50.5,39.5 - parent: 2 - - uid: 13364 - components: - - type: Transform - pos: -43.5,53.5 - parent: 2 - - uid: 13365 - components: - - type: Transform - pos: -43.5,54.5 - parent: 2 - - uid: 13366 - components: - - type: Transform - pos: -43.5,52.5 - parent: 2 - - uid: 13367 - components: - - type: Transform - pos: -41.5,53.5 - parent: 2 - - uid: 13368 - components: - - type: Transform - pos: -60.5,32.5 - parent: 2 - - uid: 13369 - components: - - type: Transform - pos: -61.5,32.5 - parent: 2 - - uid: 13370 - components: - - type: Transform - pos: -62.5,32.5 - parent: 2 - - uid: 13371 - components: - - type: Transform - pos: -60.5,37.5 - parent: 2 - - uid: 13372 - components: - - type: Transform - pos: -60.5,36.5 - parent: 2 - - uid: 13373 - components: - - type: Transform - pos: -61.5,36.5 - parent: 2 - - uid: 13374 - components: - - type: Transform - pos: -62.5,36.5 - parent: 2 - - uid: 13375 - components: - - type: Transform - pos: -60.5,31.5 - parent: 2 - - uid: 13376 - components: - - type: Transform - pos: -58.5,31.5 - parent: 2 - - uid: 13377 - components: - - type: Transform - pos: -58.5,37.5 - parent: 2 - - uid: 13378 - components: - - type: Transform - pos: -58.5,36.5 - parent: 2 - - uid: 13379 - components: - - type: Transform - pos: -58.5,35.5 - parent: 2 - - uid: 13380 - components: - - type: Transform - pos: -58.5,33.5 - parent: 2 - - uid: 13381 - components: - - type: Transform - pos: -58.5,32.5 - parent: 2 - - uid: 13382 - components: - - type: Transform - pos: -44.5,52.5 - parent: 2 - - uid: 13383 - components: - - type: Transform - pos: -41.5,52.5 - parent: 2 - - uid: 13384 - components: - - type: Transform - pos: -40.5,52.5 - parent: 2 - - uid: 13385 - components: - - type: Transform - pos: -41.5,54.5 - parent: 2 - - uid: 13386 - components: - - type: Transform - pos: -51.5,35.5 - parent: 2 - - uid: 13387 - components: - - type: Transform - pos: -51.5,34.5 - parent: 2 - - uid: 13388 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,20.5 - parent: 2 - - uid: 13389 - components: - - type: Transform - pos: -43.5,4.5 - parent: 2 - - uid: 13390 - components: - - type: Transform - pos: 3.5,39.5 - parent: 2 - - uid: 13391 - components: - - type: Transform - pos: 3.5,38.5 - parent: 2 - - uid: 13392 - components: - - type: Transform - pos: -39.5,4.5 - parent: 2 - - uid: 13393 - components: - - type: Transform - pos: 21.5,9.5 - parent: 2 - - uid: 13394 - components: - - type: Transform - pos: 15.5,14.5 - parent: 2 - - uid: 13395 - components: - - type: Transform - pos: -41.5,24.5 - parent: 2 - - uid: 13396 - components: - - type: Transform - pos: -12.5,-20.5 - parent: 2 - - uid: 13397 - components: - - type: Transform - pos: -62.5,-10.5 - parent: 2 - - uid: 13398 - components: - - type: Transform - pos: 4.5,20.5 - parent: 2 - - uid: 13399 - components: - - type: Transform - pos: 8.5,-24.5 - parent: 2 - - uid: 13400 - components: - - type: Transform - pos: 4.5,18.5 - parent: 2 - - uid: 13401 - components: - - type: Transform - pos: 23.5,-31.5 - parent: 2 - - uid: 13402 - components: - - type: Transform - pos: -13.5,-20.5 - parent: 2 - - uid: 13403 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 2 - - uid: 13404 - components: - - type: Transform - pos: 6.5,-14.5 - parent: 2 - - uid: 13406 - components: - - type: Transform - pos: 15.5,-35.5 - parent: 2 - - uid: 13407 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 2 - - uid: 13408 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 2 - - uid: 13409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-34.5 - parent: 2 - - uid: 13410 - components: - - type: Transform - pos: 17.5,-34.5 - parent: 2 - - uid: 13411 - components: - - type: Transform - pos: 6.5,-34.5 - parent: 2 - - uid: 13412 - components: - - type: Transform - pos: 23.5,-30.5 - parent: 2 - - uid: 13413 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - - uid: 13414 - components: - - type: Transform - pos: -34.5,44.5 - parent: 2 - - uid: 13415 - components: - - type: Transform - pos: 13.5,-27.5 - parent: 2 - - uid: 13416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-33.5 - parent: 2 - - uid: 13417 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - uid: 13418 - components: - - type: Transform - pos: -42.5,38.5 - parent: 2 - - uid: 13419 - components: - - type: Transform - pos: -43.5,38.5 - parent: 2 - - uid: 13420 - components: - - type: Transform - pos: -58.5,34.5 - parent: 2 - - uid: 13421 - components: - - type: Transform - pos: 41.5,-18.5 - parent: 2 - - uid: 13422 - components: - - type: Transform - pos: -62.5,-4.5 - parent: 2 - - uid: 13423 - components: - - type: Transform - pos: 7.5,-14.5 - parent: 2 - - uid: 13424 - components: - - type: Transform - pos: -51.5,28.5 - parent: 2 - - uid: 13426 - components: - - type: Transform - pos: 27.5,3.5 - parent: 2 - - uid: 13427 - components: - - type: Transform - pos: -51.5,26.5 - parent: 2 - - uid: 13428 - components: - - type: Transform - pos: -51.5,27.5 - parent: 2 - - uid: 13429 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 2 - - uid: 13430 - components: - - type: Transform - pos: 12.5,-37.5 - parent: 2 - - uid: 13431 - components: - - type: Transform - pos: -51.5,23.5 - parent: 2 - - uid: 13432 - components: - - type: Transform - pos: -63.5,-4.5 - parent: 2 - - uid: 13433 - components: - - type: Transform - pos: -64.5,-6.5 - parent: 2 - - uid: 13434 - components: - - type: Transform - pos: -64.5,-5.5 - parent: 2 - - uid: 13435 - components: - - type: Transform - pos: -64.5,-9.5 - parent: 2 - - uid: 13436 - components: - - type: Transform - pos: -63.5,-10.5 - parent: 2 - - uid: 13437 - components: - - type: Transform - pos: -57.5,3.5 - parent: 2 - - uid: 13438 - components: - - type: Transform - pos: -64.5,-4.5 - parent: 2 - - uid: 13439 - components: - - type: Transform - pos: -64.5,-10.5 - parent: 2 - - uid: 13440 - components: - - type: Transform - pos: 34.5,-23.5 - parent: 2 - - uid: 13441 - components: - - type: Transform - pos: 33.5,-23.5 - parent: 2 - - uid: 13442 - components: - - type: Transform - pos: -51.5,9.5 - parent: 2 - - uid: 13443 - components: - - type: Transform - pos: -51.5,20.5 - parent: 2 - - uid: 13444 - components: - - type: Transform - pos: 11.5,31.5 - parent: 2 - - uid: 13445 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 2 - - uid: 13446 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 2 - - uid: 13447 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 2 - - uid: 13448 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-42.5 - parent: 2 - - uid: 13449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-49.5 - parent: 2 - - uid: 13450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-51.5 - parent: 2 - - uid: 13451 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-43.5 - parent: 2 - - uid: 13452 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-46.5 - parent: 2 - - uid: 13739 - components: - - type: Transform - pos: -40.5,-33.5 - parent: 2 - - uid: 14676 - components: - - type: Transform - pos: -37.5,-29.5 - parent: 2 - - uid: 14741 - components: - - type: Transform - pos: -40.5,-43.5 - parent: 2 - - uid: 15203 - components: - - type: Transform - pos: -40.5,-37.5 - parent: 2 - - uid: 15204 - components: - - type: Transform - pos: -40.5,-39.5 - parent: 2 - - uid: 15211 - components: - - type: Transform - pos: -27.5,-47.5 - parent: 2 - - uid: 15213 - components: - - type: Transform - pos: -31.5,-47.5 - parent: 2 - - uid: 15214 - components: - - type: Transform - pos: -35.5,-47.5 - parent: 2 - - uid: 15224 - components: - - type: Transform - pos: -37.5,-47.5 - parent: 2 - - uid: 15279 - components: - - type: Transform - pos: -36.5,-47.5 - parent: 2 - - uid: 17494 - components: - - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 17515 - components: - - type: Transform - pos: -28.5,-47.5 - parent: 2 - - uid: 17600 - components: - - type: Transform - pos: -26.5,-47.5 - parent: 2 - - uid: 17603 - components: - - type: Transform - pos: -40.5,-38.5 - parent: 2 - - uid: 17604 - components: - - type: Transform - pos: -40.5,-42.5 - parent: 2 - - uid: 17605 - components: - - type: Transform - pos: -40.5,-44.5 - parent: 2 - - uid: 17606 - components: - - type: Transform - pos: -36.5,-29.5 - parent: 2 - - uid: 17610 - components: - - type: Transform - pos: -40.5,-32.5 - parent: 2 - - uid: 17614 - components: - - type: Transform - pos: -40.5,-34.5 - parent: 2 - - uid: 17791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-38.5 - parent: 2 -- proto: RemoteSignaller - entities: - - uid: 13453 - components: - - type: MetaData - name: igniter remote - - type: Transform - pos: -7.6044617,-45.35101 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 11696: - - Pressed: Trigger -- proto: ResearchAndDevelopmentServer - entities: - - uid: 11518 - components: - - type: Transform - pos: -46.5,37.5 - parent: 2 -- proto: ReverseEngineeringMachine - entities: - - uid: 13455 - components: - - type: Transform - pos: -37.5,27.5 - parent: 2 -- proto: RevolverCapGun - entities: - - uid: 13456 - components: - - type: Transform - pos: -38.37131,10.388292 - parent: 2 -- proto: Rickenbacker4003Instrument - entities: - - uid: 13457 - components: - - type: Transform - pos: -13.422459,-7.552577 - parent: 2 -- proto: Roboisseur - entities: - - uid: 13214 - components: - - type: Transform - pos: -6.5,20.5 - parent: 2 -- proto: RollerBed - entities: - - uid: 13459 - components: - - type: Transform - pos: -30.5,1.5 - parent: 2 - - uid: 13460 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 - - uid: 13461 - components: - - type: Transform - pos: 23.5,10.5 - parent: 2 - - uid: 13462 - components: - - type: Transform - pos: 23.5,11.5 - parent: 2 - - uid: 13463 - components: - - type: Transform - pos: 12.5,10.5 - parent: 2 - - uid: 13464 - components: - - type: Transform - pos: 12.5,11.5 - parent: 2 -- proto: RubberStampApproved - entities: - - uid: 13465 - components: - - type: Transform - pos: -7.980133,-15.275741 - parent: 2 - - uid: 13466 - components: - - type: Transform - pos: 19.36564,-3.2383914 - parent: 2 -- proto: RubberStampDenied - entities: - - uid: 13467 - components: - - type: Transform - pos: -8.056363,-15.556316 - parent: 2 - - uid: 13468 - components: - - type: Transform - pos: 19.64689,-3.2488155 - parent: 2 -- proto: SalvageCanisterSpawner - entities: - - uid: 14149 - components: - - type: Transform - pos: 6.5,-35.5 - parent: 2 - - uid: 14150 - components: - - type: Transform - pos: 7.5,-35.5 - parent: 2 -- proto: SalvageMagnet - entities: - - uid: 12576 - components: - - type: Transform - pos: 20.5,-45.5 - parent: 2 -- proto: SawImprov - entities: - - uid: 13472 - components: - - type: Transform - pos: -38.408813,-22.660835 - parent: 2 -- proto: Scalpel - entities: - - uid: 13473 - components: - - type: Transform - pos: -40.603756,39.604465 - parent: 2 - - uid: 13474 - components: - - type: Transform - pos: 28.528358,18.75126 - parent: 2 -- proto: Screen - entities: - - uid: 664 - components: - - type: Transform - pos: 17.5,9.5 - parent: 2 - - uid: 5940 - components: - - type: Transform - pos: -53.5,-7.5 - parent: 2 - - uid: 5950 - components: - - type: Transform - pos: -33.5,31.5 - parent: 2 - - uid: 6094 - components: - - type: Transform - pos: -13.5,8.5 - parent: 2 - - uid: 6137 - components: - - type: Transform - pos: -48.5,31.5 - parent: 2 - - uid: 7113 - components: - - type: Transform - pos: -8.5,40.5 - parent: 2 - - uid: 7152 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 2 - - uid: 7153 - components: - - type: Transform - pos: 32.5,-17.5 - parent: 2 - - uid: 7348 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 2 - - uid: 11521 - components: - - type: Transform - pos: -6.5,28.5 - parent: 2 - - uid: 12110 - components: - - type: Transform - pos: -51.5,18.5 - parent: 2 - - uid: 12259 - components: - - type: Transform - pos: -51.5,14.5 - parent: 2 - - uid: 13918 - components: - - type: Transform - pos: 2.5,5.5 - parent: 2 - - uid: 16349 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 16350 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 2 - - uid: 16357 - components: - - type: Transform - pos: -30.5,21.5 - parent: 2 - - uid: 17425 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 2 - - uid: 17439 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 2 -- proto: Screwdriver - entities: - - uid: 13475 - components: - - type: Transform - pos: -44.492104,49.61668 - parent: 2 - - uid: 13476 - components: - - type: Transform - pos: 43.401894,13.602428 - parent: 2 - - uid: 13477 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.685566,26.819038 - parent: 2 - - uid: 13478 - components: - - type: Transform - pos: 9.434161,21.357351 - parent: 2 - - uid: 13479 - components: - - type: Transform - pos: -22.25804,-79.09148 - parent: 2 - - uid: 13480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.36143,-17.800941 - parent: 2 - - uid: 13481 - components: - - type: Transform - pos: -40.520424,40.344563 - parent: 2 -- proto: SecBreachingHammer - entities: - - uid: 13482 - components: - - type: Transform - pos: -44.37972,-6.4715266 - parent: 2 -- proto: SecurityTechFab - entities: - - uid: 13483 - components: - - type: Transform - pos: -43.5,1.5 - parent: 2 -- proto: SeedExtractor - entities: - - uid: 13484 - components: - - type: Transform - pos: -21.5,7.5 - parent: 2 -- proto: ShardGlass - entities: - - uid: 13485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.596,16.519693 - parent: 2 - - uid: 13486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.893677,18.004068 - parent: 2 - - uid: 13487 - components: - - type: Transform - pos: 59.757862,14.74235 - parent: 2 - - uid: 13488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.816467,8.275618 - parent: 2 - - uid: 13489 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 59.15228,3.900022 - parent: 2 - - uid: 13490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.382828,7.317991 - parent: 2 - - uid: 13491 - components: - - type: Transform - pos: -34.57097,61.620876 - parent: 2 - - uid: 13492 - components: - - type: Transform - pos: -50.41144,57.145058 - parent: 2 - - uid: 13493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.63749,58.219276 - parent: 2 - - uid: 13494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.703537,56.598183 - parent: 2 - - uid: 13495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.04307,58.492714 - parent: 2 - - uid: 13496 - components: - - type: Transform - pos: -48.926792,61.148964 - parent: 2 - - uid: 13497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.738884,62.16459 - parent: 2 - - uid: 13498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.750977,64.78176 - parent: 2 - - uid: 13499 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.387257,66.246605 - parent: 2 - - uid: 13500 - components: - - type: Transform - pos: -44.80493,64.91848 - parent: 2 - - uid: 13501 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.26985,65.465355 - parent: 2 - - uid: 13502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.919876,65.97317 - parent: 2 - - uid: 13503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.356083,64.391136 - parent: 2 - - uid: 13504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.024918,60.800564 - parent: 2 - - uid: 13505 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.450966,62.48025 - parent: 2 - - uid: 13506 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.567245,57.36386 - parent: 2 - - uid: 13507 - components: - - type: Transform - pos: -39.78678,56.73886 - parent: 2 - - uid: 13508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.946777,58.359955 - parent: 2 - - uid: 13509 - components: - - type: Transform - pos: 40.9584,4.7919416 - parent: 2 - - uid: 13510 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.418865,16.50159 - parent: 2 - - uid: 13511 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.358456,40.470463 - parent: 2 -- proto: SheetGlass - entities: - - uid: 13512 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.456774,-42.462822 - parent: 2 - - uid: 13513 - components: - - type: Transform - pos: 22.5,-11.5 - parent: 2 - - uid: 13514 - components: - - type: Transform - pos: -36.5,25.5 - parent: 2 - - uid: 13515 - components: - - type: Transform - pos: -14.5,-24.5 - parent: 2 -- proto: SheetGlass10 - entities: - - uid: 13516 - components: - - type: Transform - pos: -42.71093,39.51951 - parent: 2 - - uid: 17899 - components: - - type: Transform - pos: -39.76288,-31.370575 - parent: 2 -- proto: SheetPlasma - entities: - - uid: 13517 - components: - - type: Transform - pos: -44.465656,44.540848 - parent: 2 - - uid: 13518 - components: - - type: Transform - pos: -2.6182039,-28.469719 - parent: 2 - - type: Stack - count: 10 - - type: Item - size: 10 -- proto: SheetPlasma1 - entities: - - uid: 13519 - components: - - type: Transform - pos: 17.551308,13.414032 - parent: 2 -- proto: SheetPlasteel - entities: - - uid: 13520 - components: - - type: Transform - pos: -14.5,-23.5 - parent: 2 -- proto: SheetPlastic - entities: - - uid: 13521 - components: - - type: Transform - pos: 20.5,-11.5 - parent: 2 - - uid: 13522 - components: - - type: Transform - pos: -14.5,-21.5 - parent: 2 - - uid: 13523 - components: - - type: Transform - pos: -35.5,25.5 - parent: 2 -- proto: SheetPlastic1 - entities: - - uid: 13524 - components: - - type: Transform - pos: -18.274788,30.116554 - parent: 2 - - uid: 13525 - components: - - type: Transform - pos: 15.062635,30.356768 - parent: 2 - - uid: 13526 - components: - - type: Transform - pos: 24.375921,28.403645 - parent: 2 - - uid: 13527 - components: - - type: Transform - pos: 39.844673,5.9532356 - parent: 2 -- proto: SheetRPGlass - entities: - - uid: 17778 - components: - - type: Transform - pos: -54.490105,37.557735 - parent: 2 - - type: Stack - count: 5 -- proto: SheetSteel - entities: - - uid: 13528 - components: - - type: Transform - pos: -6.512475,-42.389595 - parent: 2 - - uid: 13529 - components: - - type: Transform - pos: -34.5,25.5 - parent: 2 - - uid: 13530 - components: - - type: Transform - pos: -18.496037,-42.552208 - parent: 2 - - uid: 13531 - components: - - type: Transform - pos: 21.5,-11.5 - parent: 2 - - uid: 13532 - components: - - type: Transform - pos: 8.547893,9.674978 - parent: 2 - - type: Stack - count: 15 - - type: Item - size: 15 - - uid: 13533 - components: - - type: Transform - pos: -14.5,-22.5 - parent: 2 - - uid: 13534 - components: - - type: Transform - pos: 12.552183,-10.534737 - parent: 2 - - uid: 13535 - components: - - type: Transform - pos: -0.5,27.5 - parent: 2 - - type: Stack - count: 10 - - type: Item - size: 10 -- proto: SheetSteel1 - entities: - - uid: 13536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.464287,32.544342 - parent: 2 - - uid: 13537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.3126,34.426918 - parent: 2 - - uid: 13538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.847466,46.46159 - parent: 2 - - uid: 13539 - components: - - type: Transform - pos: -50.59335,62.34951 - parent: 2 - - uid: 13540 - components: - - type: Transform - pos: -32.264744,55.757713 - parent: 2 -- proto: SheetSteel10 - entities: - - uid: 13541 - components: - - type: Transform - pos: -43.440098,39.540356 - parent: 2 - - uid: 17900 - components: - - type: Transform - pos: -39.403503,-31.47995 - parent: 2 -- proto: SheetUranium - entities: - - uid: 13542 - components: - - type: Transform - pos: -3.473349,-28.465164 - parent: 2 - - type: Stack - count: 10 - - type: Item - size: 10 -- proto: Shiv - entities: - - uid: 12169 - components: - - type: Transform - parent: 12168 - - type: Physics - canCollide: False -- proto: ShowcaseRobot - entities: - - uid: 13544 - components: - - type: Transform - pos: -26.5,43.5 - parent: 2 - - uid: 13545 - components: - - type: Transform - pos: -14.5,-77.5 - parent: 2 - - uid: 13546 - components: - - type: Transform - pos: -14.5,-75.5 - parent: 2 - - uid: 13547 - components: - - type: Transform - pos: -3.5,-76.5 - parent: 2 -- proto: ShowcaseRobotAntique - entities: - - uid: 13548 - components: - - type: Transform - pos: -7.5,-73.5 - parent: 2 -- proto: ShowcaseRobotMarauder - entities: - - uid: 13549 - components: - - type: Transform - pos: -7.5,-79.5 - parent: 2 -- proto: ShowcaseRobotWhite - entities: - - uid: 13550 - components: - - type: Transform - pos: -17.5,-72.5 - parent: 2 -- proto: ShuttersNormal - entities: - - uid: 13551 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13602 - - uid: 13552 - components: - - type: Transform - pos: 27.5,3.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13602 - - uid: 13553 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,7.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13602 -- proto: ShuttersNormalOpen - entities: - - uid: 13554 - components: - - type: Transform - pos: -50.5,-4.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13608 - - uid: 13555 - components: - - type: Transform - pos: -50.5,-2.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13608 - - uid: 13556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-76.5 - parent: 2 - - uid: 13557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13607 - - uid: 13558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-5.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13607 - - uid: 13559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13610 - - uid: 13560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13610 - - uid: 13561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-13.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13610 -- proto: ShuttersRadiation - entities: - - uid: 3898 - components: - - type: Transform - pos: -30.5,-44.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17814 - - uid: 12740 - components: - - type: Transform - pos: -29.5,-44.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17814 - - uid: 13562 - components: - - type: Transform - pos: -23.5,-44.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13600 - - uid: 13563 - components: - - type: Transform - pos: -23.5,-32.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13601 - - uid: 13564 - components: - - type: Transform - pos: -23.5,-33.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13601 - - uid: 13565 - components: - - type: Transform - pos: -23.5,-43.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13600 - - uid: 13566 - components: - - type: Transform - pos: -30.5,-29.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13603 - - uid: 13567 - components: - - type: Transform - pos: -32.5,-29.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13603 - - uid: 17505 - components: - - type: Transform - pos: -32.5,-44.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17814 - - uid: 17508 - components: - - type: Transform - pos: -33.5,-44.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17814 - - uid: 17509 - components: - - type: Transform - pos: -31.5,-44.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17814 - - uid: 17588 - components: - - type: Transform - pos: -33.5,-32.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17812 - - uid: 17589 - components: - - type: Transform - pos: -32.5,-32.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17812 - - uid: 17590 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17812 - - uid: 17591 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17812 - - uid: 17592 - components: - - type: Transform - pos: -29.5,-32.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17812 - - uid: 17593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-36.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17813 - - uid: 17594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-37.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17813 - - uid: 17595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-38.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17813 - - uid: 17596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-39.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17813 - - uid: 17597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-40.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17813 - - uid: 17766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-40.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17815 - - uid: 17767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-39.5 - parent: 2 - - type: DeviceLinkSink - links: - - 17654 - - 17815 -- proto: ShuttersRadiationOpen - entities: - - uid: 13568 - components: - - type: Transform - pos: -19.5,-35.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13596 - - 13597 - - uid: 13569 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13596 - - 13597 - - uid: 13570 - components: - - type: Transform - pos: -19.5,-41.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13596 - - 13597 - - uid: 13571 - components: - - type: Transform - pos: -17.5,-39.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13596 - - 13597 - - uid: 13572 - components: - - type: Transform - pos: -24.5,-36.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13606 - - uid: 13573 - components: - - type: Transform - pos: -24.5,-37.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13606 - - uid: 13574 - components: - - type: Transform - pos: -24.5,-38.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13606 - - uid: 13575 - components: - - type: Transform - pos: -24.5,-39.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13606 - - uid: 13576 - components: - - type: Transform - pos: -24.5,-40.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13606 - - uid: 13577 - components: - - type: Transform - pos: -56.5,39.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13578 - components: - - type: Transform - pos: -53.5,42.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13579 - components: - - type: Transform - pos: -55.5,42.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13580 - components: - - type: Transform - pos: -56.5,41.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13581 - components: - - type: Transform - pos: -56.5,40.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13582 - components: - - type: Transform - pos: -54.5,42.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13583 - components: - - type: Transform - pos: -52.5,39.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13584 - components: - - type: Transform - pos: -54.5,38.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13585 - components: - - type: Transform - pos: -55.5,38.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13586 - components: - - type: Transform - pos: -52.5,40.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 - - uid: 13587 - components: - - type: Transform - pos: -52.5,41.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13604 -- proto: ShuttersWindow - entities: - - uid: 13588 - components: - - type: Transform - pos: -14.5,-43.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13599 - - uid: 13589 - components: - - type: Transform - pos: -14.5,-44.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13599 - - uid: 13590 - components: - - type: Transform - pos: -14.5,-45.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13599 -- proto: ShuttersWindowOpen - entities: - - uid: 13591 - components: - - type: Transform - pos: 19.5,-2.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13607 - - uid: 13592 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 2 - - type: DeviceLinkSink - links: - - 13607 -- proto: SignalButton - entities: - - uid: 12262 - components: - - type: Transform - pos: 1.5,41.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 682: - - Pressed: Toggle - 681: - - Pressed: Toggle - 671: - - Pressed: Toggle - - uid: 13593 - components: - - type: MetaData - name: blast door button - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-45.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 679: - - Pressed: Toggle - 680: - - Pressed: Toggle - - uid: 13594 - components: - - type: Transform - pos: -11.5,40.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 697: - - Pressed: Toggle - 689: - - Pressed: Toggle - 687: - - Pressed: Toggle - 691: - - Pressed: Toggle - 694: - - Pressed: Toggle - 692: - - Pressed: Toggle - 685: - - Pressed: Toggle - 693: - - Pressed: Toggle - 696: - - Pressed: Toggle - 686: - - Pressed: Toggle - 690: - - Pressed: Toggle - 688: - - Pressed: Toggle - 695: - - Pressed: Toggle - 684: - - Pressed: Toggle - - uid: 13595 - components: - - type: Transform - pos: -50.5,48.5 - parent: 2 -- proto: SignalButtonDirectional - entities: - - uid: 13596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-38.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13569: - - Pressed: Toggle - 13571: - - Pressed: Toggle - 13568: - - Pressed: Toggle - 13570: - - Pressed: Toggle - - uid: 13597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-38.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13569: - - Pressed: Toggle - 13571: - - Pressed: Toggle - 13570: - - Pressed: Toggle - 13568: - - Pressed: Toggle - - uid: 13598 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-77.5 - parent: 2 -- proto: SignalSwitchDirectional - entities: - - uid: 13599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-42.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13588: - - On: Open - - Off: Close - 13589: - - On: Open - - Off: Close - 13590: - - On: Open - - Off: Close - - uid: 13600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-42.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13562: - - On: Open - - Off: Close - 13565: - - On: Open - - Off: Close - - uid: 13601 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-34.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13564: - - On: Open - - Off: Close - 13563: - - On: Open - - Off: Close - - uid: 13602 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13552: - - On: Open - - Off: Close - 13551: - - On: Open - - Off: Close - 13553: - - On: Open - - Off: Close - - uid: 13603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-28.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13567: - - On: Open - - Off: Close - 13566: - - On: Open - - Off: Close - - uid: 13604 - components: - - type: Transform - pos: -56.5,38.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13585: - - On: Close - - Off: Open - 13584: - - On: Close - - Off: Open - 13577: - - On: Close - - Off: Open - 13581: - - On: Close - - Off: Open - 13580: - - On: Close - - Off: Open - 13579: - - On: Close - - Off: Open - 13582: - - On: Close - - Off: Open - 13578: - - On: Close - - Off: Open - 13587: - - On: Close - - Off: Open - 13586: - - On: Close - - Off: Open - 13583: - - On: Close - - Off: Open - - uid: 13605 - components: - - type: Transform - pos: -52.5,38.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 675: - - On: Open - - Off: Close - - uid: 13606 - components: - - type: Transform - pos: -23.5,-35.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13572: - - On: Close - - Off: Open - 13573: - - On: Close - - Off: Open - 13574: - - On: Close - - Off: Open - 13575: - - On: Close - - Off: Open - 13576: - - On: Close - - Off: Open - - uid: 13607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-7.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13558: - - On: Close - - Off: Open - 13557: - - On: Close - - Off: Open - 13591: - - On: Close - - Off: Open - 13592: - - On: Close - - Off: Open - - uid: 13608 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-3.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13554: - - On: Close - - Off: Open - 13555: - - On: Close - - Off: Open - - uid: 13609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-33.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6195: - - On: Forward - - Off: Off - 6206: - - On: Forward - - Off: Off - 6214: - - On: Forward - - Off: Off - 674: - - On: Open - - Off: Close - 6217: - - On: Forward - - Off: Off - 676: - - On: Open - - Off: Close - 6202: - - On: Forward - - Off: Off - 6216: - - On: Forward - - Off: Off - 678: - - On: Open - - Off: Close - 6205: - - On: Forward - - Off: Off - 6207: - - On: Forward - - Off: Off - 677: - - On: Open - - Off: Close - 6209: - - On: Forward - - Off: Off - - uid: 13610 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13559: - - On: Close - - Off: Open - 13560: - - On: Close - - Off: Open - 13561: - - On: Close - - Off: Open - - uid: 17812 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-32.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17588: - - On: Open - - Off: Close - 17589: - - On: Open - - Off: Close - 17590: - - On: Open - - Off: Close - 17591: - - On: Open - - Off: Close - 17592: - - On: Open - - Off: Close - - uid: 17813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-41.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17597: - - On: Open - - Off: Close - 17596: - - On: Open - - Off: Close - 17595: - - On: Open - - Off: Close - 17594: - - On: Open - - Off: Close - 17593: - - On: Open - - Off: Close - - uid: 17814 - components: - - type: Transform - pos: -28.5,-44.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12740: - - On: Open - - Off: Close - 3898: - - On: Open - - Off: Close - 17509: - - On: Open - - Off: Close - 17505: - - On: Open - - Off: Close - 17508: - - On: Open - - Off: Close - - uid: 17815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-41.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 17766: - - On: Open - - Off: Close - 17767: - - On: Open - - Off: Close -- proto: SignAnomaly - entities: - - uid: 13611 - components: - - type: Transform - pos: -51.5,37.5 - parent: 2 -- proto: SignAnomaly2 - entities: - - uid: 13612 - components: - - type: Transform - pos: -38.5,38.5 - parent: 2 -- proto: SignArmory - entities: - - uid: 13613 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 2 -- proto: SignAtmos - entities: - - uid: 13614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-36.5 - parent: 2 - - uid: 13615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-36.5 - parent: 2 -- proto: SignBar - entities: - - uid: 13616 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 2 - - uid: 13617 - components: - - type: Transform - pos: -2.5,32.5 - parent: 2 - - uid: 13618 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 2 -- proto: SignBridge - entities: - - uid: 13619 - components: - - type: Transform - pos: -21.5,34.5 - parent: 2 - - uid: 13620 - components: - - type: Transform - pos: -4.5,28.5 - parent: 2 -- proto: SignCanisters - entities: - - uid: 13621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-35.5 - parent: 2 - - uid: 13622 - components: - - type: Transform - pos: 8.5,-39.5 - parent: 2 - - uid: 13623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 2 -- proto: SignCargo - entities: - - uid: 13624 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 2 - - uid: 13625 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 2 -- proto: SignChapel - entities: - - uid: 13626 - components: - - type: Transform - pos: -25.5,27.5 - parent: 2 -- proto: SignCloning - entities: - - uid: 13627 - components: - - type: MetaData - desc: A sign indicating the genetics lab. - name: genetics sign - - type: Transform - pos: 21.5,20.5 - parent: 2 -- proto: SignCryogenics - entities: - - uid: 13628 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 -- proto: SignCryogenicsMed - entities: - - uid: 13629 - components: - - type: Transform - pos: 18.5,17.5 - parent: 2 - - uid: 13630 - components: - - type: Transform - pos: 16.5,17.5 - parent: 2 -- proto: SignDanger - entities: - - uid: 13631 - components: - - type: Transform - pos: -41.5,4.5 - parent: 2 -- proto: SignDirectionalBridge - entities: - - uid: 13632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 2 - - uid: 13633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,2.5 - parent: 2 - - uid: 13634 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,9.5 - parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 13635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-7.5 - parent: 2 - - uid: 13636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-7.5 - parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 13637 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.503876,4.298375 - parent: 2 -- proto: SignDirectionalChemistry - entities: - - uid: 13638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.487395,9.282801 - parent: 2 -- proto: SignDirectionalCryo - entities: - - uid: 6179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,8.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: -22.500383,24.288881 - parent: 2 - - uid: 11811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.503588,16.700665 - parent: 2 - - uid: 11891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.498802,16.716185 - parent: 2 - - uid: 12073 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,17.5 - parent: 2 - - uid: 16360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5009322,-1.287831 - parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 13641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,2.5 - parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 13642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.497333,0.28726125 - parent: 2 - - uid: 13643 - components: - - type: Transform - pos: -16.504673,2.2774227 - parent: 2 - - uid: 13644 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.495766,2.715937 - parent: 2 - - uid: 13645 - components: - - type: Transform - pos: -23.5,8.5 - parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 13646 - components: - - type: Transform - pos: -22.5,24.5 - parent: 2 - - uid: 13647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.496965,2.286934 - parent: 2 - - uid: 13648 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-20.5 - parent: 2 - - uid: 13649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,16.5 - parent: 2 - - uid: 13650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-6.5 - parent: 2 - - uid: 13651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 2 - - uid: 13652 - components: - - type: Transform - pos: -43.5,24.5 - parent: 2 - - uid: 13653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,16.5 - parent: 2 - - uid: 13654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,8.5 - parent: 2 - - uid: 13655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 2 - - uid: 13656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,2.5 - parent: 2 - - uid: 13657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 2 - - uid: 13658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 13659 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 2 - - uid: 13660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 2 -- proto: SignDirectionalHydro - entities: - - uid: 13661 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5081036,2.308813 - parent: 2 -- proto: SignDirectionalJanitor - entities: - - uid: 13662 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5135782,9.714039 - parent: 2 - - uid: 13663 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.497333,2.726455 - parent: 2 - - uid: 13664 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.503315,2.2795773 - parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 13665 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.48825,4.720544 - parent: 2 -- proto: SignDirectionalLogistics - entities: - - uid: 13666 - components: - - type: Transform - pos: 3.5016003,0.28885967 - parent: 2 - - uid: 13667 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.50161,2.7161162 - parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 13668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.4960685,0.7113888 - parent: 2 - - uid: 13669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.486547,2.724739 - parent: 2 -- proto: SignDirectionalSalvage - entities: - - uid: 13670 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 13671 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.496443,2.7158065 - parent: 2 - - uid: 13672 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.497333,0.72506523 - parent: 2 - - uid: 13673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.503878,8.715101 - parent: 2 -- proto: SignDirectionalSec - entities: - - uid: 13674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 2 - - uid: 13675 - components: - - type: Transform - pos: -23.503878,8.2929325 - parent: 2 -- proto: SignDirectionalSolar - entities: - - uid: 13676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,2.5 - parent: 2 -- proto: SignDirectionalWash - entities: - - uid: 13677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,8.5 - parent: 2 - - uid: 13678 - components: - - type: Transform - pos: -29.5,13.5 - parent: 2 - - uid: 13679 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 2 - - uid: 13680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-16.5 - parent: 2 - - uid: 13681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-16.5 - parent: 2 - - uid: 13682 - components: - - type: Transform - pos: 39.48014,2.2781317 - parent: 2 -- proto: SignDisposalSpace - entities: - - uid: 13683 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - - uid: 13684 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 -- proto: SignDojo - entities: - - uid: 13685 - components: - - type: Transform - pos: 35.5,2.5 - parent: 2 -- proto: SignDrones - entities: - - uid: 13686 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 2 -- proto: SignElectrical - entities: - - uid: 13687 - components: - - type: Transform - pos: -15.5,-89.5 - parent: 2 - - uid: 13688 - components: - - type: Transform - pos: -66.5,-4.5 - parent: 2 - - uid: 13689 - components: - - type: Transform - pos: 3.5,-66.5 - parent: 2 - - uid: 13690 - components: - - type: Transform - pos: 3.5,-84.5 - parent: 2 - - uid: 13691 - components: - - type: Transform - pos: -39.5,-80.5 - parent: 2 - - uid: 13692 - components: - - type: Transform - pos: -33.5,-66.5 - parent: 2 - - uid: 13693 - components: - - type: Transform - pos: -64.5,-20.5 - parent: 2 - - uid: 13694 - components: - - type: Transform - pos: -65.5,6.5 - parent: 2 - - uid: 13695 - components: - - type: Transform - pos: -46.5,-23.5 - parent: 2 - - uid: 13697 - components: - - type: Transform - pos: -41.5,-30.5 - parent: 2 - - uid: 13698 - components: - - type: Transform - pos: -39.5,-48.5 - parent: 2 - - uid: 13699 - components: - - type: Transform - pos: -24.5,-48.5 - parent: 2 - - uid: 13700 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 2 - - uid: 13701 - components: - - type: Transform - pos: -39.5,-28.5 - parent: 2 -- proto: SignEngineering - entities: - - uid: 13702 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 2 - - uid: 13703 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 2 -- proto: SignEscapePods - entities: - - uid: 13704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,28.5 - parent: 2 - - uid: 13705 - components: - - type: Transform - pos: 42.5,7.5 - parent: 2 - - uid: 13706 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,31.5 - parent: 2 - - uid: 13707 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,35.5 - parent: 2 - - uid: 13708 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 - parent: 2 - - uid: 13709 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,42.5 - parent: 2 - - uid: 13710 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,27.5 - parent: 2 - - uid: 13711 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 2 -- proto: SignEVA - entities: - - uid: 13714 - components: - - type: MetaData - desc: A sign indicating an EVA suit storage room. EVA equipment is found here. - - type: Transform - pos: -19.5,-21.5 - parent: 2 -- proto: SignFire - entities: - - uid: 13715 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 -- proto: SignGravity - entities: - - uid: 13716 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 2 -- proto: SignHead - entities: - - uid: 13717 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 2 - - uid: 13718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-2.5 - parent: 2 -- proto: SignHydro3 - entities: - - uid: 13719 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 -- proto: SignInterrogation - entities: - - uid: 13720 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 2 -- proto: SignLibrary - entities: - - uid: 13721 - components: - - type: Transform - pos: -45.5,24.5 - parent: 2 -- proto: SignMail - entities: - - uid: 13722 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 -- proto: SignMedical - entities: - - uid: 13723 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 -- proto: SignMorgue - entities: - - uid: 13724 - components: - - type: Transform - pos: 24.5,18.5 - parent: 2 -- proto: SignNosmoking - entities: - - uid: 13725 - components: - - type: Transform - pos: -34.5,1.5 - parent: 2 - - uid: 13726 - components: - - type: Transform - pos: 16.5,9.5 - parent: 2 -- proto: SignPlaque - entities: - - uid: 13727 - components: - - type: Transform - pos: 2.5,18.5 - parent: 2 -- proto: SignPrison - entities: - - uid: 13728 - components: - - type: Transform - pos: -50.5,-10.5 - parent: 2 -- proto: SignRadiation - entities: - - uid: 13729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-29.5 - parent: 2 - - uid: 13730 - components: - - type: Transform - pos: -30.5,-47.5 - parent: 2 - - uid: 13731 - components: - - type: Transform - pos: -33.5,-47.5 - parent: 2 - - uid: 13732 - components: - - type: Transform - pos: -40.5,-36.5 - parent: 2 - - uid: 13733 - components: - - type: Transform - pos: -40.5,-40.5 - parent: 2 - - uid: 13734 - components: - - type: Transform - pos: -21.5,-41.5 - parent: 2 - - uid: 13735 - components: - - type: Transform - pos: -21.5,-35.5 - parent: 2 - - uid: 13736 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-29.5 - parent: 2 -- proto: SignRadiationMed - entities: - - uid: 13737 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 2 - - uid: 13740 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-29.5 - parent: 2 - - uid: 17647 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-45.5 - parent: 2 - - uid: 17663 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 2 - - uid: 17664 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 2 -- proto: SignRobo - entities: - - uid: 13741 - components: - - type: Transform - pos: -40.5,38.5 - parent: 2 - - uid: 13742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-75.5 - parent: 2 - - uid: 13743 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-75.5 - parent: 2 - - uid: 13744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-77.5 - parent: 2 - - uid: 13745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-77.5 - parent: 2 -- proto: SignScience - entities: - - uid: 13746 - components: - - type: Transform - pos: -39.5,24.5 - parent: 2 - - uid: 13747 - components: - - type: Transform - pos: -25.5,24.5 - parent: 2 -- proto: SignSec - entities: - - uid: 13748 - components: - - type: MetaData - desc: A sign indicating the detective's room. - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,3.5 - parent: 2 - - uid: 13749 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 2 - - uid: 13750 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 2 -- proto: SignSecureMedRed - entities: - - uid: 13751 - components: - - type: Transform - pos: -42.5,-3.5 - parent: 2 - - uid: 13752 - components: - - type: Transform - pos: -40.5,-3.5 - parent: 2 -- proto: SignSecurity - entities: - - uid: 13753 - components: - - type: Transform - pos: -43.5,-7.5 - parent: 2 -- proto: SignSmoking - entities: - - uid: 13754 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 -- proto: SignSpace - entities: - - uid: 13755 - components: - - type: Transform - pos: 9.5,-41.5 - parent: 2 -- proto: SignSurgery - entities: - - uid: 13756 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - uid: 13757 - components: - - type: Transform - pos: -39.5,-22.5 - parent: 2 -- proto: SignTelecomms - entities: - - uid: 13758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-75.5 - parent: 2 - - uid: 13759 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-77.5 - parent: 2 - - uid: 13760 - components: - - type: Transform - pos: -23.5,-75.5 - parent: 2 - - uid: 13761 - components: - - type: Transform - pos: -23.5,-77.5 - parent: 2 -- proto: SignToolStorage - entities: - - uid: 13762 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 2 - - uid: 13763 - components: - - type: Transform - pos: -14.5,-46.5 - parent: 2 -- proto: SignToxins - entities: - - uid: 13764 - components: - - type: Transform - pos: -51.5,32.5 - parent: 2 -- proto: SignVirology - entities: - - uid: 13765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 2 -- proto: Sink - entities: - - uid: 13767 - components: - - type: Transform - pos: -27.5,12.5 - parent: 2 - - uid: 13768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-12.5 - parent: 2 - - uid: 13769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,11.5 - parent: 2 -- proto: SinkStemlessWater - entities: - - uid: 13770 - components: - - type: Transform - pos: -52.5,-6.5 - parent: 2 - - uid: 13771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,0.5 - parent: 2 -- proto: SinkWide - entities: - - uid: 13772 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 2 - - uid: 13773 - components: - - type: Transform - pos: -8.5,12.5 - parent: 2 - - uid: 13774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,15.5 - parent: 2 - - uid: 13775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-14.5 - parent: 2 - - uid: 13776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 2 -- proto: SMESBasic - entities: - - uid: 13777 - components: - - type: MetaData - name: AME/generator SMES 2 - - type: Transform - pos: -2.5,-24.5 - parent: 2 - - uid: 13778 - components: - - type: MetaData - name: AME/generator SMES 1 - - type: Transform - pos: -3.5,-24.5 - parent: 2 - - uid: 13779 - components: - - type: MetaData - name: supermatter SMES 2 - - type: Transform - pos: -20.5,-43.5 - parent: 2 - - uid: 13780 - components: - - type: MetaData - name: supermatter SMES 1 - - type: Transform - pos: -20.5,-33.5 - parent: 2 - - uid: 13781 - components: - - type: MetaData - name: Solars, North SMES - - type: Transform - pos: -44.5,50.5 - parent: 2 - - uid: 13782 - components: - - type: MetaData - name: Solars, East SMES - - type: Transform - pos: 45.5,12.5 - parent: 2 -- proto: SMESMachineCircuitboard - entities: - - uid: 13783 - components: - - type: Transform - pos: -10.560801,-26.621416 - parent: 2 -- proto: SmokingPipeFilledTobacco - entities: - - uid: 13784 - components: - - type: Transform - pos: -34.66471,32.488693 - parent: 2 -- proto: soda_dispenser - entities: - - uid: 13785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 2 - - uid: 13786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-10.5 - parent: 2 - - uid: 13787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,34.5 - parent: 2 - - uid: 13788 - components: - - type: Transform - pos: -60.5,2.5 - parent: 2 -- proto: SolarAssembly - entities: - - uid: 13789 - components: - - type: Transform - pos: 52.5,14.5 - parent: 2 - - uid: 13790 - components: - - type: Transform - pos: 50.5,16.5 - parent: 2 - - uid: 13791 - components: - - type: Transform - pos: 54.5,18.5 - parent: 2 - - uid: 13792 - components: - - type: Transform - pos: 56.5,16.5 - parent: 2 - - uid: 13793 - components: - - type: Transform - pos: 58.5,16.5 - parent: 2 - - uid: 13794 - components: - - type: Transform - pos: 60.5,18.5 - parent: 2 - - uid: 13795 - components: - - type: Transform - pos: 60.5,16.5 - parent: 2 - - uid: 13796 - components: - - type: Transform - pos: 60.5,7.5 - parent: 2 - - uid: 13797 - components: - - type: Transform - pos: 58.5,6.5 - parent: 2 - - uid: 13798 - components: - - type: Transform - pos: 58.5,4.5 - parent: 2 - - uid: 13799 - components: - - type: Transform - pos: 54.5,5.5 - parent: 2 - - uid: 13800 - components: - - type: Transform - pos: 56.5,7.5 - parent: 2 - - uid: 13801 - components: - - type: Transform - pos: 50.5,8.5 - parent: 2 - - uid: 13802 - components: - - type: Transform - pos: 52.5,5.5 - parent: 2 - - uid: 13803 - components: - - type: Transform - pos: -50.5,56.5 - parent: 2 - - uid: 13804 - components: - - type: Transform - pos: -49.5,56.5 - parent: 2 - - uid: 13805 - components: - - type: Transform - pos: -47.5,58.5 - parent: 2 - - uid: 13806 - components: - - type: Transform - pos: -47.5,60.5 - parent: 2 - - uid: 13807 - components: - - type: Transform - pos: -48.5,60.5 - parent: 2 - - uid: 13808 - components: - - type: Transform - pos: -47.5,64.5 - parent: 2 - - uid: 13809 - components: - - type: Transform - pos: -49.5,66.5 - parent: 2 - - uid: 13810 - components: - - type: Transform - pos: -50.5,60.5 - parent: 2 - - uid: 13811 - components: - - type: Transform - pos: -36.5,62.5 - parent: 2 - - uid: 13812 - components: - - type: Transform - pos: -39.5,60.5 - parent: 2 - - uid: 13813 - components: - - type: Transform - pos: -39.5,66.5 - parent: 2 - - uid: 13814 - components: - - type: Transform - pos: -34.5,64.5 - parent: 2 -- proto: SolarPanel - entities: - - uid: 13815 - components: - - type: Transform - pos: 58.5,8.5 - parent: 2 - - uid: 13816 - components: - - type: Transform - pos: 56.5,5.5 - parent: 2 - - uid: 13817 - components: - - type: Transform - pos: 60.5,17.5 - parent: 2 - - uid: 13818 - components: - - type: Transform - pos: 50.5,14.5 - parent: 2 - - uid: 13819 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - uid: 13820 - components: - - type: Transform - pos: 52.5,16.5 - parent: 2 - - uid: 13821 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - - uid: 13822 - components: - - type: Transform - pos: 54.5,15.5 - parent: 2 - - uid: 13823 - components: - - type: Transform - pos: 50.5,17.5 - parent: 2 - - uid: 13824 - components: - - type: Transform - pos: 50.5,18.5 - parent: 2 - - uid: 13825 - components: - - type: Transform - pos: 54.5,14.5 - parent: 2 - - uid: 13826 - components: - - type: Transform - pos: 60.5,6.5 - parent: 2 - - uid: 13827 - components: - - type: Transform - pos: 60.5,4.5 - parent: 2 - - uid: 13828 - components: - - type: Transform - pos: 50.5,6.5 - parent: 2 - - uid: 13829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,62.5 - parent: 2 - - uid: 13830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,64.5 - parent: 2 - - uid: 13831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,62.5 - parent: 2 - - uid: 13832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,56.5 - parent: 2 - - uid: 13833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,58.5 - parent: 2 - - uid: 13834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,66.5 - parent: 2 - - uid: 13835 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,62.5 - parent: 2 - - uid: 13836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,58.5 - parent: 2 - - uid: 13837 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,58.5 - parent: 2 - - uid: 13838 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,58.5 - parent: 2 - - uid: 13839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,58.5 - parent: 2 - - uid: 13840 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,56.5 - parent: 2 - - uid: 13841 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,66.5 - parent: 2 - - uid: 13842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,66.5 - parent: 2 -- proto: SolarPanelBroken - entities: - - uid: 13843 - components: - - type: Transform - pos: 50.5,5.5 - parent: 2 - - uid: 13844 - components: - - type: Transform - pos: 50.5,4.5 - parent: 2 - - uid: 13845 - components: - - type: Transform - pos: 52.5,7.5 - parent: 2 - - uid: 13846 - components: - - type: Transform - pos: 54.5,6.5 - parent: 2 - - uid: 13847 - components: - - type: Transform - pos: 58.5,5.5 - parent: 2 - - uid: 13848 - components: - - type: Transform - pos: 56.5,4.5 - parent: 2 - - uid: 13849 - components: - - type: Transform - pos: 60.5,8.5 - parent: 2 - - uid: 13850 - components: - - type: Transform - pos: 60.5,14.5 - parent: 2 - - uid: 13851 - components: - - type: Transform - pos: 58.5,17.5 - parent: 2 - - uid: 13852 - components: - - type: Transform - pos: 58.5,18.5 - parent: 2 - - uid: 13853 - components: - - type: Transform - pos: 56.5,14.5 - parent: 2 - - uid: 13854 - components: - - type: Transform - pos: 54.5,16.5 - parent: 2 - - uid: 13855 - components: - - type: Transform - pos: 52.5,18.5 - parent: 2 - - uid: 13856 - components: - - type: Transform - pos: 50.5,15.5 - parent: 2 - - uid: 13857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,66.5 - parent: 2 - - uid: 13858 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,66.5 - parent: 2 - - uid: 13859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,66.5 - parent: 2 - - uid: 13860 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,64.5 - parent: 2 - - uid: 13861 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,64.5 - parent: 2 - - uid: 13862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,62.5 - parent: 2 - - uid: 13863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,60.5 - parent: 2 - - uid: 13864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,60.5 - parent: 2 - - uid: 13865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,58.5 - parent: 2 - - uid: 13866 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,58.5 - parent: 2 - - uid: 13867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,56.5 - parent: 2 - - uid: 13868 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,56.5 - parent: 2 - - uid: 13869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,62.5 - parent: 2 - - uid: 13870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,62.5 - parent: 2 - - uid: 13871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,62.5 - parent: 2 - - uid: 13872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,66.5 - parent: 2 - - uid: 13873 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,66.5 - parent: 2 - - uid: 13874 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,64.5 - parent: 2 - - uid: 13875 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,64.5 - parent: 2 - - uid: 13876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,64.5 - parent: 2 - - uid: 13877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,56.5 - parent: 2 - - uid: 13878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,58.5 - parent: 2 - - uid: 13879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,58.5 - parent: 2 - - uid: 13880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,56.5 - parent: 2 - - uid: 13881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,56.5 - parent: 2 - - uid: 13882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,56.5 - parent: 2 - - uid: 13883 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,58.5 - parent: 2 - - uid: 13884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,58.5 - parent: 2 -- proto: SolarTracker - entities: - - uid: 13885 - components: - - type: Transform - pos: 63.5,11.5 - parent: 2 - - uid: 13886 - components: - - type: Transform - pos: -42.5,68.5 - parent: 2 -- proto: SophicScribe - entities: - - uid: 13887 - components: - - type: Transform - pos: -30.5,32.5 - parent: 2 -- proto: SpaceCash1000 - entities: - - uid: 13888 - components: - - type: Transform - pos: -0.39021492,18.901426 - parent: 2 - - uid: 13889 - components: - - type: Transform - pos: -0.5777149,18.713926 - parent: 2 - - uid: 13890 - components: - - type: Transform - pos: -0.45271492,18.495176 - parent: 2 - - uid: 13891 - components: - - type: Transform - pos: -0.49958992,18.823301 - parent: 2 -- proto: SpaceVillainArcadeFilled - entities: - - uid: 13892 - components: - - type: Transform - pos: -49.5,-12.5 - parent: 2 -- proto: SpareIdCabinetFilled - entities: - - uid: 16973 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,32.5 - parent: 2 -- proto: SpawnMobBandito - entities: - - uid: 13893 - components: - - type: Transform - pos: -26.5,32.5 - parent: 2 - - uid: 13894 - components: - - type: Transform - pos: -35.5,43.5 - parent: 2 - - uid: 13895 - components: - - type: Transform - pos: -42.5,-18.5 - parent: 2 - - uid: 13896 - components: - - type: Transform - pos: 4.5,11.5 - parent: 2 -- proto: SpawnMobCatBingus - entities: - - uid: 13897 - components: - - type: Transform - pos: -35.5,13.5 - parent: 2 -- proto: SpawnMobCatException - entities: - - uid: 13898 - components: - - type: Transform - pos: -1.5,-30.5 - parent: 2 -- proto: SpawnMobCatGeneric - entities: - - uid: 13899 - components: - - type: Transform - pos: 9.5,27.5 - parent: 2 -- proto: SpawnMobCatRuntime - entities: - - uid: 13900 - components: - - type: Transform - pos: 9.5,17.5 - parent: 2 -- proto: SpawnMobCleanBot - entities: - - uid: 13901 - components: - - type: Transform - pos: -17.5,0.5 - parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 13902 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 2 -- proto: SpawnMobDrone - entities: - - uid: 13903 - components: - - type: Transform - pos: -10.5,-21.5 - parent: 2 - - uid: 13904 - components: - - type: Transform - pos: -11.5,-21.5 - parent: 2 - - uid: 13905 - components: - - type: Transform - pos: -12.5,-21.5 - parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 11904 - components: - - type: Transform - pos: 2.5,39.5 - parent: 2 -- proto: SpawnMobKangarooWillow - entities: - - uid: 13907 - components: - - type: Transform - pos: -48.5,39.5 - parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 13908 - components: - - type: Transform - pos: -37.5,-4.5 - parent: 2 -- proto: SpawnMobMedibot - entities: - - uid: 13909 - components: - - type: Transform - pos: 9.5,0.5 - parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 13910 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 13911 - components: - - type: Transform - pos: 26.5,20.5 - parent: 2 -- proto: SpawnMobShiva - entities: - - uid: 13912 - components: - - type: Transform - pos: -30.5,-15.5 - parent: 2 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 13913 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 13933 - components: - - type: Transform - pos: -1.5,-27.5 - parent: 2 - - uid: 13934 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 2 - - uid: 13935 - components: - - type: Transform - pos: 0.5,-28.5 - parent: 2 - - uid: 13936 - components: - - type: Transform - pos: 1.5,-28.5 - parent: 2 - - uid: 13937 - components: - - type: Transform - pos: -7.5,-39.5 - parent: 2 - - uid: 13938 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 2 - - uid: 13939 - components: - - type: Transform - pos: -1.5,-50.5 - parent: 2 - - uid: 13940 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 2 - - uid: 13941 - components: - - type: Transform - pos: 6.5,-39.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 13942 - components: - - type: Transform - pos: -13.5,-4.5 - parent: 2 - - uid: 13943 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 13944 - components: - - type: Transform - pos: -40.5,41.5 - parent: 2 -- proto: SpawnPointBotanist - entities: - - uid: 13945 - components: - - type: Transform - pos: -20.5,10.5 - parent: 2 - - uid: 13946 - components: - - type: Transform - pos: -19.5,9.5 - parent: 2 -- proto: SpawnPointBoxer - entities: - - uid: 13947 - components: - - type: Transform - pos: 34.5,7.5 - parent: 2 - - uid: 13948 - components: - - type: Transform - pos: 33.5,8.5 - parent: 2 - - uid: 13949 - components: - - type: Transform - pos: -44.5,26.5 - parent: 2 -- proto: SpawnPointCaptain - entities: - - uid: 13950 - components: - - type: Transform - pos: -10.5,35.5 - parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 13951 - components: - - type: Transform - pos: 20.5,-31.5 - parent: 2 - - uid: 13952 - components: - - type: Transform - pos: 16.5,-31.5 - parent: 2 - - uid: 13953 - components: - - type: Transform - pos: 19.5,-30.5 - parent: 2 - - uid: 13954 - components: - - type: Transform - pos: 15.5,-30.5 - parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 13955 - components: - - type: Transform - pos: -29.5,29.5 - parent: 2 -- proto: SpawnPointChef - entities: - - uid: 13956 - components: - - type: Transform - pos: -7.5,10.5 - parent: 2 - - uid: 13957 - components: - - type: Transform - pos: -8.5,11.5 - parent: 2 - - uid: 13958 - components: - - type: Transform - pos: -7.5,16.5 - parent: 2 - - uid: 13959 - components: - - type: Transform - pos: -8.5,16.5 - parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 13960 - components: - - type: Transform - pos: 15.5,11.5 - parent: 2 - - uid: 13961 - components: - - type: Transform - pos: 15.5,10.5 - parent: 2 - - uid: 13962 - components: - - type: Transform - pos: 18.5,11.5 - parent: 2 - - uid: 13963 - components: - - type: Transform - pos: 19.5,11.5 - parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 13964 - components: - - type: Transform - pos: -11.5,32.5 - parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 13965 - components: - - type: Transform - pos: -8.5,34.5 - parent: 2 -- proto: SpawnPointClown - entities: - - uid: 13966 - components: - - type: Transform - pos: -33.5,9.5 - parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 13967 - components: - - type: Transform - pos: 26.5,6.5 - parent: 2 -- proto: SpawnPointForensicMantis - entities: - - uid: 13968 - components: - - type: Transform - pos: -36.5,33.5 - parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 13969 - components: - - type: Transform - pos: -8.5,33.5 - parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 13970 - components: - - type: Transform - pos: -11.5,34.5 - parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 13971 - components: - - type: Transform - pos: 0.5,11.5 - parent: 2 - - uid: 13972 - components: - - type: Transform - pos: -0.5,10.5 - parent: 2 -- proto: SpawnPointLatejoin - entities: - - uid: 13973 - components: - - type: Transform - pos: 32.5,-21.5 - parent: 2 - - uid: 13974 - components: - - type: Transform - pos: 32.5,-19.5 - parent: 2 - - uid: 13975 - components: - - type: Transform - pos: 33.5,-21.5 - parent: 2 - - uid: 13976 - components: - - type: Transform - pos: 33.5,-19.5 - parent: 2 - - uid: 13977 - components: - - type: Transform - pos: 34.5,-19.5 - parent: 2 - - uid: 13978 - components: - - type: Transform - pos: 34.5,-21.5 - parent: 2 - - uid: 13979 - components: - - type: Transform - pos: 35.5,-21.5 - parent: 2 - - uid: 13980 - components: - - type: Transform - pos: 35.5,-19.5 - parent: 2 -- proto: SpawnPointLawyer - entities: - - uid: 13981 - components: - - type: Transform - pos: -20.5,21.5 - parent: 2 -- proto: SpawnPointLocationMidRoundAntag - entities: - - uid: 13982 - components: - - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 13983 - components: - - type: Transform - pos: 20.5,-13.5 - parent: 2 - - uid: 13984 - components: - - type: Transform - pos: 6.5,14.5 - parent: 2 - - uid: 13985 - components: - - type: Transform - pos: 0.5,-12.5 - parent: 2 - - uid: 13986 - components: - - type: Transform - pos: -36.5,-23.5 - parent: 2 - - uid: 13987 - components: - - type: Transform - pos: -35.5,10.5 - parent: 2 - - uid: 13988 - components: - - type: Transform - pos: -28.5,12.5 - parent: 2 - - uid: 13989 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 - - uid: 13990 - components: - - type: Transform - pos: -33.5,41.5 - parent: 2 - - uid: 13991 - components: - - type: Transform - pos: -49.5,29.5 - parent: 2 - - uid: 13992 - components: - - type: Transform - pos: -47.5,1.5 - parent: 2 - - uid: 13993 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 2 - - uid: 13994 - components: - - type: Transform - pos: 17.5,25.5 - parent: 2 - - uid: 13995 - components: - - type: Transform - pos: -29.5,27.5 - parent: 2 - - uid: 13996 - components: - - type: Transform - pos: -21.5,43.5 - parent: 2 - - uid: 13997 - components: - - type: Transform - pos: -20.5,20.5 - parent: 2 -- proto: SpawnPointMailCarrier - entities: - - uid: 13998 - components: - - type: Transform - pos: 15.5,-26.5 - parent: 2 - - uid: 13999 - components: - - type: Transform - pos: 15.5,-28.5 - parent: 2 - - uid: 14000 - components: - - type: Transform - pos: 16.5,-27.5 - parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 14001 - components: - - type: Transform - pos: 19.5,7.5 - parent: 2 - - uid: 14002 - components: - - type: Transform - pos: 19.5,6.5 - parent: 2 - - uid: 14003 - components: - - type: Transform - pos: 20.5,6.5 - parent: 2 - - uid: 14004 - components: - - type: Transform - pos: 20.5,7.5 - parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 14005 - components: - - type: Transform - pos: 18.5,7.5 - parent: 2 - - uid: 14006 - components: - - type: Transform - pos: 18.5,6.5 - parent: 2 - - uid: 14007 - components: - - type: Transform - pos: 18.5,5.5 - parent: 2 -- proto: SpawnPointMime - entities: - - uid: 14008 - components: - - type: Transform - pos: -38.5,9.5 - parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 14009 - components: - - type: Transform - pos: -13.5,-8.5 - parent: 2 -- proto: SpawnPointObserver - entities: - - uid: 14010 - components: - - type: Transform - pos: 0.5,0.5 - parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 14011 - components: - - type: Transform - pos: 22.5,7.5 - parent: 2 - - uid: 14012 - components: - - type: Transform - pos: 22.5,6.5 - parent: 2 - - uid: 14013 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 13914 - components: - - type: Transform - pos: -12.5,4.5 - parent: 2 - - uid: 13915 - components: - - type: Transform - pos: -48.5,12.5 - parent: 2 - - uid: 13917 - components: - - type: Transform - pos: -30.5,10.5 - parent: 2 - - uid: 13919 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 13920 - components: - - type: Transform - pos: 35.5,-4.5 - parent: 2 - - uid: 13921 - components: - - type: Transform - pos: -10.5,3.5 - parent: 2 - - uid: 13922 - components: - - type: Transform - pos: -10.5,4.5 - parent: 2 - - uid: 13923 - components: - - type: Transform - pos: -12.5,3.5 - parent: 2 - - uid: 13924 - components: - - type: Transform - pos: -8.5,3.5 - parent: 2 - - uid: 13925 - components: - - type: Transform - pos: -7.5,4.5 - parent: 2 - - uid: 13926 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 2 - - uid: 13927 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 13928 - components: - - type: Transform - pos: -5.5,-8.5 - parent: 2 - - uid: 13929 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 13930 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 2 - - uid: 13931 - components: - - type: Transform - pos: -0.5,1.5 - parent: 2 - - uid: 13932 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 2 -- proto: SpawnPointPrisoner - entities: - - uid: 14014 - components: - - type: Transform - pos: -55.5,-12.5 - parent: 2 - - uid: 14015 - components: - - type: Transform - pos: -59.5,-0.5 - parent: 2 - - uid: 14016 - components: - - type: Transform - pos: -60.5,-8.5 - parent: 2 - - uid: 14017 - components: - - type: Transform - pos: -55.5,-13.5 - parent: 2 - - uid: 14018 - components: - - type: Transform - pos: -52.5,-13.5 - parent: 2 - - uid: 14019 - components: - - type: Transform - pos: -61.5,-7.5 - parent: 2 - - uid: 14020 - components: - - type: Transform - pos: -59.5,-1.5 - parent: 2 - - uid: 14021 - components: - - type: Transform - pos: -50.5,0.5 - parent: 2 -- proto: SpawnPointPsychologist - entities: - - uid: 14022 - components: - - type: Transform - pos: 7.5,26.5 - parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 14023 - components: - - type: Transform - pos: -8.5,32.5 - parent: 2 -- proto: SpawnPointReporter - entities: - - uid: 14025 - components: - - type: Transform - pos: -13.5,22.5 - parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 14026 - components: - - type: Transform - pos: -40.5,26.5 - parent: 2 - - uid: 14027 - components: - - type: Transform - pos: -41.5,26.5 - parent: 2 - - uid: 14028 - components: - - type: Transform - pos: -39.5,26.5 - parent: 2 - - uid: 14029 - components: - - type: Transform - pos: -38.5,26.5 - parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 14030 - components: - - type: Transform - pos: -11.5,33.5 - parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 14031 - components: - - type: Transform - pos: 10.5,-32.5 - parent: 2 - - uid: 14032 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 2 - - uid: 14033 - components: - - type: Transform - pos: 9.5,-31.5 - parent: 2 - - uid: 14034 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 14035 - components: - - type: Transform - pos: -41.5,27.5 - parent: 2 - - uid: 14036 - components: - - type: Transform - pos: -40.5,27.5 - parent: 2 - - uid: 14037 - components: - - type: Transform - pos: -39.5,27.5 - parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 14039 - components: - - type: Transform - pos: -21.5,-13.5 - parent: 2 - - uid: 14040 - components: - - type: Transform - pos: -21.5,-14.5 - parent: 2 - - uid: 14041 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - - uid: 14042 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 2 - - uid: 14043 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 2 - - uid: 14044 - components: - - type: Transform - pos: -35.5,-13.5 - parent: 2 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 14045 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 2 - - uid: 14046 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 - - uid: 14047 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - - uid: 14048 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 - - uid: 14049 - components: - - type: Transform - pos: -21.5,-7.5 - parent: 2 - - uid: 14050 - components: - - type: Transform - pos: -37.5,-13.5 - parent: 2 - - uid: 14051 - components: - - type: Transform - pos: -35.5,-12.5 - parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 14052 - components: - - type: Transform - pos: -1.5,-24.5 - parent: 2 - - uid: 14053 - components: - - type: Transform - pos: -0.5,-24.5 - parent: 2 - - uid: 14054 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 2 - - uid: 14055 - components: - - type: Transform - pos: -2.5,-27.5 - parent: 2 - - uid: 14056 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 2 - - uid: 14057 - components: - - type: Transform - pos: 3.5,-25.5 - parent: 2 - - uid: 14058 - components: - - type: Transform - pos: 2.5,-24.5 - parent: 2 - - uid: 14059 - components: - - type: Transform - pos: 3.5,-24.5 - parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 14060 - components: - - type: Transform - pos: -0.5,-22.5 - parent: 2 - - uid: 14061 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 2 - - uid: 14062 - components: - - type: Transform - pos: 1.5,-22.5 - parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 14063 - components: - - type: Transform - pos: -36.5,-6.5 - parent: 2 -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 14066 - components: - - type: Transform - pos: 19.5,-11.5 - parent: 2 -- proto: SpeedLoaderLightRifle - entities: - - uid: 14067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.3356142,20.589882 - parent: 2 - - uid: 14068 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5895681,20.7266 - parent: 2 - - uid: 14069 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.3160801,20.492226 - parent: 2 -- proto: Spoon - entities: - - uid: 14070 - components: - - type: Transform - rot: 2.2102243900299072 rad - pos: -62.70413,-7.8477774 - parent: 2 - - uid: 14071 - components: - - type: Transform - pos: -10.708023,14.570831 - parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 14072 - components: - - type: Transform - pos: 32.446316,-16.471302 - parent: 2 - - uid: 14073 - components: - - type: Transform - pos: -27.260195,11.305423 - parent: 2 - - uid: 14074 - components: - - type: Transform - pos: 32.27444,-16.174221 - parent: 2 - - uid: 14075 - components: - - type: Transform - pos: 0.16161251,9.369377 - parent: 2 - - uid: 14076 - components: - - type: Transform - pos: 0.32103753,9.680939 - parent: 2 -- proto: SS13Memorial - entities: - - uid: 14077 - components: - - type: MetaData - desc: He peers into the future to see what it will bring him... - name: a nameless crewman - - type: Transform - anchored: False - rot: -1.3720747987416129 rad - pos: -10,38 - parent: 2 - - type: Physics - bodyType: Dynamic - missingComponents: - - Pullable -- proto: StasisBed - entities: - - uid: 14078 - components: - - type: Transform - pos: 23.5,8.5 - parent: 2 -- proto: StationMap - entities: - - uid: 6233 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - - uid: 14079 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - - uid: 14080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 2 - - uid: 14081 - components: - - type: Transform - pos: -13.5,28.5 - parent: 2 - - uid: 14082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-77.5 - parent: 2 - - uid: 14083 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,12.5 - parent: 2 - - uid: 14084 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-3.5 - parent: 2 - - uid: 14085 - components: - - type: Transform - pos: -47.5,24.5 - parent: 2 - - uid: 14086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,36.5 - parent: 2 - - uid: 14087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,33.5 - parent: 2 - - uid: 14088 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-10.5 - parent: 2 - - uid: 14089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-18.5 - parent: 2 - - uid: 14298 - components: - - type: Transform - pos: -31.5,21.5 - parent: 2 -- proto: SteelBench - entities: - - uid: 14090 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 2 - - uid: 14091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 2 - - uid: 14092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 2 - - uid: 14093 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-4.5 - parent: 2 - - uid: 14094 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,12.5 - parent: 2 - - uid: 14095 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,14.5 - parent: 2 - - uid: 14096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,17.5 - parent: 2 - - uid: 14097 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,18.5 - parent: 2 - - uid: 14098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,15.5 - parent: 2 - - uid: 14099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,20.5 - parent: 2 - - uid: 14100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,18.5 - parent: 2 - - uid: 14101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,17.5 - parent: 2 - - uid: 14102 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,11.5 - parent: 2 - - uid: 14103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,20.5 - parent: 2 - - uid: 14104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,21.5 - parent: 2 - - uid: 14105 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,21.5 - parent: 2 - - uid: 14106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-1.5 - parent: 2 - - uid: 14107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 2 - - uid: 14108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,15.5 - parent: 2 - - uid: 14109 - components: - - type: Transform - pos: 29.5,-14.5 - parent: 2 - - uid: 14110 - components: - - type: Transform - pos: 28.5,-14.5 - parent: 2 - - uid: 14111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,14.5 - parent: 2 - - uid: 14112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,15.5 - parent: 2 - - uid: 14113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,14.5 - parent: 2 - - uid: 14114 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,12.5 - parent: 2 - - uid: 14115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,11.5 - parent: 2 -- proto: Stool - entities: - - uid: 14116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-6.5 - parent: 2 - - uid: 14117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-16.5 - parent: 2 - - uid: 14118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-21.5 - parent: 2 - - uid: 14119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,27.5 - parent: 2 - - uid: 14120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,27.5 - parent: 2 - - uid: 14121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,28.5 - parent: 2 - - uid: 14122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,28.5 - parent: 2 - - uid: 14123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,29.5 - parent: 2 - - uid: 14124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,29.5 - parent: 2 - - uid: 14125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,29.5 - parent: 2 - - uid: 14126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,28.5 - parent: 2 - - uid: 14127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,27.5 - parent: 2 -- proto: StoolBar - entities: - - uid: 5170 - components: - - type: Transform - pos: -6.5,20.5 - parent: 2 - - uid: 14128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 2 - - uid: 14129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 2 - - uid: 14130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 2 - - uid: 14131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 2 - - uid: 14132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-8.5 - parent: 2 - - uid: 14133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-8.5 - parent: 2 - - uid: 14134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-8.5 - parent: 2 - - uid: 14135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-8.5 - parent: 2 - - uid: 14136 - components: - - type: Transform - pos: -7.5,20.5 - parent: 2 - - uid: 14137 - components: - - type: Transform - pos: 33.5,-6.5 - parent: 2 - - uid: 14138 - components: - - type: Transform - pos: 34.5,-6.5 - parent: 2 - - uid: 14139 - components: - - type: Transform - pos: -8.5,20.5 - parent: 2 - - uid: 14140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-14.5 - parent: 2 - - uid: 14141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-14.5 - parent: 2 - - uid: 14142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-13.5 - parent: 2 - - uid: 14143 - components: - - type: Transform - pos: -53.5,-11.5 - parent: 2 - - uid: 14144 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-13.5 - parent: 2 - - uid: 14145 - components: - - type: Transform - pos: 32.5,-6.5 - parent: 2 - - uid: 14146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,35.5 - parent: 2 - - uid: 14147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,34.5 - parent: 2 - - uid: 14148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,33.5 - parent: 2 -- proto: StorageCanister - entities: - - uid: 5710 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 5714 - components: - - type: Transform - pos: -3.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 12743 - components: - - type: Transform - pos: -10.5,-43.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 13135 - components: - - type: Transform - pos: -10.5,-42.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14153 - components: - - type: Transform - pos: 2.5,-36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14154 - components: - - type: Transform - pos: -54.5,31.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14155 - components: - - type: Transform - pos: -55.5,31.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 14156 - components: - - type: Transform - pos: -56.5,31.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17839 - components: - - type: Transform - pos: -38.5,-30.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 17840 - components: - - type: Transform - pos: -37.5,-30.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: SubstationBasic - entities: - - uid: 14158 - components: - - type: MetaData - name: substation (Central) - - type: Transform - pos: -18.5,14.5 - parent: 2 - - uid: 14159 - components: - - type: MetaData - name: substation (South-Central) - - type: Transform - pos: 1.5,-9.5 - parent: 2 - - uid: 14160 - components: - - type: MetaData - name: substation (Southwest) - - type: Transform - pos: -32.5,-17.5 - parent: 2 - - uid: 14161 - components: - - type: MetaData - name: substation (Singularity) - - type: Transform - pos: -31.5,-25.5 - parent: 2 - - uid: 14162 - components: - - type: MetaData - name: substation (AI) - - type: Transform - pos: -14.5,-80.5 - parent: 2 - - uid: 14163 - components: - - type: MetaData - name: substation (North) - - type: Transform - pos: -14.5,32.5 - parent: 2 - - uid: 14164 - components: - - type: MetaData - name: substation (Northwest) - - type: Transform - pos: -47.5,44.5 - parent: 2 - - uid: 14165 - components: - - type: MetaData - name: substation (Northeast) - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 14166 - components: - - type: MetaData - name: substation (Engineering) - - type: Transform - pos: -4.5,-21.5 - parent: 2 - - uid: 14167 - components: - - type: MetaData - name: substation (Southeast) - - type: Transform - pos: 26.5,-22.5 - parent: 2 -- proto: SuitStorageAtmos - entities: - - uid: 14168 - components: - - type: Transform - pos: -8.5,-37.5 - parent: 2 - - uid: 14169 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 2 -- proto: SuitStorageEngi - entities: - - uid: 14170 - components: - - type: Transform - pos: -2.5,-17.5 - parent: 2 - - uid: 14171 - components: - - type: Transform - pos: -3.5,-17.5 - parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 14172 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17666 - - uid: 14173 - components: - - type: Transform - pos: -24.5,-21.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17668 - - uid: 14174 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17697 - - uid: 14175 - components: - - type: Transform - pos: -24.5,-25.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17701 - - uid: 14176 - components: - - type: Transform - pos: -22.5,-25.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17762 - - uid: 14177 - components: - - type: Transform - pos: -23.5,-25.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17763 - - uid: 14178 - components: - - type: Transform - pos: -23.5,-21.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17764 - - uid: 14179 - components: - - type: Transform - pos: -22.5,-21.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17765 - - uid: 14180 - components: - - type: Transform - pos: -14.5,34.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14181 - components: - - type: Transform - pos: -15.5,34.5 - parent: 2 -- proto: SuitStorageEVAAlternate - entities: - - uid: 14182 - components: - - type: Transform - pos: -44.5,34.5 - parent: 2 - - uid: 14183 - components: - - type: Transform - pos: -45.5,34.5 - parent: 2 -- proto: SuitStorageEVAEmergency - entities: - - uid: 14184 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 2 - - uid: 14185 - components: - - type: Transform - pos: 10.5,15.5 - parent: 2 - - uid: 14186 - components: - - type: Transform - pos: 11.5,16.5 - parent: 2 - - uid: 14187 - components: - - type: Transform - pos: 9.5,-40.5 - parent: 2 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 14188 - components: - - type: Transform - pos: -47.5,-10.5 - parent: 2 - - uid: 14189 - components: - - type: Transform - pos: -48.5,-10.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14190 - components: - - type: Transform - pos: -49.5,-10.5 - parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 14191 - components: - - type: Transform - pos: -31.5,-15.5 - parent: 2 -- proto: SuitStorageSec - entities: - - uid: 14192 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 2 - - uid: 14193 - components: - - type: Transform - pos: -25.5,-11.5 - parent: 2 - - uid: 14194 - components: - - type: Transform - pos: -40.5,-0.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 75.31249 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 14195 - components: - - type: Transform - pos: -39.5,-2.5 - parent: 2 - - uid: 14196 - components: - - type: Transform - pos: -39.5,-0.5 - parent: 2 - - uid: 14197 - components: - - type: Transform - pos: -40.5,-2.5 - parent: 2 -- proto: supermatter - entities: - - uid: 12741 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 2 -- proto: SurveillanceCameraCommand - entities: - - uid: 14198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-76.5 - parent: 2 - - uid: 14199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: vault - - uid: 14200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,33.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: executive bar - - uid: 14201 - components: - - type: Transform - pos: -9.5,41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: bridge - - uid: 14202 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,39.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: command -- proto: SurveillanceCameraEngineering - entities: - - uid: 14203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: drones - - uid: 14204 - components: - - type: Transform - pos: -33.5,-46.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: supermatter - south - - uid: 14205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-17.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: engi hall - north - - uid: 14206 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: engi hall - south - - uid: 14207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: ame/grav - - uid: 14208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: board storage - - uid: 14209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-36.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: pa controller - - uid: 14210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-30.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: supermatter - north - - uid: 14211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: eva storage - - uid: 14212 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-36.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: canisters - - uid: 17803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: supermatter - radiators -- proto: SurveillanceCameraGeneral - entities: - - uid: 14213 - components: - - type: Transform - pos: -11.5,3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: south kitchen - - uid: 14214 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: evac - - uid: 14215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,16.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: dorms - - uid: 14216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: east evac - - uid: 14217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: south evac - - uid: 14218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: south dorms - - uid: 14219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,16.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: east dorms - - uid: 14220 - components: - - type: Transform - pos: -21.5,38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: courtroom - - uid: 14221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,27.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: north halls - - uid: 14222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,24.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: north kitchen - - uid: 14223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: crossroads -- proto: SurveillanceCameraMedical - entities: - - uid: 14224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: cloning - - uid: 14225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: cryo lab - - uid: 14226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: chemistry - - uid: 14227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,26.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: surgery - - uid: 14228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: virology - - uid: 14229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: treatment - - uid: 17441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: lobby -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 14230 - components: - - type: MetaData - name: camera router (command) - - type: Transform - pos: -27.5,-80.5 - parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 14231 - components: - - type: MetaData - name: camera router (engineering) - - type: Transform - pos: -27.5,-78.5 - parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 14232 - components: - - type: MetaData - name: camera router (general) - - type: Transform - pos: -27.5,-73.5 - parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 14233 - components: - - type: MetaData - name: camera router (medical) - - type: Transform - pos: -27.5,-74.5 - parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 14234 - components: - - type: MetaData - name: camera router (epistemics) - - type: Transform - pos: -27.5,-79.5 - parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 14235 - components: - - type: MetaData - name: camera router (security) - - type: Transform - pos: -25.5,-72.5 - parent: 2 -- proto: SurveillanceCameraRouterService - entities: - - uid: 14236 - components: - - type: MetaData - name: camera router (service) - - type: Transform - pos: -25.5,-74.5 - parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 14237 - components: - - type: MetaData - name: camera router (supply) - - type: Transform - pos: -27.5,-72.5 - parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 14238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,30.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: library - - uid: 14239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: artifact science - - uid: 14240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,37.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: main lab - - uid: 14241 - components: - - type: Transform - pos: -56.5,31.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: toxins/artifact lab - - uid: 14242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,34.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: lockers - - uid: 14243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: epi reception - - uid: 14244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,27.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: chapel - - uid: 14245 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: anomaly/robotics lab -- proto: SurveillanceCameraSecurity - entities: - - uid: 14246 - components: - - type: Transform - pos: -61.5,-9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: perma botany - - uid: 14247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: perma visiting - - uid: 14248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-11.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: perma dorms - - uid: 14249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Heavy Armory - - uid: 14250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: reception - - uid: 14251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: lockers - - uid: 14252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: perma kitchen - - uid: 14253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: holding cells - - uid: 14254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: light armory - - uid: 14255 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: reception - - uid: 14256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: interrogation - - uid: 14257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: visiting room - - uid: 14258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: less lethal armory - - uid: 14259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: shooting range - - uid: 14260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: detective's post -- proto: SurveillanceCameraService - entities: - - uid: 14261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: kitchen north - - uid: 14262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,12.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: freezer - - uid: 14263 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: arrivals kitchenette - - uid: 14264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: hydroponics - - uid: 14265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: kitchen south - - uid: 14266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: boxing ring - - uid: 14267 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: head of personnel's office -- proto: SurveillanceCameraSupply - entities: - - uid: 14268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-30.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: salvage - - uid: 14269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-28.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: loading area - - uid: 14270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: mail room - - uid: 14271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: cargo reception - - uid: 14272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: long hall - - uid: 14273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: conveyors -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 14274 - components: - - type: MetaData - name: wireless camera router (Entertainment) - - type: Transform - pos: -14.5,20.5 - parent: 2 - - uid: 14275 - components: - - type: Transform - pos: -25.5,-80.5 - parent: 2 -- proto: SurveillanceWirelessCameraAnchoredConstructed - entities: - - uid: 14064 - components: - - type: MetaData - desc: A camera. This one constantly streams to Dojo Network Entertainment. Their ratings have been going down, so the executives have been known to encourage spectators to throw a chair at someone or something. - name: wireless camera (DNE) - - type: Transform - pos: 33.5,13.5 - parent: 2 - - type: SurveillanceCamera - id: DNE -- proto: SurveillanceWirelessCameraAnchoredEntertainment - entities: - - uid: 11987 - components: - - type: MetaData - desc: A camera. This one is constantly streaming to Edgy Court Cases TV, the premier legal station that's sure to keep lawbreakers *on Edge!* - name: wireless camera (ECC TV) - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,43.5 - parent: 2 - - type: SurveillanceCamera - id: ECC TV -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 14276 - components: - - type: MetaData - desc: A camera. This one broadcasts to EDG station, the station that stays on the cutting edge of current events on-board Edge station! - name: wireless camera (EDG TV) - - type: Transform - rot: -2.080612181625094 rad - pos: -12.459,22.595003 - parent: 2 - - type: SurveillanceCamera - id: EDG TV -- proto: Table - entities: - - uid: 4430 - components: - - type: Transform - pos: -18.5,-44.5 - parent: 2 - - uid: 7612 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,16.5 - parent: 2 - - uid: 12724 - components: - - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 14278 - components: - - type: Transform - pos: -8.5,-39.5 - parent: 2 - - uid: 14279 - components: - - type: Transform - pos: -19.5,7.5 - parent: 2 - - uid: 14280 - components: - - type: Transform - pos: -28.5,-5.5 - parent: 2 - - uid: 14281 - components: - - type: Transform - pos: -8.5,4.5 - parent: 2 - - uid: 14282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 2 - - uid: 14283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,4.5 - parent: 2 - - uid: 14284 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 2 - - uid: 14285 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 2 - - uid: 14286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-4.5 - parent: 2 - - uid: 14287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 2 - - uid: 14288 - components: - - type: Transform - pos: -29.5,-5.5 - parent: 2 - - uid: 14289 - components: - - type: Transform - pos: -36.5,-14.5 - parent: 2 - - uid: 14290 - components: - - type: Transform - pos: -36.5,-13.5 - parent: 2 - - uid: 14291 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - - uid: 14292 - components: - - type: Transform - pos: -19.5,6.5 - parent: 2 - - uid: 14293 - components: - - type: Transform - pos: -38.5,18.5 - parent: 2 - - uid: 14294 - components: - - type: Transform - pos: -36.5,-12.5 - parent: 2 - - uid: 14295 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 2 - - uid: 14297 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - - uid: 14299 - components: - - type: Transform - pos: -60.5,-1.5 - parent: 2 - - uid: 14300 - components: - - type: Transform - pos: -60.5,-0.5 - parent: 2 - - uid: 14301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-3.5 - parent: 2 - - uid: 14302 - components: - - type: Transform - pos: 37.5,3.5 - parent: 2 - - uid: 14303 - components: - - type: Transform - pos: -53.5,-16.5 - parent: 2 - - uid: 14304 - components: - - type: Transform - pos: 16.5,10.5 - parent: 2 - - uid: 14305 - components: - - type: Transform - pos: -31.5,11.5 - parent: 2 - - uid: 14306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 - parent: 2 - - uid: 14307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 2 - - uid: 14308 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - - uid: 14309 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 14310 - components: - - type: Transform - pos: 14.5,-19.5 - parent: 2 - - uid: 14311 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - - uid: 14312 - components: - - type: Transform - pos: -39.5,1.5 - parent: 2 - - uid: 14313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,42.5 - parent: 2 - - uid: 14314 - components: - - type: Transform - pos: -39.5,0.5 - parent: 2 - - uid: 14315 - components: - - type: Transform - pos: -50.5,48.5 - parent: 2 - - uid: 14316 - components: - - type: Transform - pos: -50.5,49.5 - parent: 2 - - uid: 14317 - components: - - type: Transform - pos: -51.5,48.5 - parent: 2 - - uid: 14318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,37.5 - parent: 2 - - uid: 14319 - components: - - type: Transform - pos: -50.5,47.5 - parent: 2 - - uid: 14320 - components: - - type: Transform - pos: -9.5,16.5 - parent: 2 - - uid: 14321 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 2 - - uid: 14322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-8.5 - parent: 2 - - uid: 14323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,28.5 - parent: 2 - - uid: 14324 - components: - - type: Transform - pos: -49.5,48.5 - parent: 2 - - uid: 14325 - components: - - type: Transform - pos: -49.5,49.5 - parent: 2 - - uid: 14326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-21.5 - parent: 2 - - uid: 14327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,47.5 - parent: 2 - - uid: 14328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 2 - - uid: 14329 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 - - uid: 14330 - components: - - type: Transform - pos: -35.5,-5.5 - parent: 2 - - uid: 14331 - components: - - type: Transform - pos: -51.5,49.5 - parent: 2 - - uid: 14332 - components: - - type: Transform - pos: -49.5,47.5 - parent: 2 - - uid: 14333 - components: - - type: Transform - pos: -51.5,47.5 - parent: 2 - - uid: 14334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-22.5 - parent: 2 - - uid: 14335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 2 - - uid: 14336 - components: - - type: Transform - pos: -9.5,17.5 - parent: 2 - - uid: 14337 - components: - - type: Transform - pos: 34.5,12.5 - parent: 2 - - uid: 14338 - components: - - type: Transform - pos: 35.5,12.5 - parent: 2 - - uid: 14339 - components: - - type: Transform - pos: -25.5,-4.5 - parent: 2 - - uid: 14340 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 2 - - uid: 14341 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 2 - - uid: 14342 - components: - - type: Transform - pos: -26.5,22.5 - parent: 2 - - uid: 14343 - components: - - type: Transform - pos: 28.5,18.5 - parent: 2 - - uid: 14344 - components: - - type: Transform - pos: 6.5,22.5 - parent: 2 -- proto: TableCarpet - entities: - - uid: 13543 - components: - - type: Transform - pos: 1.5,40.5 - parent: 2 - - uid: 14345 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 2 - - uid: 14346 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 2 - - uid: 14348 - components: - - type: Transform - pos: -33.5,13.5 - parent: 2 - - uid: 14349 - components: - - type: Transform - pos: -54.5,-12.5 - parent: 2 - - uid: 14350 - components: - - type: Transform - pos: -54.5,-13.5 - parent: 2 - - uid: 14351 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 2 - - uid: 14352 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 2 - - uid: 14353 - components: - - type: Transform - pos: 1.5,30.5 - parent: 2 - - uid: 14354 - components: - - type: Transform - pos: -49.5,27.5 - parent: 2 - - uid: 14355 - components: - - type: Transform - pos: -49.5,26.5 - parent: 2 - - uid: 14356 - components: - - type: Transform - pos: -48.5,26.5 - parent: 2 - - uid: 14357 - components: - - type: Transform - pos: -48.5,27.5 - parent: 2 - - uid: 14358 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,25.5 - parent: 2 - - uid: 14360 - components: - - type: Transform - pos: 10.5,-31.5 - parent: 2 - - uid: 14361 - components: - - type: Transform - pos: -52.5,-0.5 - parent: 2 - - uid: 14362 - components: - - type: Transform - pos: -32.5,-13.5 - parent: 2 - - uid: 14364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-0.5 - parent: 2 -- proto: TableCounterMetal - entities: - - uid: 14365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-16.5 - parent: 2 - - uid: 14366 - components: - - type: Transform - pos: 28.5,14.5 - parent: 2 - - uid: 14367 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 2 - - uid: 14368 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 2 - - uid: 14369 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 2 - - uid: 14370 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 2 - - uid: 14371 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 2 - - uid: 14372 - components: - - type: Transform - pos: -13.5,13.5 - parent: 2 - - uid: 14373 - components: - - type: Transform - pos: -10.5,12.5 - parent: 2 - - uid: 14374 - components: - - type: Transform - pos: -9.5,12.5 - parent: 2 - - uid: 14375 - components: - - type: Transform - pos: -10.5,14.5 - parent: 2 - - uid: 14376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 2 - - uid: 14377 - components: - - type: Transform - pos: -9.5,11.5 - parent: 2 - - uid: 14378 - components: - - type: Transform - pos: -13.5,14.5 - parent: 2 - - uid: 14379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 2 - - uid: 14380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-16.5 - parent: 2 - - uid: 14381 - components: - - type: Transform - pos: 30.5,-7.5 - parent: 2 - - uid: 14382 - components: - - type: Transform - pos: -32.5,-10.5 - parent: 2 - - uid: 14383 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 2 - - uid: 14384 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - - uid: 14385 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 2 - - uid: 14386 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 2 - - uid: 14387 - components: - - type: Transform - pos: -13.5,-37.5 - parent: 2 - - uid: 14388 - components: - - type: Transform - pos: -13.5,-38.5 - parent: 2 - - uid: 14389 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 2 - - uid: 14390 - components: - - type: Transform - pos: -47.5,-13.5 - parent: 2 - - uid: 14391 - components: - - type: Transform - pos: -57.5,2.5 - parent: 2 - - uid: 14392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,2.5 - parent: 2 - - uid: 14393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,2.5 - parent: 2 - - uid: 14394 - components: - - type: Transform - pos: -43.5,39.5 - parent: 2 - - uid: 14395 - components: - - type: Transform - pos: 19.5,20.5 - parent: 2 - - uid: 14396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-72.5 - parent: 2 - - uid: 14397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-80.5 - parent: 2 - - uid: 14398 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-79.5 - parent: 2 - - uid: 14399 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-79.5 - parent: 2 - - uid: 14400 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-73.5 - parent: 2 - - uid: 14401 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-73.5 - parent: 2 - - uid: 14402 - components: - - type: Transform - pos: 28.5,-9.5 - parent: 2 - - uid: 14403 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - - uid: 14404 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-12.5 - parent: 2 - - uid: 14405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-12.5 - parent: 2 - - uid: 14406 - components: - - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 14407 - components: - - type: Transform - pos: 16.5,13.5 - parent: 2 - - uid: 14408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,12.5 - parent: 2 - - uid: 14409 - components: - - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 14410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,21.5 - parent: 2 - - uid: 14411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,21.5 - parent: 2 - - uid: 14412 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 2 - - uid: 14413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,7.5 - parent: 2 - - uid: 14414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 2 - - uid: 14415 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 2 - - uid: 14416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,6.5 - parent: 2 - - uid: 14417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 2 - - uid: 14418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,9.5 - parent: 2 - - uid: 14419 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 2 - - uid: 14420 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 2 - - uid: 14421 - components: - - type: Transform - pos: -36.5,27.5 - parent: 2 - - uid: 14422 - components: - - type: Transform - pos: -38.5,31.5 - parent: 2 - - uid: 14423 - components: - - type: Transform - pos: -48.5,34.5 - parent: 2 - - uid: 14424 - components: - - type: Transform - pos: -48.5,35.5 - parent: 2 - - uid: 14425 - components: - - type: Transform - pos: -35.5,27.5 - parent: 2 - - uid: 14426 - components: - - type: Transform - pos: -40.5,51.5 - parent: 2 - - uid: 14427 - components: - - type: Transform - pos: -35.5,34.5 - parent: 2 - - uid: 14428 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 2 - - uid: 14429 - components: - - type: Transform - pos: 12.5,-31.5 - parent: 2 - - uid: 14430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-17.5 - parent: 2 - - uid: 14431 - components: - - type: Transform - pos: -42.5,39.5 - parent: 2 - - uid: 14432 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,2.5 - parent: 2 - - uid: 14433 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 2 - - uid: 14434 - components: - - type: Transform - pos: 30.5,-12.5 - parent: 2 - - uid: 14435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,43.5 - parent: 2 - - uid: 14436 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,44.5 - parent: 2 - - uid: 14437 - components: - - type: Transform - pos: -47.5,-12.5 - parent: 2 - - uid: 14438 - components: - - type: Transform - pos: -36.5,-24.5 - parent: 2 - - uid: 14439 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 14440 - components: - - type: Transform - pos: -34.5,34.5 - parent: 2 - - uid: 14441 - components: - - type: Transform - pos: 15.5,20.5 - parent: 2 - - uid: 14442 - components: - - type: Transform - pos: 8.5,9.5 - parent: 2 - - uid: 14443 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - - uid: 14444 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - - uid: 14445 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 2 - - uid: 14446 - components: - - type: Transform - pos: -41.5,39.5 - parent: 2 - - uid: 14447 - components: - - type: Transform - pos: -2.5,-28.5 - parent: 2 - - uid: 14448 - components: - - type: Transform - pos: -40.5,39.5 - parent: 2 - - uid: 14449 - components: - - type: Transform - pos: -40.5,40.5 - parent: 2 - - uid: 14450 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 2 - - uid: 14451 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 2 - - uid: 14452 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 2 - - uid: 14453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-51.5 - parent: 2 - - uid: 14454 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-51.5 - parent: 2 -- proto: TableCounterWood - entities: - - uid: 14455 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,33.5 - parent: 2 - - uid: 14456 - components: - - type: Transform - pos: -20.5,23.5 - parent: 2 - - uid: 14457 - components: - - type: Transform - pos: 8.5,-31.5 - parent: 2 - - uid: 14458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 2 - - uid: 14459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-7.5 - parent: 2 - - uid: 14460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-7.5 - parent: 2 - - uid: 14461 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 2 - - uid: 14462 - components: - - type: Transform - pos: 19.5,-3.5 - parent: 2 - - uid: 14463 - components: - - type: Transform - pos: 33.5,-10.5 - parent: 2 - - uid: 14464 - components: - - type: Transform - pos: 32.5,-10.5 - parent: 2 - - uid: 14465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,34.5 - parent: 2 -- proto: TableGlass - entities: - - uid: 14466 - components: - - type: Transform - pos: -10.5,-9.5 - parent: 2 - - uid: 14467 - components: - - type: Transform - pos: -20.5,-2.5 - parent: 2 - - uid: 14468 - components: - - type: Transform - pos: -3.5,-33.5 - parent: 2 - - uid: 14469 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 2 - - uid: 14470 - components: - - type: Transform - pos: 7.5,-16.5 - parent: 2 - - uid: 14471 - components: - - type: Transform - pos: -34.5,11.5 - parent: 2 - - uid: 14472 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 2 - - uid: 14473 - components: - - type: Transform - pos: -10.5,-29.5 - parent: 2 - - uid: 14474 - components: - - type: Transform - pos: -10.5,-30.5 - parent: 2 - - uid: 14475 - components: - - type: Transform - pos: -35.5,11.5 - parent: 2 - - uid: 14476 - components: - - type: Transform - pos: -13.5,-9.5 - parent: 2 - - uid: 14477 - components: - - type: Transform - pos: -36.5,-76.5 - parent: 2 - - uid: 14478 - components: - - type: Transform - pos: 2.5,-76.5 - parent: 2 - - uid: 14479 - components: - - type: Transform - pos: 17.5,26.5 - parent: 2 - - uid: 14480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,26.5 - parent: 2 - - uid: 14481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,26.5 - parent: 2 - - uid: 14482 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 2 - - uid: 14483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 2 - - uid: 14484 - components: - - type: Transform - pos: -1.5,32.5 - parent: 2 - - uid: 14485 - components: - - type: Transform - pos: -10.5,33.5 - parent: 2 - - uid: 14486 - components: - - type: Transform - pos: -9.5,33.5 - parent: 2 - - uid: 14487 - components: - - type: Transform - pos: -10.5,34.5 - parent: 2 - - uid: 14488 - components: - - type: Transform - pos: -9.5,34.5 - parent: 2 - - uid: 14489 - components: - - type: Transform - pos: -10.5,32.5 - parent: 2 - - uid: 14490 - components: - - type: Transform - pos: -9.5,32.5 - parent: 2 - - uid: 14491 - components: - - type: Transform - pos: -8.5,44.5 - parent: 2 - - uid: 14492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,37.5 - parent: 2 - - uid: 14493 - components: - - type: Transform - pos: 6.5,-16.5 - parent: 2 - - uid: 14494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,32.5 - parent: 2 - - uid: 14495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,21.5 - parent: 2 - - uid: 14496 - components: - - type: Transform - pos: -12.5,20.5 - parent: 2 -- proto: TablePlasmaGlass - entities: - - uid: 14497 - components: - - type: Transform - pos: -47.5,41.5 - parent: 2 - - uid: 14498 - components: - - type: Transform - pos: -28.5,3.5 - parent: 2 - - uid: 14499 - components: - - type: Transform - pos: 9.5,21.5 - parent: 2 - - uid: 14500 - components: - - type: Transform - pos: 1.5,18.5 - parent: 2 - - uid: 14501 - components: - - type: Transform - pos: 0.5,18.5 - parent: 2 - - uid: 14502 - components: - - type: Transform - pos: 1.5,20.5 - parent: 2 - - uid: 14503 - components: - - type: Transform - pos: -0.5,18.5 - parent: 2 - - uid: 14504 - components: - - type: Transform - pos: -0.5,20.5 - parent: 2 -- proto: TableReinforced - entities: - - uid: 14505 - components: - - type: Transform - pos: -8.5,8.5 - parent: 2 - - uid: 14506 - components: - - type: Transform - pos: -16.5,5.5 - parent: 2 - - uid: 14507 - components: - - type: Transform - pos: -16.5,4.5 - parent: 2 - - uid: 14508 - components: - - type: Transform - pos: -22.5,5.5 - parent: 2 - - uid: 14509 - components: - - type: Transform - pos: 9.5,-3.5 - parent: 2 - - uid: 14510 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 2 - - uid: 14511 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 14512 - components: - - type: Transform - pos: -22.5,6.5 - parent: 2 - - uid: 14513 - components: - - type: Transform - pos: -6.5,19.5 - parent: 2 - - uid: 14514 - components: - - type: Transform - pos: -26.5,2.5 - parent: 2 - - uid: 14515 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 2 - - uid: 14516 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 2 - - uid: 14517 - components: - - type: Transform - pos: -9.5,-16.5 - parent: 2 - - uid: 14518 - components: - - type: Transform - pos: -7.5,-15.5 - parent: 2 - - uid: 14519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 2 - - uid: 14520 - components: - - type: Transform - pos: -41.5,-7.5 - parent: 2 - - uid: 14521 - components: - - type: Transform - pos: -42.5,-7.5 - parent: 2 - - uid: 14522 - components: - - type: Transform - pos: 14.5,-33.5 - parent: 2 - - uid: 14523 - components: - - type: Transform - pos: 18.5,9.5 - parent: 2 - - uid: 14524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 2 - - uid: 14525 - components: - - type: Transform - pos: -7.5,8.5 - parent: 2 - - uid: 14526 - components: - - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 14527 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - - uid: 14528 - components: - - type: Transform - pos: 19.5,9.5 - parent: 2 - - uid: 14529 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 2 - - uid: 14530 - components: - - type: Transform - pos: -33.5,28.5 - parent: 2 - - uid: 14531 - components: - - type: Transform - pos: -43.5,27.5 - parent: 2 - - uid: 14532 - components: - - type: Transform - pos: -43.5,28.5 - parent: 2 - - uid: 14533 - components: - - type: Transform - pos: -33.5,29.5 - parent: 2 - - uid: 14534 - components: - - type: Transform - pos: -43.5,0.5 - parent: 2 - - uid: 14535 - components: - - type: Transform - pos: -9.5,8.5 - parent: 2 - - uid: 14536 - components: - - type: Transform - pos: -10.5,8.5 - parent: 2 - - uid: 14537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,19.5 - parent: 2 - - uid: 14538 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,19.5 - parent: 2 - - uid: 14539 - components: - - type: Transform - pos: -11.5,-24.5 - parent: 2 - - uid: 14540 - components: - - type: Transform - pos: 14.5,-32.5 - parent: 2 - - uid: 14541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,1.5 - parent: 2 -- proto: TableReinforcedGlass - entities: - - uid: 14542 - components: - - type: Transform - pos: -33.5,-0.5 - parent: 2 - - uid: 14543 - components: - - type: Transform - pos: -32.5,-0.5 - parent: 2 - - uid: 14544 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 2 - - uid: 14545 - components: - - type: Transform - pos: 20.5,3.5 - parent: 2 - - uid: 14546 - components: - - type: Transform - pos: 21.5,12.5 - parent: 2 - - uid: 14547 - components: - - type: Transform - pos: 21.5,13.5 - parent: 2 - - uid: 14548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,32.5 - parent: 2 - - uid: 14549 - components: - - type: Transform - pos: 21.5,8.5 - parent: 2 - - uid: 14550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,5.5 - parent: 2 - - uid: 14551 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 2 - - uid: 14552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,7.5 - parent: 2 - - uid: 17655 - components: - - type: Transform - pos: -23.5,-36.5 - parent: 2 - - uid: 17656 - components: - - type: Transform - pos: -22.5,-36.5 - parent: 2 - - uid: 17657 - components: - - type: Transform - pos: -21.5,-38.5 - parent: 2 - - uid: 17658 - components: - - type: Transform - pos: -20.5,-38.5 - parent: 2 - - uid: 17665 - components: - - type: Transform - pos: -23.5,-40.5 - parent: 2 -- proto: TableStone - entities: - - uid: 14553 - components: - - type: Transform - pos: -8.5,23.5 - parent: 2 - - uid: 14554 - components: - - type: Transform - pos: -6.5,22.5 - parent: 2 -- proto: TableWood - entities: - - uid: 14555 - components: - - type: Transform - pos: -20.5,9.5 - parent: 2 - - uid: 14556 - components: - - type: Transform - pos: -13.5,-5.5 - parent: 2 - - uid: 14557 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,26.5 - parent: 2 - - uid: 14558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,27.5 - parent: 2 - - uid: 14559 - components: - - type: Transform - pos: -21.5,41.5 - parent: 2 - - uid: 14560 - components: - - type: Transform - pos: -25.5,41.5 - parent: 2 - - uid: 14561 - components: - - type: Transform - pos: -26.5,41.5 - parent: 2 - - uid: 14562 - components: - - type: Transform - pos: -20.5,41.5 - parent: 2 - - uid: 14564 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 2 -- proto: TableWoodReinforced - entities: - - uid: 14565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 2 - - uid: 14566 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 2 - - uid: 14567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 2 - - uid: 14568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 2 - - uid: 14569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 - parent: 2 - - uid: 14570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 2 - - uid: 14571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 - parent: 2 - - uid: 14572 - components: - - type: Transform - pos: -19.5,21.5 - parent: 2 - - uid: 14573 - components: - - type: Transform - pos: 20.5,-6.5 - parent: 2 - - uid: 14574 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 14575 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-73.5 - parent: 2 - - uid: 14576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-74.5 - parent: 2 - - uid: 14577 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-78.5 - parent: 2 - - uid: 14578 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-79.5 - parent: 2 - - uid: 14579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-79.5 - parent: 2 - - uid: 14580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-78.5 - parent: 2 - - uid: 14581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-74.5 - parent: 2 - - uid: 14582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-74.5 - parent: 2 - - uid: 14583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-73.5 - parent: 2 - - uid: 14584 - components: - - type: Transform - pos: 2.5,34.5 - parent: 2 - - uid: 14585 - components: - - type: Transform - pos: 2.5,33.5 - parent: 2 - - uid: 14586 - components: - - type: Transform - pos: 2.5,35.5 - parent: 2 - - uid: 14587 - components: - - type: MetaData - desc: The one he most commonly vaults over to reach your honor's comfy chair. - name: your honor's left-most reinforced wood table - - type: Transform - pos: -24.5,43.5 - parent: 2 - - uid: 14588 - components: - - type: MetaData - desc: Though it is the one with the most exposure, it is equally as important as the other table sections. - name: your honor's front-most reinforced wood table - - type: Transform - pos: -23.5,43.5 - parent: 2 - - uid: 14589 - components: - - type: MetaData - desc: Witnesses often bump the corner when taking the stand. - name: your honor's corner-most reinforced wood table - - type: Transform - pos: -22.5,43.5 - parent: 2 - - uid: 14590 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,30.5 - parent: 2 - - uid: 14591 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,30.5 - parent: 2 - - uid: 14592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,37.5 - parent: 2 - - uid: 14593 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,1.5 - parent: 2 - - uid: 14594 - components: - - type: MetaData - desc: Voted "Most Likely to Accumulate Dust" of all your honor's tables. - name: your honor's right-most reinforced wood table - - type: Transform - pos: -22.5,44.5 - parent: 2 - - uid: 14595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 2 - - uid: 14596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,0.5 - parent: 2 - - uid: 14597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-0.5 - parent: 2 -- proto: tatamimat - entities: - - uid: 14598 - components: - - type: Transform - pos: 31.5,10.5 - parent: 2 - - uid: 14599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,7.5 - parent: 2 - - uid: 14600 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,6.5 - parent: 2 - - uid: 14601 - components: - - type: Transform - pos: 36.5,10.5 - parent: 2 - - uid: 14602 - components: - - type: Transform - pos: 32.5,9.5 - parent: 2 - - uid: 14603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,9.5 - parent: 2 - - uid: 14604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,6.5 - parent: 2 - - uid: 14605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,8.5 - parent: 2 - - uid: 14606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,8.5 - parent: 2 - - uid: 14607 - components: - - type: Transform - pos: 34.5,9.5 - parent: 2 - - uid: 14608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,9.5 - parent: 2 - - uid: 14609 - components: - - type: Transform - pos: 33.5,8.5 - parent: 2 - - uid: 14610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,7.5 - parent: 2 - - uid: 14611 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,7.5 - parent: 2 - - uid: 14612 - components: - - type: Transform - pos: 31.5,5.5 - parent: 2 - - uid: 14613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,5.5 - parent: 2 - - uid: 14614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,6.5 - parent: 2 - - uid: 14615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,7.5 - parent: 2 - - uid: 14616 - components: - - type: Transform - pos: 32.5,6.5 - parent: 2 - - uid: 14617 - components: - - type: Transform - pos: 35.5,5.5 - parent: 2 - - uid: 14618 - components: - - type: Transform - pos: 34.5,6.5 - parent: 2 - - uid: 14619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,10.5 - parent: 2 - - uid: 14620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,10.5 - parent: 2 - - uid: 14621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,8.5 - parent: 2 - - uid: 14622 - components: - - type: Transform - pos: 33.5,7.5 - parent: 2 - - uid: 14623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,5.5 - parent: 2 - - uid: 14624 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,10.5 - parent: 2 - - uid: 14625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,9.5 - parent: 2 - - uid: 14626 - components: - - type: Transform - pos: 33.5,5.5 - parent: 2 - - uid: 14627 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,7.5 - parent: 2 - - uid: 14628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,5.5 - parent: 2 - - uid: 14629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,8.5 - parent: 2 - - uid: 14630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 2 - - uid: 14631 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,9.5 - parent: 2 - - uid: 14632 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,6.5 - parent: 2 - - uid: 14633 - components: - - type: Transform - pos: 33.5,10.5 - parent: 2 -- proto: TelecomServer - entities: - - uid: 7260 - components: - - type: Transform - pos: -30.5,-74.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7261 - - 7262 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7263 - components: - - type: Transform - pos: -28.5,-79.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7264 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7265 - components: - - type: Transform - pos: -30.5,-75.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7266 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7267 - components: - - type: Transform - pos: -28.5,-74.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7268 - - 7269 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7270 - components: - - type: Transform - pos: -30.5,-78.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7271 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7272 - components: - - type: Transform - pos: -30.5,-77.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7273 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 7274 - components: - - type: Transform - pos: -28.5,-78.5 - parent: 2 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 7275 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 14634 - components: - - type: Transform - pos: -24.5,-72.5 - parent: 2 - - uid: 14635 - components: - - type: Transform - pos: -24.5,-80.5 - parent: 2 -- proto: ThermomachineFreezerMachineCircuitBoard - entities: - - uid: 14636 - components: - - type: Transform - pos: -11.592051,-26.621416 - parent: 2 -- proto: ThermomachineHeaterMachineCircuitBoard - entities: - - uid: 14637 - components: - - type: Transform - pos: -6.4656,-42.514595 - parent: 2 -- proto: TimerTrigger - entities: - - uid: 14638 - components: - - type: Transform - pos: 9.392495,21.753458 - parent: 2 -- proto: TintedWindow - entities: - - uid: 14639 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 2 - - uid: 14640 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 2 - - uid: 14641 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - uid: 14642 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 14643 - components: - - type: Transform - pos: -30.5,-6.5 - parent: 2 - - uid: 14644 - components: - - type: Transform - pos: -35.5,12.5 - parent: 2 - - uid: 14645 - components: - - type: Transform - pos: -34.5,12.5 - parent: 2 - - uid: 14646 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 2 - - uid: 14647 - components: - - type: Transform - pos: -23.5,10.5 - parent: 2 - - uid: 14648 - components: - - type: Transform - pos: -23.5,9.5 - parent: 2 - - uid: 14649 - components: - - type: Transform - pos: -13.5,-2.5 - parent: 2 - - uid: 14650 - components: - - type: Transform - pos: -12.5,-10.5 - parent: 2 - - uid: 14651 - components: - - type: Transform - pos: -13.5,-10.5 - parent: 2 -- proto: ToiletDirtyWater - entities: - - uid: 14652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 2 - - uid: 14653 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,9.5 - parent: 2 - - uid: 14654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 2 - - uid: 14655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 2 - - uid: 14656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 - parent: 2 - - uid: 14657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 - parent: 2 - - uid: 14658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-6.5 - parent: 2 -- proto: ToolboxElectricalFilled - entities: - - uid: 14659 - components: - - type: Transform - pos: 1.7769808,-10.705922 - parent: 2 - - uid: 14660 - components: - - type: Transform - pos: 29.478056,24.531494 - parent: 2 -- proto: ToolboxEmergencyFilled - entities: - - uid: 6093 - components: - - type: Transform - pos: -23.50931,-40.41948 - parent: 2 - - uid: 6243 - components: - - type: Transform - pos: -20.58134,-25.603144 - parent: 2 - - uid: 14661 - components: - - type: Transform - pos: -29.827248,-10.610678 - parent: 2 - - uid: 14662 - components: - - type: Transform - pos: 3.6223974,-19.342974 - parent: 2 - - uid: 14663 - components: - - type: Transform - pos: -42.5538,-2.7034986 - parent: 2 - - uid: 14664 - components: - - type: Transform - pos: -47.503345,0.4337144 - parent: 2 - - uid: 14665 - components: - - type: Transform - pos: -53.433834,31.35351 - parent: 2 - - uid: 14666 - components: - - type: Transform - pos: 25.324356,18.286425 - parent: 2 - - uid: 14667 - components: - - type: Transform - pos: 21.27988,-22.19179 - parent: 2 - - uid: 14668 - components: - - type: Transform - pos: 7.471225,15.4227915 - parent: 2 - - uid: 14669 - components: - - type: Transform - pos: -26.499691,19.384647 - parent: 2 - - uid: 14670 - components: - - type: Transform - pos: -21.466671,13.577564 - parent: 2 - - uid: 14671 - components: - - type: Transform - pos: 6.6968956,7.356404 - parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 14672 - components: - - type: Transform - pos: 1.5277321,18.725857 - parent: 2 -- proto: ToolboxMechanical - entities: - - uid: 14673 - components: - - type: Transform - pos: -10.480042,-24.573797 - parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 14674 - components: - - type: Transform - pos: -17.440155,-83.509575 - parent: 2 - - uid: 14675 - components: - - type: Transform - pos: -41.22711,-6.611117 - parent: 2 - - uid: 14677 - components: - - type: Transform - pos: -49.42134,32.517525 - parent: 2 - - uid: 14678 - components: - - type: Transform - pos: -47.63044,-12.36487 - parent: 2 - - uid: 14679 - components: - - type: Transform - pos: 26.377935,-21.641388 - parent: 2 - - uid: 17848 - components: - - type: Transform - pos: -54.135937,37.182476 - parent: 2 -- proto: ToyAi - entities: - - uid: 14680 - components: - - type: Transform - pos: -8.611491,-76.47475 - parent: 2 -- proto: ToyAmongPequeno - entities: - - uid: 14681 - components: - - type: Transform - pos: 0.22309184,23.320057 - parent: 2 - - uid: 14682 - components: - - type: Transform - pos: -50.447548,46.652744 - parent: 2 - - uid: 14683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.71391,48.025852 - parent: 2 - - uid: 14684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.479637,45.98868 - parent: 2 - - uid: 14685 - components: - - type: Transform - pos: -51.52429,46.73087 - parent: 2 - - uid: 14686 - components: - - type: Transform - pos: -52.44894,47.746494 - parent: 2 - - uid: 14687 - components: - - type: Transform - pos: -52.44894,48.65795 - parent: 2 - - uid: 14688 - components: - - type: Transform - pos: -52.422894,49.725662 - parent: 2 - - uid: 14689 - components: - - type: Transform - pos: -50.508472,50.754307 - parent: 2 - - uid: 14690 - components: - - type: Transform - pos: -49.323357,50.65014 - parent: 2 - - uid: 14691 - components: - - type: Transform - pos: -48.372658,49.42618 - parent: 2 - - uid: 14692 - components: - - type: Transform - pos: -48.34661,48.423576 - parent: 2 - - uid: 14693 - components: - - type: Transform - pos: -38.38389,3.271461 - parent: 2 - - uid: 14694 - components: - - type: Transform - pos: 1.7562656,-2.5871618 - parent: 2 -- proto: ToyFigurineBoxer - entities: - - uid: 14024 - components: - - type: Transform - pos: 35.207005,12.911483 - parent: 2 -- proto: ToyFigurineCargoTech - entities: - - uid: 14695 - components: - - type: Transform - pos: 7.7041554,-16.06605 - parent: 2 -- proto: ToyFigurineChiefEngineer - entities: - - uid: 17852 - components: - - type: Transform - pos: -23.613476,-36.314056 - parent: 2 -- proto: ToyFigurineEngineer - entities: - - uid: 14696 - components: - - type: Transform - pos: 2.2488086,-9.017249 - parent: 2 -- proto: ToyFigurineSlime - entities: - - uid: 17853 - components: - - type: Transform - pos: -23.248894,-36.251144 - parent: 2 -- proto: ToyNuke - entities: - - uid: 14697 - components: - - type: Transform - pos: -47.588776,-13.505631 - parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 14698 - components: - - type: Transform - pos: 0.46778727,42.6243 - parent: 2 -- proto: ToySpawner - entities: - - uid: 14699 - components: - - type: Transform - pos: -35.5,15.5 - parent: 2 -- proto: TrainingBomb - entities: - - uid: 14700 - components: - - type: Transform - pos: -45.5,-14.5 - parent: 2 - - uid: 14701 - components: - - type: Transform - pos: -46.5,-17.5 - parent: 2 -- proto: TromboneInstrument - entities: - - uid: 14702 - components: - - type: Transform - pos: -13.500584,-7.4743967 - parent: 2 -- proto: TwoWayLever - entities: - - uid: 14703 - components: - - type: Transform - pos: 14.5,-8.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6190: - - Left: Forward - - Right: Reverse - - Middle: Off - 6191: - - Left: Forward - - Right: Reverse - - Middle: Off - 6192: - - Left: Forward - - Right: Reverse - - Middle: Off - 6193: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 14704 - components: - - type: Transform - pos: 10.5,-23.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6204: - - Left: Forward - - Right: Reverse - - Middle: Off - 6215: - - Left: Forward - - Right: Reverse - - Middle: Off - 6201: - - Left: Forward - - Right: Reverse - - Middle: Off - 6203: - - Left: Forward - - Right: Reverse - - Middle: Off - 6213: - - Left: Forward - - Right: Reverse - - Middle: Off - 6212: - - Left: Forward - - Right: Reverse - - Middle: Off - 6211: - - Left: Forward - - Right: Reverse - - Middle: Off - 6210: - - Left: Forward - - Right: Reverse - - Middle: Off - 6208: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 14705 - components: - - type: Transform - pos: -51.5,3.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13007: - - Left: Forward - - Right: Reverse - - Middle: Off - 6200: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 14706 - components: - - type: Transform - pos: 16.5,-21.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6199: - - Left: Forward - - Right: Reverse - - Middle: Off - 6198: - - Left: Forward - - Right: Reverse - - Middle: Off - 13008: - - Left: Forward - - Right: Reverse - - Middle: Off - 6197: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 14707 - components: - - type: Transform - pos: 14.5,-10.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 6194: - - Left: Forward - - Right: Reverse - - Middle: Off - 6189: - - Left: Forward - - Right: Reverse - - Middle: Off - 6188: - - Left: Forward - - Right: Reverse - - Middle: Off - 6186: - - Left: Forward - - Right: Reverse - - Middle: Off - 6187: - - Left: Forward - - Right: Reverse - - Middle: Off - 6196: - - Left: Forward - - Right: Reverse - - Middle: Off - 6219: - - Left: Forward - - Right: Reverse - - Middle: Off - 6218: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UnfinishedMachineFrame - entities: - - uid: 14277 - components: - - type: Transform - pos: -19.5,11.5 - parent: 2 - - uid: 14708 - components: - - type: Transform - pos: 21.5,-24.5 - parent: 2 - - uid: 14709 - components: - - type: Transform - pos: -12.5,-28.5 - parent: 2 -- proto: UniformPrinter - entities: - - uid: 14710 - components: - - type: Transform - pos: -3.5,36.5 - parent: 2 -- proto: UnstableMutagenChemistryBottle - entities: - - uid: 14711 - components: - - type: Transform - pos: -19.285854,6.843782 - parent: 2 -- proto: Vaccinator - entities: - - uid: 14712 - components: - - type: Transform - pos: 25.5,11.5 - parent: 2 -- proto: VariantCubeBox - entities: - - uid: 11933 - components: - - type: Transform - pos: 28.205595,12.3553095 - parent: 2 -- proto: VendingBarDrobe - entities: - - uid: 14715 - components: - - type: Transform - pos: -13.5,-3.5 - parent: 2 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 14716 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 2 -- proto: VendingMachineBooze - entities: - - uid: 14717 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 2 - - uid: 14718 - components: - - type: Transform - pos: 4.5,35.5 - parent: 2 - - uid: 14719 - components: - - type: Transform - pos: 34.5,-10.5 - parent: 2 -- proto: VendingMachineBoxingDrobe - entities: - - uid: 14720 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 -- proto: VendingMachineCargoDrobe - entities: - - uid: 14721 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 2 -- proto: VendingMachineCart - entities: - - uid: 14722 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 2 -- proto: VendingMachineChapel - entities: - - uid: 14723 - components: - - type: Transform - pos: -31.5,35.5 - parent: 2 -- proto: VendingMachineChefDrobe - entities: - - uid: 14724 - components: - - type: Transform - pos: -12.5,9.5 - parent: 2 -- proto: VendingMachineChefvend - entities: - - uid: 14725 - components: - - type: Transform - pos: -6.5,13.5 - parent: 2 - - uid: 14726 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 14727 - components: - - type: Transform - pos: 19.5,13.5 - parent: 2 -- proto: VendingMachineChemicals - entities: - - uid: 14728 - components: - - type: Transform - pos: -29.5,3.5 - parent: 2 - - uid: 14729 - components: - - type: Transform - pos: 14.5,13.5 - parent: 2 -- proto: VendingMachineCigs - entities: - - uid: 14730 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 2 - - uid: 14731 - components: - - type: Transform - pos: -0.5,29.5 - parent: 2 -- proto: VendingMachineClothing - entities: - - uid: 14732 - components: - - type: Transform - pos: -36.5,20.5 - parent: 2 -- proto: VendingMachineCondiments - entities: - - uid: 14733 - components: - - type: Transform - pos: -7.5,8.5 - parent: 2 - - uid: 14734 - components: - - type: Transform - pos: -6.5,19.5 - parent: 2 - - uid: 14735 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 2 -- proto: VendingMachineCourierDrobe - entities: - - uid: 14736 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 14737 - components: - - type: Transform - pos: -20.5,-11.5 - parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 14738 - components: - - type: Transform - pos: -6.5,14.5 - parent: 2 - - uid: 14739 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 2 -- proto: VendingMachineDiscount - entities: - - uid: 17800 - components: - - type: Transform - pos: -51.5,-11.5 - parent: 2 -- proto: VendingMachineDonut - entities: - - uid: 14740 - components: - - type: Transform - pos: -25.5,-2.5 - parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 14742 - components: - - type: Transform - pos: -4.5,-19.5 - parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 14743 - components: - - type: Transform - pos: -6.5,-26.5 - parent: 2 -- proto: VendingMachineGames - entities: - - uid: 14744 - components: - - type: Transform - pos: -45.5,30.5 - parent: 2 - - uid: 14745 - components: - - type: Transform - pos: -50.5,-12.5 - parent: 2 - - uid: 14746 - components: - - type: Transform - pos: 2.5,29.5 - parent: 2 -- proto: VendingMachineGeneDrobe - entities: - - uid: 14747 - components: - - type: Transform - pos: 19.5,23.5 - parent: 2 -- proto: VendingMachineHappyHonk - entities: - - uid: 13458 - components: - - type: Transform - pos: -6.5,15.5 - parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 14749 - components: - - type: Transform - pos: -22.5,9.5 - parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 14750 - components: - - type: Transform - pos: 1.5,12.5 - parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 14751 - components: - - type: Transform - pos: -19.5,19.5 - parent: 2 -- proto: VendingMachineMedical - entities: - - uid: 14752 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 2 - - uid: 14753 - components: - - type: Transform - pos: 20.5,8.5 - parent: 2 -- proto: VendingMachineMediDrobe - entities: - - uid: 14754 - components: - - type: Transform - pos: 6.5,12.5 - parent: 2 -- proto: VendingMachineMNKDrobe - entities: - - uid: 14755 - components: - - type: Transform - pos: -38.5,20.5 - parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 14756 - components: - - type: Transform - pos: -17.5,11.5 - parent: 2 -- proto: VendingMachinePride - entities: - - uid: 14757 - components: - - type: Transform - pos: -2.5,6.5 - parent: 2 -- proto: VendingMachineRepDrobe - entities: - - uid: 14758 - components: - - type: Transform - pos: -12.5,23.5 - parent: 2 -- proto: VendingMachineRestockChemVend - entities: - - uid: 14759 - components: - - type: Transform - pos: 8.652911,19.716545 - parent: 2 -- proto: VendingMachineRoboDrobe - entities: - - uid: 14760 - components: - - type: Transform - pos: -38.5,39.5 - parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 14761 - components: - - type: Transform - pos: -44.5,40.5 - parent: 2 -- proto: VendingMachineSalvage - entities: - - uid: 14762 - components: - - type: Transform - pos: 9.5,-29.5 - parent: 2 -- proto: VendingMachineSciDrobe - entities: - - uid: 14763 - components: - - type: Transform - pos: -38.5,33.5 - parent: 2 -- proto: VendingMachineSec - entities: - - uid: 14764 - components: - - type: Transform - pos: -25.5,-13.5 - parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 14765 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 14766 - components: - - type: Transform - pos: -18.5,11.5 - parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 14767 - components: - - type: Transform - pos: -61.5,-5.5 - parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 14768 - components: - - type: Transform - pos: -17.5,-42.5 - parent: 2 - - uid: 14769 - components: - - type: Transform - pos: -3.5,-51.5 - parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 14770 - components: - - type: Transform - pos: -25.5,-23.5 - parent: 2 -- proto: VendingMachineTheater - entities: - - uid: 14771 - components: - - type: Transform - pos: -36.5,19.5 - parent: 2 -- proto: VendingMachineVendomat - entities: - - uid: 14772 - components: - - type: Transform - pos: -41.5,25.5 - parent: 2 - - uid: 14773 - components: - - type: Transform - pos: -17.5,-70.5 - parent: 2 -- proto: VendingMachineViroDrobe - entities: - - uid: 14774 - components: - - type: Transform - pos: 25.5,16.5 - parent: 2 -- proto: VendingMachineWallMedical - entities: - - uid: 14775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,18.5 - parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 14776 - components: - - type: Transform - pos: 23.5,-7.5 - parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 584 - components: - - type: Transform - pos: 19.5,-13.5 - parent: 2 - - uid: 14777 - components: - - type: Transform - pos: -6.5,-27.5 - parent: 2 -- proto: WallReinforced - entities: - - uid: 2632 - components: - - type: Transform - pos: -28.5,-36.5 - parent: 2 - - uid: 2637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-47.5 - parent: 2 - - uid: 3890 - components: - - type: Transform - pos: -27.5,-41.5 - parent: 2 - - uid: 4432 - components: - - type: Transform - pos: -24.5,-29.5 - parent: 2 - - uid: 4433 - components: - - type: Transform - pos: -23.5,-29.5 - parent: 2 - - uid: 5876 - components: - - type: Transform - pos: -25.5,-29.5 - parent: 2 - - uid: 5878 - components: - - type: Transform - pos: -26.5,-29.5 - parent: 2 - - uid: 6088 - components: - - type: Transform - pos: -28.5,-29.5 - parent: 2 - - uid: 6089 - components: - - type: Transform - pos: -29.5,-29.5 - parent: 2 - - uid: 10710 - components: - - type: Transform - pos: 6.5,-25.5 - parent: 2 - - uid: 10711 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 2 - - uid: 10727 - components: - - type: Transform - pos: 5.5,-29.5 - parent: 2 - - uid: 11396 - components: - - type: Transform - pos: 8.5,-26.5 - parent: 2 - - uid: 11480 - components: - - type: Transform - pos: 8.5,-25.5 - parent: 2 - - uid: 13738 - components: - - type: Transform - pos: -41.5,-41.5 - parent: 2 - - uid: 14778 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 2 - - uid: 14779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-50.5 - parent: 2 - - uid: 14780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 2 - - uid: 14781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-52.5 - parent: 2 - - uid: 14782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-52.5 - parent: 2 - - uid: 14783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-46.5 - parent: 2 - - uid: 14784 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-54.5 - parent: 2 - - uid: 14785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 2 - - uid: 14786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-50.5 - parent: 2 - - uid: 14787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-34.5 - parent: 2 - - uid: 14788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 2 - - uid: 14789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-50.5 - parent: 2 - - uid: 14790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-39.5 - parent: 2 - - uid: 14791 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 2 - - uid: 14792 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 2 - - uid: 14793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-52.5 - parent: 2 - - uid: 14794 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-52.5 - parent: 2 - - uid: 14795 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 2 - - uid: 14796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-44.5 - parent: 2 - - uid: 14797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-42.5 - parent: 2 - - uid: 14798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 2 - - uid: 14799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-36.5 - parent: 2 - - uid: 14800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 2 - - uid: 14801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-42.5 - parent: 2 - - uid: 14802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-42.5 - parent: 2 - - uid: 14803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-53.5 - parent: 2 - - uid: 14804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-48.5 - parent: 2 - - uid: 14805 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 2 - - uid: 14806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-50.5 - parent: 2 - - uid: 14807 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-50.5 - parent: 2 - - uid: 14808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 2 - - uid: 14809 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-53.5 - parent: 2 - - uid: 14810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-52.5 - parent: 2 - - uid: 14811 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-50.5 - parent: 2 - - uid: 14812 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-52.5 - parent: 2 - - uid: 14813 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 2 - - uid: 14814 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-54.5 - parent: 2 - - uid: 14815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-52.5 - parent: 2 - - uid: 14816 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-35.5 - parent: 2 - - uid: 14817 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-52.5 - parent: 2 - - uid: 14818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-52.5 - parent: 2 - - uid: 14819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-52.5 - parent: 2 - - uid: 14820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-41.5 - parent: 2 - - uid: 14821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-50.5 - parent: 2 - - uid: 14822 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-48.5 - parent: 2 - - uid: 14823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-50.5 - parent: 2 - - uid: 14824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-41.5 - parent: 2 - - uid: 14825 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 2 - - uid: 14826 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-46.5 - parent: 2 - - uid: 14827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-39.5 - parent: 2 - - uid: 14828 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-49.5 - parent: 2 - - uid: 14829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-51.5 - parent: 2 - - uid: 14830 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-46.5 - parent: 2 - - uid: 14831 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-48.5 - parent: 2 - - uid: 14832 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-52.5 - parent: 2 - - uid: 14833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-50.5 - parent: 2 - - uid: 14834 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 2 - - uid: 14835 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-52.5 - parent: 2 - - uid: 14836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-52.5 - parent: 2 - - uid: 14837 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 2 - - uid: 14838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-52.5 - parent: 2 - - uid: 14839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-48.5 - parent: 2 - - uid: 14840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-46.5 - parent: 2 - - uid: 14841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-39.5 - parent: 2 - - uid: 14842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-36.5 - parent: 2 - - uid: 14843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-44.5 - parent: 2 - - uid: 14844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-44.5 - parent: 2 - - uid: 14845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-44.5 - parent: 2 - - uid: 14846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-54.5 - parent: 2 - - uid: 14847 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - - uid: 14848 - components: - - type: Transform - pos: -19.5,-6.5 - parent: 2 - - uid: 14849 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 2 - - uid: 14850 - components: - - type: Transform - pos: -19.5,-9.5 - parent: 2 - - uid: 14851 - components: - - type: Transform - pos: -32.5,-11.5 - parent: 2 - - uid: 14852 - components: - - type: Transform - pos: -33.5,-11.5 - parent: 2 - - uid: 14853 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 2 - - uid: 14854 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 2 - - uid: 14855 - components: - - type: Transform - pos: -16.5,13.5 - parent: 2 - - uid: 14856 - components: - - type: Transform - pos: -16.5,14.5 - parent: 2 - - uid: 14857 - components: - - type: Transform - pos: -16.5,15.5 - parent: 2 - - uid: 14858 - components: - - type: Transform - pos: -19.5,12.5 - parent: 2 - - uid: 14859 - components: - - type: Transform - pos: -18.5,12.5 - parent: 2 - - uid: 14860 - components: - - type: Transform - pos: -17.5,12.5 - parent: 2 - - uid: 14861 - components: - - type: Transform - pos: -16.5,12.5 - parent: 2 - - uid: 14862 - components: - - type: Transform - pos: 16.5,-1.5 - parent: 2 - - uid: 14863 - components: - - type: Transform - pos: 16.5,-2.5 - parent: 2 - - uid: 14864 - components: - - type: Transform - pos: 16.5,-3.5 - parent: 2 - - uid: 14865 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 2 - - uid: 14866 - components: - - type: Transform - pos: 16.5,-7.5 - parent: 2 - - uid: 14867 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 2 - - uid: 14868 - components: - - type: Transform - pos: -30.5,-16.5 - parent: 2 - - uid: 14869 - components: - - type: Transform - pos: 13.5,-35.5 - parent: 2 - - uid: 14870 - components: - - type: Transform - pos: 17.5,-7.5 - parent: 2 - - uid: 14871 - components: - - type: Transform - pos: -18.5,15.5 - parent: 2 - - uid: 14872 - components: - - type: Transform - pos: -19.5,15.5 - parent: 2 - - uid: 14873 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 - - uid: 14874 - components: - - type: Transform - pos: -19.5,13.5 - parent: 2 - - uid: 14875 - components: - - type: Transform - pos: 0.5,-15.5 - parent: 2 - - uid: 14876 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - - uid: 14877 - components: - - type: Transform - pos: 22.5,-7.5 - parent: 2 - - uid: 14878 - components: - - type: Transform - pos: 22.5,-2.5 - parent: 2 - - uid: 14879 - components: - - type: Transform - pos: 20.5,-7.5 - parent: 2 - - uid: 14880 - components: - - type: Transform - pos: 21.5,-7.5 - parent: 2 - - uid: 14881 - components: - - type: Transform - pos: -0.5,-29.5 - parent: 2 - - uid: 14882 - components: - - type: Transform - pos: 22.5,-3.5 - parent: 2 - - uid: 14883 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 2 - - uid: 14884 - components: - - type: Transform - pos: 22.5,-6.5 - parent: 2 - - uid: 14885 - components: - - type: Transform - pos: -33.5,-19.5 - parent: 2 - - uid: 14886 - components: - - type: Transform - pos: 0.5,-29.5 - parent: 2 - - uid: 14887 - components: - - type: Transform - pos: 1.5,-32.5 - parent: 2 - - uid: 14888 - components: - - type: Transform - pos: -4.5,-30.5 - parent: 2 - - uid: 14889 - components: - - type: Transform - pos: 1.5,-29.5 - parent: 2 - - uid: 14890 - components: - - type: Transform - pos: -0.5,-32.5 - parent: 2 - - uid: 14891 - components: - - type: Transform - pos: 7.5,-34.5 - parent: 2 - - uid: 14892 - components: - - type: Transform - pos: -23.5,-41.5 - parent: 2 - - uid: 14893 - components: - - type: Transform - pos: -26.5,-4.5 - parent: 2 - - uid: 14894 - components: - - type: Transform - pos: -32.5,-19.5 - parent: 2 - - uid: 14895 - components: - - type: Transform - pos: -45.5,-7.5 - parent: 2 - - uid: 14896 - components: - - type: Transform - pos: -29.5,-11.5 - parent: 2 - - uid: 14897 - components: - - type: Transform - pos: -9.5,-41.5 - parent: 2 - - uid: 14898 - components: - - type: Transform - pos: -26.5,-16.5 - parent: 2 - - uid: 14899 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 2 - - uid: 14900 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 2 - - uid: 14901 - components: - - type: Transform - pos: 1.5,-21.5 - parent: 2 - - uid: 14902 - components: - - type: Transform - pos: 28.5,-24.5 - parent: 2 - - uid: 14903 - components: - - type: Transform - pos: -45.5,0.5 - parent: 2 - - uid: 14904 - components: - - type: Transform - pos: -26.5,-6.5 - parent: 2 - - uid: 14905 - components: - - type: Transform - pos: -9.5,-39.5 - parent: 2 - - uid: 14906 - components: - - type: Transform - pos: -5.5,-14.5 - parent: 2 - - uid: 14907 - components: - - type: Transform - pos: -26.5,-5.5 - parent: 2 - - uid: 14908 - components: - - type: Transform - pos: -25.5,-6.5 - parent: 2 - - uid: 14909 - components: - - type: Transform - pos: -23.5,-6.5 - parent: 2 - - uid: 14910 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 2 - - uid: 14911 - components: - - type: Transform - pos: -20.5,-6.5 - parent: 2 - - uid: 14912 - components: - - type: Transform - pos: -26.5,-3.5 - parent: 2 - - uid: 14913 - components: - - type: Transform - pos: -19.5,-11.5 - parent: 2 - - uid: 14914 - components: - - type: Transform - pos: -19.5,-12.5 - parent: 2 - - uid: 14916 - components: - - type: Transform - pos: -19.5,-10.5 - parent: 2 - - uid: 14917 - components: - - type: Transform - pos: -19.5,-14.5 - parent: 2 - - uid: 14918 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 2 - - uid: 14919 - components: - - type: Transform - pos: -25.5,-16.5 - parent: 2 - - uid: 14920 - components: - - type: Transform - pos: -29.5,-3.5 - parent: 2 - - uid: 14921 - components: - - type: Transform - pos: -30.5,-3.5 - parent: 2 - - uid: 14922 - components: - - type: Transform - pos: -42.5,-16.5 - parent: 2 - - uid: 14923 - components: - - type: Transform - pos: -38.5,4.5 - parent: 2 - - uid: 14924 - components: - - type: Transform - pos: -27.5,-3.5 - parent: 2 - - uid: 14925 - components: - - type: Transform - pos: -31.5,-3.5 - parent: 2 - - uid: 14926 - components: - - type: Transform - pos: -45.5,-5.5 - parent: 2 - - uid: 14927 - components: - - type: Transform - pos: -38.5,-2.5 - parent: 2 - - uid: 14928 - components: - - type: Transform - pos: -36.5,-17.5 - parent: 2 - - uid: 14929 - components: - - type: Transform - pos: -0.5,-15.5 - parent: 2 - - uid: 14930 - components: - - type: Transform - pos: -41.5,-16.5 - parent: 2 - - uid: 14931 - components: - - type: Transform - pos: 21.5,-2.5 - parent: 2 - - uid: 14932 - components: - - type: Transform - pos: -37.5,-1.5 - parent: 2 - - uid: 14933 - components: - - type: Transform - pos: -37.5,-0.5 - parent: 2 - - uid: 14934 - components: - - type: Transform - pos: -37.5,-2.5 - parent: 2 - - uid: 14935 - components: - - type: Transform - pos: -0.5,-14.5 - parent: 2 - - uid: 14936 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 2 - - uid: 14937 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 2 - - uid: 14938 - components: - - type: Transform - pos: -35.5,-3.5 - parent: 2 - - uid: 14939 - components: - - type: Transform - pos: -44.5,-19.5 - parent: 2 - - uid: 14940 - components: - - type: Transform - pos: -34.5,-3.5 - parent: 2 - - uid: 14941 - components: - - type: Transform - pos: -36.5,-3.5 - parent: 2 - - uid: 14942 - components: - - type: Transform - pos: -37.5,-3.5 - parent: 2 - - uid: 14943 - components: - - type: Transform - pos: -28.5,0.5 - parent: 2 - - uid: 14944 - components: - - type: Transform - pos: -24.5,-16.5 - parent: 2 - - uid: 14945 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 2 - - uid: 14946 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 2 - - uid: 14947 - components: - - type: Transform - pos: -34.5,-4.5 - parent: 2 - - uid: 14948 - components: - - type: Transform - pos: -33.5,-14.5 - parent: 2 - - uid: 14949 - components: - - type: Transform - pos: -45.5,-6.5 - parent: 2 - - uid: 14950 - components: - - type: Transform - pos: -4.5,-14.5 - parent: 2 - - uid: 14951 - components: - - type: Transform - pos: -35.5,-19.5 - parent: 2 - - uid: 14952 - components: - - type: Transform - pos: -33.5,-3.5 - parent: 2 - - uid: 14953 - components: - - type: Transform - pos: -41.5,-18.5 - parent: 2 - - uid: 14954 - components: - - type: Transform - pos: -33.5,-18.5 - parent: 2 - - uid: 14955 - components: - - type: Transform - pos: -33.5,-17.5 - parent: 2 - - uid: 14956 - components: - - type: Transform - pos: -36.5,-18.5 - parent: 2 - - uid: 14957 - components: - - type: Transform - pos: -38.5,-18.5 - parent: 2 - - uid: 14958 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 2 - - uid: 14959 - components: - - type: Transform - pos: -33.5,-15.5 - parent: 2 - - uid: 14960 - components: - - type: Transform - pos: -41.5,-17.5 - parent: 2 - - uid: 14961 - components: - - type: Transform - pos: -38.5,-3.5 - parent: 2 - - uid: 14962 - components: - - type: Transform - pos: -39.5,-3.5 - parent: 2 - - uid: 14963 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 14964 - components: - - type: Transform - pos: -34.5,-7.5 - parent: 2 - - uid: 14965 - components: - - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 14966 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 2 - - uid: 14967 - components: - - type: Transform - pos: -39.5,-7.5 - parent: 2 - - uid: 14968 - components: - - type: Transform - pos: -39.5,-6.5 - parent: 2 - - uid: 14969 - components: - - type: Transform - pos: -36.5,-19.5 - parent: 2 - - uid: 14970 - components: - - type: Transform - pos: -39.5,-4.5 - parent: 2 - - uid: 14971 - components: - - type: Transform - pos: -41.5,-19.5 - parent: 2 - - uid: 14972 - components: - - type: Transform - pos: -40.5,-19.5 - parent: 2 - - uid: 14973 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 2 - - uid: 14974 - components: - - type: Transform - pos: -43.5,-3.5 - parent: 2 - - uid: 14975 - components: - - type: Transform - pos: -43.5,-16.5 - parent: 2 - - uid: 14976 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 2 - - uid: 14977 - components: - - type: Transform - pos: -38.5,-17.5 - parent: 2 - - uid: 14978 - components: - - type: Transform - pos: -42.5,-22.5 - parent: 2 - - uid: 14979 - components: - - type: Transform - pos: -43.5,-22.5 - parent: 2 - - uid: 14980 - components: - - type: Transform - pos: -44.5,-22.5 - parent: 2 - - uid: 14981 - components: - - type: Transform - pos: -29.5,-16.5 - parent: 2 - - uid: 14982 - components: - - type: Transform - pos: -29.5,-17.5 - parent: 2 - - uid: 14983 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 2 - - uid: 14984 - components: - - type: Transform - pos: -27.5,-16.5 - parent: 2 - - uid: 14985 - components: - - type: Transform - pos: 4.5,15.5 - parent: 2 - - uid: 14986 - components: - - type: Transform - pos: 4.5,16.5 - parent: 2 - - uid: 14987 - components: - - type: Transform - pos: -1.5,15.5 - parent: 2 - - uid: 14988 - components: - - type: Transform - pos: -0.5,15.5 - parent: 2 - - uid: 14989 - components: - - type: Transform - pos: 0.5,15.5 - parent: 2 - - uid: 14990 - components: - - type: Transform - pos: 1.5,15.5 - parent: 2 - - uid: 14991 - components: - - type: Transform - pos: 2.5,15.5 - parent: 2 - - uid: 14992 - components: - - type: Transform - pos: 3.5,15.5 - parent: 2 - - uid: 14993 - components: - - type: Transform - pos: 3.5,23.5 - parent: 2 - - uid: 14994 - components: - - type: Transform - pos: 4.5,21.5 - parent: 2 - - uid: 14995 - components: - - type: Transform - pos: 4.5,22.5 - parent: 2 - - uid: 14996 - components: - - type: Transform - pos: 4.5,23.5 - parent: 2 - - uid: 14997 - components: - - type: Transform - pos: 4.5,17.5 - parent: 2 - - uid: 14998 - components: - - type: Transform - pos: -1.5,23.5 - parent: 2 - - uid: 14999 - components: - - type: Transform - pos: 19.5,31.5 - parent: 2 - - uid: 15000 - components: - - type: Transform - pos: 2.5,-29.5 - parent: 2 - - uid: 15001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,5.5 - parent: 2 - - uid: 15002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-21.5 - parent: 2 - - uid: 15003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,6.5 - parent: 2 - - uid: 15004 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-22.5 - parent: 2 - - uid: 15005 - components: - - type: Transform - pos: -31.5,-16.5 - parent: 2 - - uid: 15006 - components: - - type: Transform - pos: -32.5,-16.5 - parent: 2 - - uid: 15007 - components: - - type: Transform - pos: -29.5,-19.5 - parent: 2 - - uid: 15008 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 15009 - components: - - type: Transform - pos: -38.5,-0.5 - parent: 2 - - uid: 15010 - components: - - type: Transform - pos: -41.5,-22.5 - parent: 2 - - uid: 15011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 - parent: 2 - - uid: 15012 - components: - - type: Transform - pos: -44.5,-3.5 - parent: 2 - - uid: 15013 - components: - - type: Transform - pos: -44.5,-7.5 - parent: 2 - - uid: 15014 - components: - - type: Transform - pos: -43.5,-7.5 - parent: 2 - - uid: 15015 - components: - - type: Transform - pos: 2.5,-34.5 - parent: 2 - - uid: 15016 - components: - - type: Transform - pos: -40.5,-7.5 - parent: 2 - - uid: 15017 - components: - - type: Transform - pos: -44.5,-2.5 - parent: 2 - - uid: 15018 - components: - - type: Transform - pos: -44.5,-1.5 - parent: 2 - - uid: 15019 - components: - - type: Transform - pos: -44.5,-0.5 - parent: 2 - - uid: 15020 - components: - - type: Transform - pos: -41.5,-10.5 - parent: 2 - - uid: 15021 - components: - - type: Transform - pos: -40.5,-10.5 - parent: 2 - - uid: 15022 - components: - - type: Transform - pos: 6.5,-23.5 - parent: 2 - - uid: 15023 - components: - - type: Transform - pos: 6.5,-28.5 - parent: 2 - - uid: 15025 - components: - - type: Transform - pos: 0.5,-21.5 - parent: 2 - - uid: 15026 - components: - - type: Transform - pos: 3.5,-21.5 - parent: 2 - - uid: 15027 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 2 - - uid: 15028 - components: - - type: Transform - pos: 5.5,-21.5 - parent: 2 - - uid: 15029 - components: - - type: Transform - pos: 5.5,-22.5 - parent: 2 - - uid: 15030 - components: - - type: Transform - pos: 6.5,-22.5 - parent: 2 - - uid: 15031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 2 - - uid: 15032 - components: - - type: Transform - pos: 7.5,-22.5 - parent: 2 - - uid: 15033 - components: - - type: Transform - pos: 8.5,-23.5 - parent: 2 - - uid: 15034 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 2 - - uid: 15035 - components: - - type: Transform - pos: 6.5,-29.5 - parent: 2 - - uid: 15036 - components: - - type: Transform - pos: -9.5,-38.5 - parent: 2 - - uid: 15037 - components: - - type: Transform - pos: -45.5,-4.5 - parent: 2 - - uid: 15038 - components: - - type: Transform - pos: -45.5,-3.5 - parent: 2 - - uid: 15039 - components: - - type: Transform - pos: -45.5,-1.5 - parent: 2 - - uid: 15040 - components: - - type: Transform - pos: -45.5,-0.5 - parent: 2 - - uid: 15041 - components: - - type: Transform - pos: -41.5,-13.5 - parent: 2 - - uid: 15042 - components: - - type: Transform - pos: -36.5,-16.5 - parent: 2 - - uid: 15043 - components: - - type: Transform - pos: -42.5,-13.5 - parent: 2 - - uid: 15044 - components: - - type: Transform - pos: -44.5,-16.5 - parent: 2 - - uid: 15045 - components: - - type: Transform - pos: -44.5,-21.5 - parent: 2 - - uid: 15046 - components: - - type: Transform - pos: -34.5,-19.5 - parent: 2 - - uid: 15047 - components: - - type: Transform - pos: -38.5,-16.5 - parent: 2 - - uid: 15048 - components: - - type: Transform - pos: -33.5,-22.5 - parent: 2 - - uid: 15049 - components: - - type: Transform - pos: -32.5,-22.5 - parent: 2 - - uid: 15050 - components: - - type: Transform - pos: -31.5,-22.5 - parent: 2 - - uid: 15051 - components: - - type: Transform - pos: -30.5,-22.5 - parent: 2 - - uid: 15052 - components: - - type: Transform - pos: -29.5,-22.5 - parent: 2 - - uid: 15053 - components: - - type: Transform - pos: -9.5,-42.5 - parent: 2 - - uid: 15054 - components: - - type: Transform - pos: -9.5,-37.5 - parent: 2 - - uid: 15055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-35.5 - parent: 2 - - uid: 15056 - components: - - type: Transform - pos: -43.5,-13.5 - parent: 2 - - uid: 15057 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 2 - - uid: 15058 - components: - - type: Transform - pos: 1.5,-34.5 - parent: 2 - - uid: 15059 - components: - - type: Transform - pos: -42.5,-10.5 - parent: 2 - - uid: 15060 - components: - - type: Transform - pos: -43.5,-10.5 - parent: 2 - - uid: 15061 - components: - - type: Transform - pos: 42.5,2.5 - parent: 2 - - uid: 15062 - components: - - type: Transform - pos: 0.5,-16.5 - parent: 2 - - uid: 15063 - components: - - type: Transform - pos: 3.5,-34.5 - parent: 2 - - uid: 15064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-24.5 - parent: 2 - - uid: 15065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-24.5 - parent: 2 - - uid: 15066 - components: - - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 15067 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 2 - - uid: 15068 - components: - - type: Transform - pos: 0.5,-34.5 - parent: 2 - - uid: 15069 - components: - - type: Transform - pos: -9.5,-43.5 - parent: 2 - - uid: 15070 - components: - - type: Transform - pos: 12.5,-41.5 - parent: 2 - - uid: 15071 - components: - - type: Transform - pos: 9.5,-44.5 - parent: 2 - - uid: 15072 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 2 - - uid: 15073 - components: - - type: Transform - pos: 2.5,-14.5 - parent: 2 - - uid: 15074 - components: - - type: Transform - pos: 3.5,-14.5 - parent: 2 - - uid: 15075 - components: - - type: Transform - pos: 13.5,9.5 - parent: 2 - - uid: 15076 - components: - - type: Transform - pos: 6.5,13.5 - parent: 2 - - uid: 15077 - components: - - type: Transform - pos: 23.5,-32.5 - parent: 2 - - uid: 15078 - components: - - type: Transform - pos: 6.5,5.5 - parent: 2 - - uid: 15079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-27.5 - parent: 2 - - uid: 15080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-26.5 - parent: 2 - - uid: 15081 - components: - - type: Transform - pos: 8.5,5.5 - parent: 2 - - uid: 15082 - components: - - type: Transform - pos: 7.5,5.5 - parent: 2 - - uid: 15083 - components: - - type: Transform - pos: 5.5,6.5 - parent: 2 - - uid: 15084 - components: - - type: Transform - pos: 24.5,5.5 - parent: 2 - - uid: 15085 - components: - - type: Transform - pos: 16.5,9.5 - parent: 2 - - uid: 15086 - components: - - type: Transform - pos: 5.5,8.5 - parent: 2 - - uid: 15087 - components: - - type: Transform - pos: 5.5,9.5 - parent: 2 - - uid: 15088 - components: - - type: Transform - pos: 5.5,10.5 - parent: 2 - - uid: 15089 - components: - - type: Transform - pos: 5.5,11.5 - parent: 2 - - uid: 15090 - components: - - type: Transform - pos: 5.5,12.5 - parent: 2 - - uid: 15091 - components: - - type: Transform - pos: 5.5,13.5 - parent: 2 - - uid: 15092 - components: - - type: Transform - pos: 7.5,13.5 - parent: 2 - - uid: 15093 - components: - - type: Transform - pos: -24.5,-17.5 - parent: 2 - - uid: 15094 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 2 - - uid: 15095 - components: - - type: Transform - pos: -19.5,-20.5 - parent: 2 - - uid: 15096 - components: - - type: Transform - pos: -44.5,-10.5 - parent: 2 - - uid: 15097 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 2 - - uid: 15098 - components: - - type: Transform - pos: -44.5,-14.5 - parent: 2 - - uid: 15099 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 2 - - uid: 15100 - components: - - type: Transform - pos: -20.5,-17.5 - parent: 2 - - uid: 15101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-35.5 - parent: 2 - - uid: 15102 - components: - - type: Transform - pos: -44.5,-12.5 - parent: 2 - - uid: 15103 - components: - - type: Transform - pos: -44.5,-13.5 - parent: 2 - - uid: 15104 - components: - - type: Transform - pos: -44.5,-15.5 - parent: 2 - - uid: 15105 - components: - - type: Transform - pos: 8.5,-40.5 - parent: 2 - - uid: 15106 - components: - - type: Transform - pos: -2.5,-29.5 - parent: 2 - - uid: 15107 - components: - - type: Transform - pos: -3.5,-29.5 - parent: 2 - - uid: 15108 - components: - - type: Transform - pos: -4.5,-29.5 - parent: 2 - - uid: 15109 - components: - - type: Transform - pos: 7.5,-29.5 - parent: 2 - - uid: 15110 - components: - - type: Transform - pos: 23.5,-25.5 - parent: 2 - - uid: 15111 - components: - - type: Transform - pos: 23.5,-24.5 - parent: 2 - - uid: 15112 - components: - - type: Transform - pos: 23.5,-23.5 - parent: 2 - - uid: 15113 - components: - - type: Transform - pos: -45.5,40.5 - parent: 2 - - uid: 15114 - components: - - type: Transform - pos: 27.5,-23.5 - parent: 2 - - uid: 15115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-80.5 - parent: 2 - - uid: 15116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,10.5 - parent: 2 - - uid: 15117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-2.5 - parent: 2 - - uid: 15118 - components: - - type: Transform - pos: 17.5,9.5 - parent: 2 - - uid: 15119 - components: - - type: Transform - pos: 24.5,4.5 - parent: 2 - - uid: 15120 - components: - - type: Transform - pos: -44.5,-11.5 - parent: 2 - - uid: 15121 - components: - - type: Transform - pos: 22.5,-18.5 - parent: 2 - - uid: 15122 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 2 - - uid: 15123 - components: - - type: Transform - pos: 22.5,-21.5 - parent: 2 - - uid: 15124 - components: - - type: Transform - pos: 20.5,-35.5 - parent: 2 - - uid: 15125 - components: - - type: Transform - pos: -13.5,30.5 - parent: 2 - - uid: 15126 - components: - - type: Transform - pos: 4.5,36.5 - parent: 2 - - uid: 15127 - components: - - type: Transform - pos: -1.5,24.5 - parent: 2 - - uid: 15128 - components: - - type: Transform - pos: 5.5,32.5 - parent: 2 - - uid: 15129 - components: - - type: Transform - pos: -46.5,-19.5 - parent: 2 - - uid: 15130 - components: - - type: Transform - pos: -45.5,-19.5 - parent: 2 - - uid: 15131 - components: - - type: Transform - pos: -48.5,-1.5 - parent: 2 - - uid: 15132 - components: - - type: Transform - pos: -18.5,-6.5 - parent: 2 - - uid: 15133 - components: - - type: Transform - pos: -19.5,-5.5 - parent: 2 - - uid: 15134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-18.5 - parent: 2 - - uid: 15135 - components: - - type: Transform - pos: -47.5,-1.5 - parent: 2 - - uid: 15136 - components: - - type: Transform - pos: -52.5,-1.5 - parent: 2 - - uid: 15137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-18.5 - parent: 2 - - uid: 15138 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 2 - - uid: 15139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-19.5 - parent: 2 - - uid: 15140 - components: - - type: Transform - pos: -51.5,-1.5 - parent: 2 - - uid: 15141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-17.5 - parent: 2 - - uid: 15142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-16.5 - parent: 2 - - uid: 15143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-15.5 - parent: 2 - - uid: 15144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-14.5 - parent: 2 - - uid: 15145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-13.5 - parent: 2 - - uid: 15146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-12.5 - parent: 2 - - uid: 15147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-11.5 - parent: 2 - - uid: 15148 - components: - - type: Transform - pos: -48.5,-0.5 - parent: 2 - - uid: 15149 - components: - - type: Transform - pos: -48.5,0.5 - parent: 2 - - uid: 15150 - components: - - type: Transform - pos: -48.5,1.5 - parent: 2 - - uid: 15151 - components: - - type: Transform - pos: -48.5,2.5 - parent: 2 - - uid: 15152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,4.5 - parent: 2 - - uid: 15153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,3.5 - parent: 2 - - uid: 15154 - components: - - type: Transform - pos: -50.5,-10.5 - parent: 2 - - uid: 15155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-7.5 - parent: 2 - - uid: 15156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 2 - - uid: 15157 - components: - - type: Transform - pos: -50.5,-7.5 - parent: 2 - - uid: 15158 - components: - - type: Transform - pos: -50.5,-6.5 - parent: 2 - - uid: 15159 - components: - - type: Transform - pos: -50.5,-5.5 - parent: 2 - - uid: 15160 - components: - - type: Transform - pos: -50.5,-1.5 - parent: 2 - - uid: 15161 - components: - - type: Transform - pos: -9.5,-40.5 - parent: 2 - - uid: 15162 - components: - - type: Transform - pos: -9.5,-46.5 - parent: 2 - - uid: 15163 - components: - - type: Transform - pos: -41.5,-30.5 - parent: 2 - - uid: 15164 - components: - - type: Transform - pos: -23.5,-31.5 - parent: 2 - - uid: 15165 - components: - - type: Transform - pos: -17.5,-40.5 - parent: 2 - - uid: 15166 - components: - - type: Transform - pos: -17.5,-38.5 - parent: 2 - - uid: 15167 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 2 - - uid: 15168 - components: - - type: Transform - pos: -9.5,-36.5 - parent: 2 - - uid: 15169 - components: - - type: Transform - pos: -9.5,-44.5 - parent: 2 - - uid: 15170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 - parent: 2 - - uid: 15171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-46.5 - parent: 2 - - uid: 15172 - components: - - type: Transform - pos: -23.5,-42.5 - parent: 2 - - uid: 15173 - components: - - type: Transform - pos: -24.5,-48.5 - parent: 2 - - uid: 15174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-41.5 - parent: 2 - - uid: 15175 - components: - - type: Transform - pos: -18.5,-47.5 - parent: 2 - - uid: 15176 - components: - - type: Transform - pos: -26.5,-23.5 - parent: 2 - - uid: 15177 - components: - - type: Transform - pos: -23.5,-34.5 - parent: 2 - - uid: 15178 - components: - - type: Transform - pos: -23.5,-35.5 - parent: 2 - - uid: 15179 - components: - - type: Transform - pos: 8.5,-45.5 - parent: 2 - - uid: 15180 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 2 - - uid: 15181 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 2 - - uid: 15182 - components: - - type: Transform - pos: 8.5,-42.5 - parent: 2 - - uid: 15183 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 2 - - uid: 15184 - components: - - type: Transform - pos: -19.5,-21.5 - parent: 2 - - uid: 15185 - components: - - type: Transform - pos: -19.5,-47.5 - parent: 2 - - uid: 15186 - components: - - type: Transform - pos: -26.5,-25.5 - parent: 2 - - uid: 15187 - components: - - type: Transform - pos: -23.5,-26.5 - parent: 2 - - uid: 15188 - components: - - type: Transform - pos: -14.5,-47.5 - parent: 2 - - uid: 15189 - components: - - type: Transform - pos: -19.5,-25.5 - parent: 2 - - uid: 15190 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 2 - - uid: 15191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-35.5 - parent: 2 - - uid: 15192 - components: - - type: Transform - pos: -23.5,-48.5 - parent: 2 - - uid: 15193 - components: - - type: Transform - pos: -26.5,-26.5 - parent: 2 - - uid: 15194 - components: - - type: Transform - pos: -25.5,-26.5 - parent: 2 - - uid: 15195 - components: - - type: Transform - pos: -24.5,-26.5 - parent: 2 - - uid: 15196 - components: - - type: Transform - pos: -22.5,-26.5 - parent: 2 - - uid: 15197 - components: - - type: Transform - pos: -20.5,-26.5 - parent: 2 - - uid: 15198 - components: - - type: Transform - pos: -19.5,-26.5 - parent: 2 - - uid: 15199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 2 - - uid: 15200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-29.5 - parent: 2 - - uid: 15201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-29.5 - parent: 2 - - uid: 15202 - components: - - type: Transform - pos: -38.5,-29.5 - parent: 2 - - uid: 15205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-41.5 - parent: 2 - - uid: 15206 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-41.5 - parent: 2 - - uid: 15207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-41.5 - parent: 2 - - uid: 15208 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-35.5 - parent: 2 - - uid: 15209 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-45.5 - parent: 2 - - uid: 15210 - components: - - type: Transform - pos: -25.5,-47.5 - parent: 2 - - uid: 15212 - components: - - type: Transform - pos: 13.5,13.5 - parent: 2 - - uid: 15215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-47.5 - parent: 2 - - uid: 15216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-47.5 - parent: 2 - - uid: 15218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-47.5 - parent: 2 - - uid: 15219 - components: - - type: Transform - pos: -30.5,-47.5 - parent: 2 - - uid: 15220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-47.5 - parent: 2 - - uid: 15221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-47.5 - parent: 2 - - uid: 15222 - components: - - type: Transform - pos: 12.5,-44.5 - parent: 2 - - uid: 15223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-30.5 - parent: 2 - - uid: 15225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-47.5 - parent: 2 - - uid: 15227 - components: - - type: Transform - pos: -41.5,-29.5 - parent: 2 - - uid: 15230 - components: - - type: Transform - pos: -39.5,-30.5 - parent: 2 - - uid: 15231 - components: - - type: Transform - pos: -40.5,-45.5 - parent: 2 - - uid: 15232 - components: - - type: Transform - pos: -40.5,-41.5 - parent: 2 - - uid: 15233 - components: - - type: Transform - pos: -40.5,-40.5 - parent: 2 - - uid: 15234 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 15235 - components: - - type: Transform - pos: -40.5,-36.5 - parent: 2 - - uid: 15236 - components: - - type: Transform - pos: -40.5,-35.5 - parent: 2 - - uid: 15237 - components: - - type: Transform - pos: -40.5,-31.5 - parent: 2 - - uid: 15238 - components: - - type: Transform - pos: -18.5,-35.5 - parent: 2 - - uid: 15239 - components: - - type: Transform - pos: -18.5,-41.5 - parent: 2 - - uid: 15240 - components: - - type: Transform - pos: -17.5,-41.5 - parent: 2 - - uid: 15241 - components: - - type: Transform - pos: -40.5,-29.5 - parent: 2 - - uid: 15242 - components: - - type: Transform - pos: 3.5,-35.5 - parent: 2 - - uid: 15243 - components: - - type: Transform - pos: -9.5,-45.5 - parent: 2 - - uid: 15246 - components: - - type: Transform - pos: -40.5,-30.5 - parent: 2 - - uid: 15247 - components: - - type: Transform - pos: 6.5,-40.5 - parent: 2 - - uid: 15248 - components: - - type: Transform - pos: -41.5,-28.5 - parent: 2 - - uid: 15249 - components: - - type: Transform - pos: -39.5,-48.5 - parent: 2 - - uid: 15250 - components: - - type: Transform - pos: -40.5,-48.5 - parent: 2 - - uid: 15252 - components: - - type: Transform - pos: -22.5,-48.5 - parent: 2 - - uid: 15253 - components: - - type: Transform - pos: -40.5,-28.5 - parent: 2 - - uid: 15254 - components: - - type: Transform - pos: -20.5,-47.5 - parent: 2 - - uid: 15255 - components: - - type: Transform - pos: -39.5,-28.5 - parent: 2 - - uid: 15256 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 2 - - uid: 15257 - components: - - type: Transform - pos: -33.5,-26.5 - parent: 2 - - uid: 15258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-29.5 - parent: 2 - - uid: 15259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-28.5 - parent: 2 - - uid: 15260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-28.5 - parent: 2 - - uid: 15261 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 2 - - uid: 15262 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 2 - - uid: 15263 - components: - - type: Transform - pos: -29.5,-23.5 - parent: 2 - - uid: 15264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-48.5 - parent: 2 - - uid: 15265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 - parent: 2 - - uid: 15266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 - parent: 2 - - uid: 15267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-47.5 - parent: 2 - - uid: 15268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-47.5 - parent: 2 - - uid: 15269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-47.5 - parent: 2 - - uid: 15270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 2 - - uid: 15271 - components: - - type: Transform - pos: 8.5,-35.5 - parent: 2 - - uid: 15272 - components: - - type: Transform - pos: 5.5,-40.5 - parent: 2 - - uid: 15273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-48.5 - parent: 2 - - uid: 15274 - components: - - type: Transform - pos: -33.5,-27.5 - parent: 2 - - uid: 15275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-28.5 - parent: 2 - - uid: 15276 - components: - - type: Transform - pos: 13.5,14.5 - parent: 2 - - uid: 15277 - components: - - type: Transform - pos: 13.5,11.5 - parent: 2 - - uid: 15278 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-29.5 - parent: 2 - - uid: 15280 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 2 - - uid: 15281 - components: - - type: Transform - pos: -33.5,-24.5 - parent: 2 - - uid: 15282 - components: - - type: Transform - pos: -24.5,-30.5 - parent: 2 - - uid: 15283 - components: - - type: Transform - pos: 7.5,-40.5 - parent: 2 - - uid: 15284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-15.5 - parent: 2 - - uid: 15285 - components: - - type: Transform - pos: 8.5,-34.5 - parent: 2 - - uid: 15286 - components: - - type: Transform - pos: 8.5,-39.5 - parent: 2 - - uid: 15287 - components: - - type: Transform - pos: 8.5,-36.5 - parent: 2 - - uid: 15288 - components: - - type: Transform - pos: 4.5,-40.5 - parent: 2 - - uid: 15289 - components: - - type: Transform - pos: -55.5,2.5 - parent: 2 - - uid: 15290 - components: - - type: Transform - pos: -52.5,-5.5 - parent: 2 - - uid: 15291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-10.5 - parent: 2 - - uid: 15292 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-7.5 - parent: 2 - - uid: 15293 - components: - - type: Transform - pos: -51.5,-5.5 - parent: 2 - - uid: 15294 - components: - - type: Transform - pos: -50.5,-3.5 - parent: 2 - - uid: 15295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-7.5 - parent: 2 - - uid: 15296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-5.5 - parent: 2 - - uid: 15297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-1.5 - parent: 2 - - uid: 15298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,4.5 - parent: 2 - - uid: 15299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-18.5 - parent: 2 - - uid: 15300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-17.5 - parent: 2 - - uid: 15301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-15.5 - parent: 2 - - uid: 15302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-17.5 - parent: 2 - - uid: 15303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-16.5 - parent: 2 - - uid: 15304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-18.5 - parent: 2 - - uid: 15305 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-11.5 - parent: 2 - - uid: 15306 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-18.5 - parent: 2 - - uid: 15307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-18.5 - parent: 2 - - uid: 15308 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-11.5 - parent: 2 - - uid: 15309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-18.5 - parent: 2 - - uid: 15310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-18.5 - parent: 2 - - uid: 15311 - components: - - type: Transform - pos: -58.5,-10.5 - parent: 2 - - uid: 15312 - components: - - type: Transform - pos: -59.5,-10.5 - parent: 2 - - uid: 15313 - components: - - type: Transform - pos: -60.5,-10.5 - parent: 2 - - uid: 15314 - components: - - type: Transform - pos: -61.5,-10.5 - parent: 2 - - uid: 15315 - components: - - type: Transform - pos: -61.5,-4.5 - parent: 2 - - uid: 15316 - components: - - type: Transform - pos: -60.5,-4.5 - parent: 2 - - uid: 15317 - components: - - type: Transform - pos: -59.5,-4.5 - parent: 2 - - uid: 15318 - components: - - type: Transform - pos: -58.5,-4.5 - parent: 2 - - uid: 15319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-3.5 - parent: 2 - - uid: 15320 - components: - - type: Transform - pos: 20.5,13.5 - parent: 2 - - uid: 15321 - components: - - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 15322 - components: - - type: Transform - pos: 20.5,14.5 - parent: 2 - - uid: 15323 - components: - - type: Transform - pos: -54.5,-1.5 - parent: 2 - - uid: 15324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,8.5 - parent: 2 - - uid: 15325 - components: - - type: Transform - pos: -54.5,-3.5 - parent: 2 - - uid: 15326 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-2.5 - parent: 2 - - uid: 15327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,3.5 - parent: 2 - - uid: 15328 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,3.5 - parent: 2 - - uid: 15329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,3.5 - parent: 2 - - uid: 15330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,3.5 - parent: 2 - - uid: 15331 - components: - - type: Transform - pos: 19.5,14.5 - parent: 2 - - uid: 15332 - components: - - type: Transform - pos: 17.5,-2.5 - parent: 2 - - uid: 15333 - components: - - type: Transform - pos: -18.5,-50.5 - parent: 2 - - uid: 15334 - components: - - type: Transform - pos: -14.5,-50.5 - parent: 2 - - uid: 15335 - components: - - type: Transform - pos: -18.5,-49.5 - parent: 2 - - uid: 15336 - components: - - type: Transform - pos: -18.5,-48.5 - parent: 2 - - uid: 15337 - components: - - type: Transform - pos: -14.5,-48.5 - parent: 2 - - uid: 15338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,3.5 - parent: 2 - - uid: 15339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,2.5 - parent: 2 - - uid: 15340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,2.5 - parent: 2 - - uid: 15341 - components: - - type: Transform - pos: 17.5,14.5 - parent: 2 - - uid: 15342 - components: - - type: Transform - pos: -54.5,-5.5 - parent: 2 - - uid: 15343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 2 - - uid: 15344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-4.5 - parent: 2 - - uid: 15345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,4.5 - parent: 2 - - uid: 15346 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-10.5 - parent: 2 - - uid: 15347 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 15348 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,4.5 - parent: 2 - - uid: 15349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,4.5 - parent: 2 - - uid: 15350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,2.5 - parent: 2 - - uid: 15351 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-4.5 - parent: 2 - - uid: 15352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-5.5 - parent: 2 - - uid: 15353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-9.5 - parent: 2 - - uid: 15354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-11.5 - parent: 2 - - uid: 15355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-12.5 - parent: 2 - - uid: 15356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-18.5 - parent: 2 - - uid: 15357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-13.5 - parent: 2 - - uid: 15358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-14.5 - parent: 2 - - uid: 15359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-15.5 - parent: 2 - - uid: 15360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-16.5 - parent: 2 - - uid: 15361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,44.5 - parent: 2 - - uid: 15362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-17.5 - parent: 2 - - uid: 15363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-16.5 - parent: 2 - - uid: 15364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-16.5 - parent: 2 - - uid: 15365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-15.5 - parent: 2 - - uid: 15366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-15.5 - parent: 2 - - uid: 15367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-15.5 - parent: 2 - - uid: 15368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-15.5 - parent: 2 - - uid: 15369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-17.5 - parent: 2 - - uid: 15370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,3.5 - parent: 2 - - uid: 15371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,2.5 - parent: 2 - - uid: 15372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,1.5 - parent: 2 - - uid: 15373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,0.5 - parent: 2 - - uid: 15374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-2.5 - parent: 2 - - uid: 15375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-12.5 - parent: 2 - - uid: 15376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-13.5 - parent: 2 - - uid: 15377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-13.5 - parent: 2 - - uid: 15378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-20.5 - parent: 2 - - uid: 15379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-20.5 - parent: 2 - - uid: 15380 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 2 - - uid: 15381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-16.5 - parent: 2 - - uid: 15382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-16.5 - parent: 2 - - uid: 15383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-16.5 - parent: 2 - - uid: 15384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 2 - - uid: 15385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 2 - - uid: 15386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-4.5 - parent: 2 - - uid: 15387 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 2 - - uid: 15388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-8.5 - parent: 2 - - uid: 15389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-8.5 - parent: 2 - - uid: 15390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-4.5 - parent: 2 - - uid: 15391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 2 - - uid: 15392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 2 - - uid: 15393 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 2 - - uid: 15394 - components: - - type: Transform - pos: -49.5,-1.5 - parent: 2 - - uid: 15395 - components: - - type: Transform - pos: 41.5,0.5 - parent: 2 - - uid: 15396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-35.5 - parent: 2 - - uid: 15397 - components: - - type: Transform - pos: -66.5,-4.5 - parent: 2 - - uid: 15398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-33.5 - parent: 2 - - uid: 15399 - components: - - type: Transform - pos: 5.5,36.5 - parent: 2 - - uid: 15400 - components: - - type: Transform - pos: 41.5,-23.5 - parent: 2 - - uid: 15401 - components: - - type: Transform - pos: 40.5,-23.5 - parent: 2 - - uid: 15402 - components: - - type: Transform - pos: 39.5,-23.5 - parent: 2 - - uid: 15403 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-5.5 - parent: 2 - - uid: 15404 - components: - - type: Transform - pos: 26.5,-23.5 - parent: 2 - - uid: 15405 - components: - - type: Transform - pos: 41.5,1.5 - parent: 2 - - uid: 15406 - components: - - type: Transform - pos: 35.5,-23.5 - parent: 2 - - uid: 15407 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 2 - - uid: 15408 - components: - - type: Transform - pos: 28.5,-23.5 - parent: 2 - - uid: 15409 - components: - - type: Transform - pos: 32.5,-23.5 - parent: 2 - - uid: 15410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,10.5 - parent: 2 - - uid: 15411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,10.5 - parent: 2 - - uid: 15412 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,10.5 - parent: 2 - - uid: 15413 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - - uid: 15414 - components: - - type: Transform - pos: 13.5,10.5 - parent: 2 - - uid: 15415 - components: - - type: Transform - pos: 24.5,3.5 - parent: 2 - - uid: 15416 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - - uid: 15417 - components: - - type: Transform - pos: 23.5,-33.5 - parent: 2 - - uid: 15418 - components: - - type: Transform - pos: 24.5,-23.5 - parent: 2 - - uid: 15419 - components: - - type: Transform - pos: 29.5,4.5 - parent: 2 - - uid: 15420 - components: - - type: Transform - pos: 29.5,3.5 - parent: 2 - - uid: 15421 - components: - - type: Transform - pos: 14.5,14.5 - parent: 2 - - uid: 15422 - components: - - type: Transform - pos: 29.5,9.5 - parent: 2 - - uid: 15423 - components: - - type: Transform - pos: 29.5,8.5 - parent: 2 - - uid: 15424 - components: - - type: Transform - pos: 29.5,7.5 - parent: 2 - - uid: 15425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 2 - - uid: 15426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,10.5 - parent: 2 - - uid: 15427 - components: - - type: Transform - pos: -5.5,-81.5 - parent: 2 - - uid: 15428 - components: - - type: Transform - pos: -5.5,-82.5 - parent: 2 - - uid: 15429 - components: - - type: Transform - pos: -6.5,-82.5 - parent: 2 - - uid: 15430 - components: - - type: Transform - pos: -6.5,-81.5 - parent: 2 - - uid: 15431 - components: - - type: Transform - pos: -7.5,-82.5 - parent: 2 - - uid: 15432 - components: - - type: Transform - pos: -5.5,-80.5 - parent: 2 - - uid: 15433 - components: - - type: Transform - pos: -7.5,-81.5 - parent: 2 - - uid: 15434 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-80.5 - parent: 2 - - uid: 15435 - components: - - type: Transform - pos: -1.5,-74.5 - parent: 2 - - uid: 15436 - components: - - type: Transform - pos: -1.5,-75.5 - parent: 2 - - uid: 15437 - components: - - type: Transform - pos: -1.5,-76.5 - parent: 2 - - uid: 15438 - components: - - type: Transform - pos: -1.5,-77.5 - parent: 2 - - uid: 15439 - components: - - type: Transform - pos: -1.5,-78.5 - parent: 2 - - uid: 15440 - components: - - type: Transform - pos: -2.5,-74.5 - parent: 2 - - uid: 15441 - components: - - type: Transform - pos: -2.5,-75.5 - parent: 2 - - uid: 15442 - components: - - type: Transform - pos: -2.5,-76.5 - parent: 2 - - uid: 15443 - components: - - type: Transform - pos: -2.5,-77.5 - parent: 2 - - uid: 15444 - components: - - type: Transform - pos: -2.5,-78.5 - parent: 2 - - uid: 15445 - components: - - type: Transform - pos: -3.5,-78.5 - parent: 2 - - uid: 15446 - components: - - type: Transform - pos: -3.5,-79.5 - parent: 2 - - uid: 15447 - components: - - type: Transform - pos: -3.5,-80.5 - parent: 2 - - uid: 15448 - components: - - type: Transform - pos: -2.5,-80.5 - parent: 2 - - uid: 15449 - components: - - type: Transform - pos: -2.5,-79.5 - parent: 2 - - uid: 15450 - components: - - type: Transform - pos: -3.5,-73.5 - parent: 2 - - uid: 15451 - components: - - type: Transform - pos: -2.5,-73.5 - parent: 2 - - uid: 15452 - components: - - type: Transform - pos: -2.5,-72.5 - parent: 2 - - uid: 15453 - components: - - type: Transform - pos: -3.5,-72.5 - parent: 2 - - uid: 15454 - components: - - type: Transform - pos: -3.5,-74.5 - parent: 2 - - uid: 15455 - components: - - type: Transform - pos: -4.5,-71.5 - parent: 2 - - uid: 15456 - components: - - type: Transform - pos: -3.5,-71.5 - parent: 2 - - uid: 15457 - components: - - type: Transform - pos: -4.5,-72.5 - parent: 2 - - uid: 15458 - components: - - type: Transform - pos: -4.5,-80.5 - parent: 2 - - uid: 15459 - components: - - type: Transform - pos: -4.5,-81.5 - parent: 2 - - uid: 15460 - components: - - type: Transform - pos: -3.5,-81.5 - parent: 2 - - uid: 15461 - components: - - type: Transform - pos: -3.5,-75.5 - parent: 2 - - uid: 15462 - components: - - type: Transform - pos: -19.5,-71.5 - parent: 2 - - uid: 15463 - components: - - type: Transform - pos: -3.5,-77.5 - parent: 2 - - uid: 15464 - components: - - type: Transform - pos: -8.5,-81.5 - parent: 2 - - uid: 15465 - components: - - type: Transform - pos: -13.5,-73.5 - parent: 2 - - uid: 15466 - components: - - type: Transform - pos: -5.5,-72.5 - parent: 2 - - uid: 15467 - components: - - type: Transform - pos: -5.5,-71.5 - parent: 2 - - uid: 15468 - components: - - type: Transform - pos: -5.5,-70.5 - parent: 2 - - uid: 15469 - components: - - type: Transform - pos: -6.5,-71.5 - parent: 2 - - uid: 15470 - components: - - type: Transform - pos: -6.5,-70.5 - parent: 2 - - uid: 15471 - components: - - type: Transform - pos: -7.5,-70.5 - parent: 2 - - uid: 15472 - components: - - type: Transform - pos: -7.5,-71.5 - parent: 2 - - uid: 15473 - components: - - type: Transform - pos: -7.5,-72.5 - parent: 2 - - uid: 15474 - components: - - type: Transform - pos: -8.5,-72.5 - parent: 2 - - uid: 15475 - components: - - type: Transform - pos: -8.5,-71.5 - parent: 2 - - uid: 15476 - components: - - type: Transform - pos: -8.5,-70.5 - parent: 2 - - uid: 15477 - components: - - type: Transform - pos: -9.5,-72.5 - parent: 2 - - uid: 15478 - components: - - type: Transform - pos: -9.5,-71.5 - parent: 2 - - uid: 15479 - components: - - type: Transform - pos: -9.5,-70.5 - parent: 2 - - uid: 15480 - components: - - type: Transform - pos: -10.5,-72.5 - parent: 2 - - uid: 15481 - components: - - type: Transform - pos: -10.5,-71.5 - parent: 2 - - uid: 15482 - components: - - type: Transform - pos: -10.5,-70.5 - parent: 2 - - uid: 15483 - components: - - type: Transform - pos: -11.5,-72.5 - parent: 2 - - uid: 15484 - components: - - type: Transform - pos: -11.5,-71.5 - parent: 2 - - uid: 15485 - components: - - type: Transform - pos: -11.5,-70.5 - parent: 2 - - uid: 15486 - components: - - type: Transform - pos: -12.5,-72.5 - parent: 2 - - uid: 15487 - components: - - type: Transform - pos: -12.5,-71.5 - parent: 2 - - uid: 15488 - components: - - type: Transform - pos: -12.5,-70.5 - parent: 2 - - uid: 15489 - components: - - type: Transform - pos: -13.5,-72.5 - parent: 2 - - uid: 15490 - components: - - type: Transform - pos: -13.5,-71.5 - parent: 2 - - uid: 15491 - components: - - type: Transform - pos: -13.5,-70.5 - parent: 2 - - uid: 15492 - components: - - type: Transform - pos: -13.5,-69.5 - parent: 2 - - uid: 15493 - components: - - type: Transform - pos: -14.5,-69.5 - parent: 2 - - uid: 15494 - components: - - type: Transform - pos: -15.5,-69.5 - parent: 2 - - uid: 15495 - components: - - type: Transform - pos: -18.5,-69.5 - parent: 2 - - uid: 15496 - components: - - type: Transform - pos: -17.5,-69.5 - parent: 2 - - uid: 15497 - components: - - type: Transform - pos: -18.5,-68.5 - parent: 2 - - uid: 15498 - components: - - type: Transform - pos: -18.5,-67.5 - parent: 2 - - uid: 15499 - components: - - type: Transform - pos: -18.5,-70.5 - parent: 2 - - uid: 15500 - components: - - type: Transform - pos: -19.5,-70.5 - parent: 2 - - uid: 15501 - components: - - type: Transform - pos: -18.5,-71.5 - parent: 2 - - uid: 15502 - components: - - type: Transform - pos: -19.5,-72.5 - parent: 2 - - uid: 15503 - components: - - type: Transform - pos: -18.5,-72.5 - parent: 2 - - uid: 15504 - components: - - type: Transform - pos: -14.5,-73.5 - parent: 2 - - uid: 15505 - components: - - type: Transform - pos: -15.5,-73.5 - parent: 2 - - uid: 15506 - components: - - type: Transform - pos: -18.5,-73.5 - parent: 2 - - uid: 15507 - components: - - type: Transform - pos: -17.5,-73.5 - parent: 2 - - uid: 15508 - components: - - type: Transform - pos: -13.5,-74.5 - parent: 2 - - uid: 15509 - components: - - type: Transform - pos: -13.5,-75.5 - parent: 2 - - uid: 15510 - components: - - type: Transform - pos: -13.5,-77.5 - parent: 2 - - uid: 15511 - components: - - type: Transform - pos: -13.5,-78.5 - parent: 2 - - uid: 15512 - components: - - type: Transform - pos: -15.5,-84.5 - parent: 2 - - uid: 15513 - components: - - type: Transform - pos: -14.5,-84.5 - parent: 2 - - uid: 15514 - components: - - type: Transform - pos: -13.5,-84.5 - parent: 2 - - uid: 15515 - components: - - type: Transform - pos: -13.5,-83.5 - parent: 2 - - uid: 15516 - components: - - type: Transform - pos: -8.5,-82.5 - parent: 2 - - uid: 15517 - components: - - type: Transform - pos: -9.5,-80.5 - parent: 2 - - uid: 15518 - components: - - type: Transform - pos: -9.5,-81.5 - parent: 2 - - uid: 15519 - components: - - type: Transform - pos: -9.5,-82.5 - parent: 2 - - uid: 15520 - components: - - type: Transform - pos: -10.5,-80.5 - parent: 2 - - uid: 15521 - components: - - type: Transform - pos: -10.5,-81.5 - parent: 2 - - uid: 15522 - components: - - type: Transform - pos: -10.5,-82.5 - parent: 2 - - uid: 15523 - components: - - type: Transform - pos: -11.5,-80.5 - parent: 2 - - uid: 15524 - components: - - type: Transform - pos: -11.5,-81.5 - parent: 2 - - uid: 15525 - components: - - type: Transform - pos: -11.5,-82.5 - parent: 2 - - uid: 15526 - components: - - type: Transform - pos: -12.5,-80.5 - parent: 2 - - uid: 15527 - components: - - type: Transform - pos: -12.5,-81.5 - parent: 2 - - uid: 15528 - components: - - type: Transform - pos: -12.5,-82.5 - parent: 2 - - uid: 15529 - components: - - type: Transform - pos: -13.5,-80.5 - parent: 2 - - uid: 15530 - components: - - type: Transform - pos: -13.5,-81.5 - parent: 2 - - uid: 15531 - components: - - type: Transform - pos: -13.5,-79.5 - parent: 2 - - uid: 15532 - components: - - type: Transform - pos: 22.5,-5.5 - parent: 2 - - uid: 15533 - components: - - type: Transform - pos: -14.5,-79.5 - parent: 2 - - uid: 15534 - components: - - type: Transform - pos: -15.5,-79.5 - parent: 2 - - uid: 15535 - components: - - type: Transform - pos: -17.5,-79.5 - parent: 2 - - uid: 15536 - components: - - type: Transform - pos: -18.5,-79.5 - parent: 2 - - uid: 15537 - components: - - type: Transform - pos: -18.5,-78.5 - parent: 2 - - uid: 15538 - components: - - type: Transform - pos: -18.5,-75.5 - parent: 2 - - uid: 15539 - components: - - type: Transform - pos: -18.5,-74.5 - parent: 2 - - uid: 15540 - components: - - type: Transform - pos: -18.5,-80.5 - parent: 2 - - uid: 15541 - components: - - type: Transform - pos: -18.5,-81.5 - parent: 2 - - uid: 15542 - components: - - type: Transform - pos: -18.5,-82.5 - parent: 2 - - uid: 15543 - components: - - type: Transform - pos: -18.5,-83.5 - parent: 2 - - uid: 15544 - components: - - type: Transform - pos: -18.5,-84.5 - parent: 2 - - uid: 15545 - components: - - type: Transform - pos: -17.5,-84.5 - parent: 2 - - uid: 15546 - components: - - type: Transform - pos: -19.5,-82.5 - parent: 2 - - uid: 15547 - components: - - type: Transform - pos: -19.5,-81.5 - parent: 2 - - uid: 15548 - components: - - type: Transform - pos: -19.5,-80.5 - parent: 2 - - uid: 15549 - components: - - type: Transform - pos: -21.5,-80.5 - parent: 2 - - uid: 15550 - components: - - type: Transform - pos: -20.5,-81.5 - parent: 2 - - uid: 15551 - components: - - type: Transform - pos: -20.5,-80.5 - parent: 2 - - uid: 15552 - components: - - type: Transform - pos: -21.5,-81.5 - parent: 2 - - uid: 15553 - components: - - type: Transform - pos: -22.5,-80.5 - parent: 2 - - uid: 15554 - components: - - type: Transform - pos: -22.5,-81.5 - parent: 2 - - uid: 15555 - components: - - type: Transform - pos: -23.5,-80.5 - parent: 2 - - uid: 15556 - components: - - type: Transform - pos: -23.5,-81.5 - parent: 2 - - uid: 15557 - components: - - type: Transform - pos: -23.5,-79.5 - parent: 2 - - uid: 15558 - components: - - type: Transform - pos: -23.5,-78.5 - parent: 2 - - uid: 15559 - components: - - type: Transform - pos: -23.5,-74.5 - parent: 2 - - uid: 15560 - components: - - type: Transform - pos: -23.5,-73.5 - parent: 2 - - uid: 15561 - components: - - type: Transform - pos: -23.5,-72.5 - parent: 2 - - uid: 15562 - components: - - type: Transform - pos: -23.5,-71.5 - parent: 2 - - uid: 15563 - components: - - type: Transform - pos: -22.5,-72.5 - parent: 2 - - uid: 15564 - components: - - type: Transform - pos: -22.5,-71.5 - parent: 2 - - uid: 15565 - components: - - type: Transform - pos: -21.5,-72.5 - parent: 2 - - uid: 15566 - components: - - type: Transform - pos: -21.5,-71.5 - parent: 2 - - uid: 15567 - components: - - type: Transform - pos: -20.5,-72.5 - parent: 2 - - uid: 15568 - components: - - type: Transform - pos: -20.5,-71.5 - parent: 2 - - uid: 15569 - components: - - type: Transform - pos: 19.5,-7.5 - parent: 2 - - uid: 15570 - components: - - type: Transform - pos: -28.5,-80.5 - parent: 2 - - uid: 15571 - components: - - type: Transform - pos: -24.5,-81.5 - parent: 2 - - uid: 15572 - components: - - type: Transform - pos: -25.5,-81.5 - parent: 2 - - uid: 15573 - components: - - type: Transform - pos: -26.5,-81.5 - parent: 2 - - uid: 15574 - components: - - type: Transform - pos: -27.5,-81.5 - parent: 2 - - uid: 15575 - components: - - type: Transform - pos: -28.5,-81.5 - parent: 2 - - uid: 15576 - components: - - type: Transform - pos: -29.5,-81.5 - parent: 2 - - uid: 15577 - components: - - type: Transform - pos: -30.5,-81.5 - parent: 2 - - uid: 15578 - components: - - type: Transform - pos: -29.5,-80.5 - parent: 2 - - uid: 15579 - components: - - type: Transform - pos: -30.5,-80.5 - parent: 2 - - uid: 15580 - components: - - type: Transform - pos: -31.5,-80.5 - parent: 2 - - uid: 15581 - components: - - type: Transform - pos: -31.5,-79.5 - parent: 2 - - uid: 15582 - components: - - type: Transform - pos: -31.5,-78.5 - parent: 2 - - uid: 15583 - components: - - type: Transform - pos: -32.5,-78.5 - parent: 2 - - uid: 15584 - components: - - type: Transform - pos: -32.5,-77.5 - parent: 2 - - uid: 15585 - components: - - type: Transform - pos: -32.5,-76.5 - parent: 2 - - uid: 15586 - components: - - type: Transform - pos: -32.5,-75.5 - parent: 2 - - uid: 15587 - components: - - type: Transform - pos: -32.5,-74.5 - parent: 2 - - uid: 15588 - components: - - type: Transform - pos: -31.5,-77.5 - parent: 2 - - uid: 15589 - components: - - type: Transform - pos: -31.5,-76.5 - parent: 2 - - uid: 15590 - components: - - type: Transform - pos: -31.5,-75.5 - parent: 2 - - uid: 15591 - components: - - type: Transform - pos: -31.5,-74.5 - parent: 2 - - uid: 15592 - components: - - type: Transform - pos: -31.5,-73.5 - parent: 2 - - uid: 15593 - components: - - type: Transform - pos: -31.5,-72.5 - parent: 2 - - uid: 15594 - components: - - type: Transform - pos: -30.5,-72.5 - parent: 2 - - uid: 15595 - components: - - type: Transform - pos: -30.5,-71.5 - parent: 2 - - uid: 15596 - components: - - type: Transform - pos: -29.5,-71.5 - parent: 2 - - uid: 15597 - components: - - type: Transform - pos: -28.5,-71.5 - parent: 2 - - uid: 15598 - components: - - type: Transform - pos: -27.5,-71.5 - parent: 2 - - uid: 15599 - components: - - type: Transform - pos: -26.5,-71.5 - parent: 2 - - uid: 15600 - components: - - type: Transform - pos: -25.5,-71.5 - parent: 2 - - uid: 15601 - components: - - type: Transform - pos: -24.5,-71.5 - parent: 2 - - uid: 15602 - components: - - type: Transform - pos: -29.5,-72.5 - parent: 2 - - uid: 15603 - components: - - type: Transform - pos: -28.5,-72.5 - parent: 2 - - uid: 15604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-76.5 - parent: 2 - - uid: 15605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-75.5 - parent: 2 - - uid: 15606 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-77.5 - parent: 2 - - uid: 15607 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-77.5 - parent: 2 - - uid: 15608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-77.5 - parent: 2 - - uid: 15609 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-75.5 - parent: 2 - - uid: 15610 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-75.5 - parent: 2 - - uid: 15611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-62.5 - parent: 2 - - uid: 15612 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-62.5 - parent: 2 - - uid: 15613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-25.5 - parent: 2 - - uid: 15614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-24.5 - parent: 2 - - uid: 15615 - components: - - type: Transform - pos: -19.5,32.5 - parent: 2 - - uid: 15616 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-25.5 - parent: 2 - - uid: 15617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,0.5 - parent: 2 - - uid: 15618 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,3.5 - parent: 2 - - uid: 15619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 2 - - uid: 15620 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 15621 - components: - - type: Transform - pos: 37.5,18.5 - parent: 2 - - uid: 15622 - components: - - type: Transform - pos: 40.5,17.5 - parent: 2 - - uid: 15623 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 15624 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 15625 - components: - - type: Transform - pos: 7.5,19.5 - parent: 2 - - uid: 15626 - components: - - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 15627 - components: - - type: Transform - pos: 7.5,21.5 - parent: 2 - - uid: 15628 - components: - - type: Transform - pos: 7.5,22.5 - parent: 2 - - uid: 15629 - components: - - type: Transform - pos: 7.5,23.5 - parent: 2 - - uid: 15630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,4.5 - parent: 2 - - uid: 15631 - components: - - type: Transform - pos: 9.5,16.5 - parent: 2 - - uid: 15632 - components: - - type: Transform - pos: 8.5,16.5 - parent: 2 - - uid: 15633 - components: - - type: Transform - pos: 7.5,16.5 - parent: 2 - - uid: 15634 - components: - - type: Transform - pos: 7.5,17.5 - parent: 2 - - uid: 15635 - components: - - type: Transform - pos: 7.5,18.5 - parent: 2 - - uid: 15636 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 - parent: 2 - - uid: 15637 - components: - - type: Transform - pos: 11.5,17.5 - parent: 2 - - uid: 15638 - components: - - type: Transform - pos: 27.5,23.5 - parent: 2 - - uid: 15639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,0.5 - parent: 2 - - uid: 15640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,0.5 - parent: 2 - - uid: 15641 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 15642 - components: - - type: Transform - pos: 26.5,23.5 - parent: 2 - - uid: 15643 - components: - - type: Transform - pos: 8.5,23.5 - parent: 2 - - uid: 15644 - components: - - type: Transform - pos: 9.5,23.5 - parent: 2 - - uid: 15645 - components: - - type: Transform - pos: 10.5,23.5 - parent: 2 - - uid: 15646 - components: - - type: Transform - pos: 11.5,22.5 - parent: 2 - - uid: 15647 - components: - - type: Transform - pos: 29.5,23.5 - parent: 2 - - uid: 15648 - components: - - type: Transform - pos: 11.5,20.5 - parent: 2 - - uid: 15649 - components: - - type: Transform - pos: -45.5,2.5 - parent: 2 - - uid: 15650 - components: - - type: Transform - pos: -45.5,1.5 - parent: 2 - - uid: 15651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,23.5 - parent: 2 - - uid: 15652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,49.5 - parent: 2 - - uid: 15653 - components: - - type: Transform - pos: 30.5,24.5 - parent: 2 - - uid: 15654 - components: - - type: Transform - pos: -44.5,1.5 - parent: 2 - - uid: 15655 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-36.5 - parent: 2 - - uid: 15656 - components: - - type: Transform - pos: -45.5,3.5 - parent: 2 - - uid: 15657 - components: - - type: Transform - pos: -37.5,2.5 - parent: 2 - - uid: 15658 - components: - - type: Transform - pos: -37.5,0.5 - parent: 2 - - uid: 15659 - components: - - type: Transform - pos: 32.5,-24.5 - parent: 2 - - uid: 15660 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-24.5 - parent: 2 - - uid: 15661 - components: - - type: Transform - pos: -28.5,-23.5 - parent: 2 - - uid: 15662 - components: - - type: Transform - pos: -44.5,0.5 - parent: 2 - - uid: 15663 - components: - - type: Transform - pos: -44.5,2.5 - parent: 2 - - uid: 15664 - components: - - type: Transform - pos: -38.5,0.5 - parent: 2 - - uid: 15665 - components: - - type: Transform - pos: -37.5,1.5 - parent: 2 - - uid: 15666 - components: - - type: Transform - pos: 41.5,2.5 - parent: 2 - - uid: 15667 - components: - - type: Transform - pos: 35.5,-24.5 - parent: 2 - - uid: 15668 - components: - - type: Transform - pos: 39.5,-24.5 - parent: 2 - - uid: 15669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-23.5 - parent: 2 - - uid: 15670 - components: - - type: Transform - pos: -37.5,3.5 - parent: 2 - - uid: 15671 - components: - - type: Transform - pos: -38.5,1.5 - parent: 2 - - uid: 15672 - components: - - type: Transform - pos: -38.5,2.5 - parent: 2 - - uid: 15673 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 2 - - uid: 15674 - components: - - type: Transform - pos: 42.5,14.5 - parent: 2 - - uid: 15675 - components: - - type: Transform - pos: 42.5,15.5 - parent: 2 - - uid: 15676 - components: - - type: Transform - pos: 44.5,14.5 - parent: 2 - - uid: 15677 - components: - - type: Transform - pos: 42.5,8.5 - parent: 2 - - uid: 15678 - components: - - type: Transform - pos: 42.5,7.5 - parent: 2 - - uid: 15679 - components: - - type: Transform - pos: 46.5,8.5 - parent: 2 - - uid: 15680 - components: - - type: Transform - pos: 43.5,14.5 - parent: 2 - - uid: 15681 - components: - - type: Transform - pos: 46.5,14.5 - parent: 2 - - uid: 15682 - components: - - type: Transform - pos: 45.5,14.5 - parent: 2 - - uid: 15683 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2 - - uid: 15684 - components: - - type: Transform - pos: 39.5,17.5 - parent: 2 - - uid: 15685 - components: - - type: Transform - pos: 41.5,16.5 - parent: 2 - - uid: 15686 - components: - - type: Transform - pos: 42.5,3.5 - parent: 2 - - uid: 15687 - components: - - type: Transform - pos: 42.5,16.5 - parent: 2 - - uid: 15688 - components: - - type: Transform - pos: 34.5,20.5 - parent: 2 - - uid: 15689 - components: - - type: Transform - pos: 34.5,21.5 - parent: 2 - - uid: 15690 - components: - - type: Transform - pos: 34.5,24.5 - parent: 2 - - uid: 15691 - components: - - type: Transform - pos: 34.5,25.5 - parent: 2 - - uid: 15692 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - - uid: 15693 - components: - - type: Transform - pos: 33.5,26.5 - parent: 2 - - uid: 15694 - components: - - type: Transform - pos: 30.5,29.5 - parent: 2 - - uid: 15695 - components: - - type: Transform - pos: 32.5,29.5 - parent: 2 - - uid: 15696 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 15697 - components: - - type: Transform - pos: 33.5,29.5 - parent: 2 - - uid: 15698 - components: - - type: Transform - pos: 31.5,29.5 - parent: 2 - - uid: 15699 - components: - - type: Transform - pos: 30.5,30.5 - parent: 2 - - uid: 15700 - components: - - type: Transform - pos: 29.5,30.5 - parent: 2 - - uid: 15701 - components: - - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 15702 - components: - - type: Transform - pos: 27.5,30.5 - parent: 2 - - uid: 15703 - components: - - type: Transform - pos: 26.5,30.5 - parent: 2 - - uid: 15704 - components: - - type: Transform - pos: 25.5,30.5 - parent: 2 - - uid: 15705 - components: - - type: Transform - pos: 24.5,30.5 - parent: 2 - - uid: 15706 - components: - - type: Transform - pos: 23.5,30.5 - parent: 2 - - uid: 15707 - components: - - type: Transform - pos: 23.5,31.5 - parent: 2 - - uid: 15708 - components: - - type: Transform - pos: 3.5,30.5 - parent: 2 - - uid: 15709 - components: - - type: Transform - pos: 19.5,30.5 - parent: 2 - - uid: 15710 - components: - - type: Transform - pos: 17.5,30.5 - parent: 2 - - uid: 15711 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 15712 - components: - - type: Transform - pos: 17.5,31.5 - parent: 2 - - uid: 15713 - components: - - type: Transform - pos: 16.5,31.5 - parent: 2 - - uid: 15714 - components: - - type: Transform - pos: 15.5,31.5 - parent: 2 - - uid: 15715 - components: - - type: Transform - pos: 14.5,31.5 - parent: 2 - - uid: 15716 - components: - - type: Transform - pos: 13.5,31.5 - parent: 2 - - uid: 15717 - components: - - type: Transform - pos: 12.5,31.5 - parent: 2 - - uid: 15718 - components: - - type: Transform - pos: 9.5,31.5 - parent: 2 - - uid: 15719 - components: - - type: Transform - pos: 8.5,31.5 - parent: 2 - - uid: 15720 - components: - - type: Transform - pos: 7.5,31.5 - parent: 2 - - uid: 15721 - components: - - type: Transform - pos: 6.5,31.5 - parent: 2 - - uid: 15722 - components: - - type: Transform - pos: 5.5,31.5 - parent: 2 - - uid: 15723 - components: - - type: Transform - pos: 4.5,31.5 - parent: 2 - - uid: 15724 - components: - - type: Transform - pos: 3.5,31.5 - parent: 2 - - uid: 15725 - components: - - type: Transform - pos: -2.5,32.5 - parent: 2 - - uid: 15726 - components: - - type: Transform - pos: 3.5,29.5 - parent: 2 - - uid: 15727 - components: - - type: Transform - pos: -0.5,24.5 - parent: 2 - - uid: 15728 - components: - - type: Transform - pos: 1.5,28.5 - parent: 2 - - uid: 15729 - components: - - type: Transform - pos: 2.5,28.5 - parent: 2 - - uid: 15730 - components: - - type: Transform - pos: 37.5,19.5 - parent: 2 - - uid: 15731 - components: - - type: Transform - pos: 33.5,27.5 - parent: 2 - - uid: 15732 - components: - - type: Transform - pos: 44.5,8.5 - parent: 2 - - uid: 15733 - components: - - type: Transform - pos: 37.5,20.5 - parent: 2 - - uid: 15734 - components: - - type: Transform - pos: 36.5,20.5 - parent: 2 - - uid: 15735 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - uid: 15736 - components: - - type: Transform - pos: 45.5,8.5 - parent: 2 - - uid: 15737 - components: - - type: Transform - pos: 43.5,8.5 - parent: 2 - - uid: 15738 - components: - - type: Transform - pos: -51.5,-15.5 - parent: 2 - - uid: 15739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-82.5 - parent: 2 - - uid: 15740 - components: - - type: Transform - pos: -18.5,-77.5 - parent: 2 - - uid: 15741 - components: - - type: Transform - pos: -21.5,37.5 - parent: 2 - - uid: 15742 - components: - - type: Transform - pos: 23.5,9.5 - parent: 2 - - uid: 15743 - components: - - type: Transform - pos: 20.5,30.5 - parent: 2 - - uid: 15744 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,30.5 - parent: 2 - - uid: 15745 - components: - - type: Transform - pos: 1.5,36.5 - parent: 2 - - uid: 15746 - components: - - type: Transform - pos: -52.5,5.5 - parent: 2 - - uid: 15747 - components: - - type: Transform - pos: -51.5,5.5 - parent: 2 - - uid: 15748 - components: - - type: Transform - pos: -51.5,6.5 - parent: 2 - - uid: 15749 - components: - - type: Transform - pos: -51.5,7.5 - parent: 2 - - uid: 15750 - components: - - type: Transform - pos: -50.5,5.5 - parent: 2 - - uid: 15751 - components: - - type: Transform - pos: -50.5,6.5 - parent: 2 - - uid: 15752 - components: - - type: Transform - pos: -50.5,7.5 - parent: 2 - - uid: 15753 - components: - - type: Transform - pos: -50.5,8.5 - parent: 2 - - uid: 15754 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-22.5 - parent: 2 - - uid: 15755 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-23.5 - parent: 2 - - uid: 15756 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-21.5 - parent: 2 - - uid: 15757 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-21.5 - parent: 2 - - uid: 15758 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-21.5 - parent: 2 - - uid: 15759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-23.5 - parent: 2 - - uid: 15760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,14.5 - parent: 2 - - uid: 15761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-24.5 - parent: 2 - - uid: 15762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,38.5 - parent: 2 - - uid: 15763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-22.5 - parent: 2 - - uid: 15764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-25.5 - parent: 2 - - uid: 15765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,10.5 - parent: 2 - - uid: 15766 - components: - - type: Transform - pos: -7.5,28.5 - parent: 2 - - uid: 15767 - components: - - type: Transform - pos: -7.5,27.5 - parent: 2 - - uid: 15768 - components: - - type: Transform - pos: -1.5,27.5 - parent: 2 - - uid: 15769 - components: - - type: Transform - pos: -1.5,28.5 - parent: 2 - - uid: 15770 - components: - - type: Transform - pos: -2.5,28.5 - parent: 2 - - uid: 15771 - components: - - type: Transform - pos: -6.5,28.5 - parent: 2 - - uid: 15772 - components: - - type: Transform - pos: -15.5,30.5 - parent: 2 - - uid: 15773 - components: - - type: Transform - pos: -15.5,33.5 - parent: 2 - - uid: 15774 - components: - - type: Transform - pos: -8.5,31.5 - parent: 2 - - uid: 15775 - components: - - type: Transform - pos: -9.5,31.5 - parent: 2 - - uid: 15776 - components: - - type: Transform - pos: -6.5,29.5 - parent: 2 - - uid: 15777 - components: - - type: Transform - pos: -7.5,31.5 - parent: 2 - - uid: 15778 - components: - - type: Transform - pos: -6.5,31.5 - parent: 2 - - uid: 15779 - components: - - type: Transform - pos: -2.5,29.5 - parent: 2 - - uid: 15780 - components: - - type: Transform - pos: 0.5,24.5 - parent: 2 - - uid: 15781 - components: - - type: Transform - pos: -2.5,31.5 - parent: 2 - - uid: 15782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,22.5 - parent: 2 - - uid: 15783 - components: - - type: Transform - pos: -13.5,31.5 - parent: 2 - - uid: 15784 - components: - - type: Transform - pos: -13.5,32.5 - parent: 2 - - uid: 15785 - components: - - type: Transform - pos: -16.5,31.5 - parent: 2 - - uid: 15786 - components: - - type: Transform - pos: -17.5,31.5 - parent: 2 - - uid: 15787 - components: - - type: Transform - pos: -18.5,31.5 - parent: 2 - - uid: 15788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,22.5 - parent: 2 - - uid: 15789 - components: - - type: Transform - pos: -18.5,32.5 - parent: 2 - - uid: 15790 - components: - - type: Transform - pos: 1.5,24.5 - parent: 2 - - uid: 15791 - components: - - type: Transform - pos: 3.5,28.5 - parent: 2 - - uid: 15792 - components: - - type: Transform - pos: -18.5,37.5 - parent: 2 - - uid: 15793 - components: - - type: Transform - pos: -18.5,36.5 - parent: 2 - - uid: 15794 - components: - - type: Transform - pos: -6.5,32.5 - parent: 2 - - uid: 15795 - components: - - type: Transform - pos: -2.5,36.5 - parent: 2 - - uid: 15796 - components: - - type: Transform - pos: -1.5,36.5 - parent: 2 - - uid: 15797 - components: - - type: Transform - pos: -4.5,40.5 - parent: 2 - - uid: 15798 - components: - - type: Transform - pos: -5.5,40.5 - parent: 2 - - uid: 15799 - components: - - type: Transform - pos: -3.5,40.5 - parent: 2 - - uid: 15800 - components: - - type: Transform - pos: 2.5,41.5 - parent: 2 - - uid: 15801 - components: - - type: Transform - pos: 0.5,43.5 - parent: 2 - - uid: 15802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,14.5 - parent: 2 - - uid: 15803 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,40.5 - parent: 2 - - uid: 15804 - components: - - type: Transform - pos: -1.5,41.5 - parent: 2 - - uid: 15805 - components: - - type: Transform - pos: -0.5,41.5 - parent: 2 - - uid: 15806 - components: - - type: Transform - pos: 1.5,41.5 - parent: 2 - - uid: 15807 - components: - - type: Transform - pos: -16.5,37.5 - parent: 2 - - uid: 15808 - components: - - type: Transform - pos: -16.5,38.5 - parent: 2 - - uid: 15809 - components: - - type: Transform - pos: -16.5,40.5 - parent: 2 - - uid: 15810 - components: - - type: Transform - pos: -14.5,40.5 - parent: 2 - - uid: 15811 - components: - - type: Transform - pos: -15.5,40.5 - parent: 2 - - uid: 15812 - components: - - type: Transform - pos: -21.5,36.5 - parent: 2 - - uid: 15813 - components: - - type: Transform - pos: -2.5,41.5 - parent: 2 - - uid: 15814 - components: - - type: Transform - pos: 2.5,36.5 - parent: 2 - - uid: 15815 - components: - - type: Transform - pos: 0.5,36.5 - parent: 2 - - uid: 15816 - components: - - type: Transform - pos: 3.5,36.5 - parent: 2 - - uid: 15817 - components: - - type: Transform - pos: -0.5,28.5 - parent: 2 - - uid: 15818 - components: - - type: Transform - pos: -2.5,35.5 - parent: 2 - - uid: 15819 - components: - - type: Transform - pos: -2.5,33.5 - parent: 2 - - uid: 15820 - components: - - type: Transform - pos: -0.5,36.5 - parent: 2 - - uid: 15821 - components: - - type: Transform - pos: 2.5,24.5 - parent: 2 - - uid: 15822 - components: - - type: Transform - pos: 3.5,24.5 - parent: 2 - - uid: 15823 - components: - - type: Transform - pos: -16.5,39.5 - parent: 2 - - uid: 15824 - components: - - type: Transform - pos: -19.5,36.5 - parent: 2 - - uid: 15825 - components: - - type: Transform - pos: -11.5,31.5 - parent: 2 - - uid: 15826 - components: - - type: Transform - pos: -10.5,31.5 - parent: 2 - - uid: 15827 - components: - - type: Transform - pos: -13.5,33.5 - parent: 2 - - uid: 15828 - components: - - type: Transform - pos: -14.5,33.5 - parent: 2 - - uid: 15829 - components: - - type: Transform - pos: -17.5,37.5 - parent: 2 - - uid: 15830 - components: - - type: Transform - pos: -5.5,42.5 - parent: 2 - - uid: 15831 - components: - - type: Transform - pos: -5.5,41.5 - parent: 2 - - uid: 15832 - components: - - type: Transform - pos: -2.5,40.5 - parent: 2 - - uid: 15833 - components: - - type: Transform - pos: -2.5,39.5 - parent: 2 - - uid: 15834 - components: - - type: Transform - pos: -2.5,37.5 - parent: 2 - - uid: 15835 - components: - - type: Transform - pos: -0.5,42.5 - parent: 2 - - uid: 15836 - components: - - type: Transform - pos: 1.5,43.5 - parent: 2 - - uid: 15837 - components: - - type: Transform - pos: -6.5,40.5 - parent: 2 - - uid: 15838 - components: - - type: Transform - pos: -0.5,43.5 - parent: 2 - - uid: 15839 - components: - - type: Transform - pos: 2.5,43.5 - parent: 2 - - uid: 15840 - components: - - type: Transform - pos: -15.5,32.5 - parent: 2 - - uid: 15841 - components: - - type: Transform - pos: -15.5,31.5 - parent: 2 - - uid: 15842 - components: - - type: Transform - pos: -14.5,41.5 - parent: 2 - - uid: 15843 - components: - - type: Transform - pos: -14.5,42.5 - parent: 2 - - uid: 15844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,40.5 - parent: 2 - - uid: 15845 - components: - - type: Transform - pos: -13.5,40.5 - parent: 2 - - uid: 15846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,40.5 - parent: 2 - - uid: 15847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,40.5 - parent: 2 - - uid: 15848 - components: - - type: Transform - pos: -20.5,36.5 - parent: 2 - - uid: 15849 - components: - - type: Transform - pos: -18.5,41.5 - parent: 2 - - uid: 15850 - components: - - type: Transform - pos: -18.5,40.5 - parent: 2 - - uid: 15851 - components: - - type: Transform - pos: -18.5,39.5 - parent: 2 - - uid: 15852 - components: - - type: Transform - pos: -18.5,38.5 - parent: 2 - - uid: 15853 - components: - - type: Transform - pos: -28.5,42.5 - parent: 2 - - uid: 15854 - components: - - type: Transform - pos: -18.5,42.5 - parent: 2 - - uid: 15855 - components: - - type: Transform - pos: -30.5,42.5 - parent: 2 - - uid: 15856 - components: - - type: Transform - pos: -29.5,42.5 - parent: 2 - - uid: 15857 - components: - - type: Transform - pos: -34.5,35.5 - parent: 2 - - uid: 15858 - components: - - type: Transform - pos: -35.5,35.5 - parent: 2 - - uid: 15859 - components: - - type: Transform - pos: -33.5,31.5 - parent: 2 - - uid: 15860 - components: - - type: Transform - pos: -33.5,32.5 - parent: 2 - - uid: 15861 - components: - - type: Transform - pos: -33.5,30.5 - parent: 2 - - uid: 15862 - components: - - type: Transform - pos: -37.5,36.5 - parent: 2 - - uid: 15863 - components: - - type: Transform - pos: -37.5,37.5 - parent: 2 - - uid: 15864 - components: - - type: Transform - pos: -37.5,35.5 - parent: 2 - - uid: 15865 - components: - - type: Transform - pos: -43.5,25.5 - parent: 2 - - uid: 15866 - components: - - type: Transform - pos: -43.5,31.5 - parent: 2 - - uid: 15867 - components: - - type: Transform - pos: -43.5,24.5 - parent: 2 - - uid: 15868 - components: - - type: Transform - pos: -45.5,52.5 - parent: 2 - - uid: 15869 - components: - - type: Transform - pos: -43.5,29.5 - parent: 2 - - uid: 15870 - components: - - type: Transform - pos: -43.5,26.5 - parent: 2 - - uid: 15871 - components: - - type: Transform - pos: -44.5,31.5 - parent: 2 - - uid: 15872 - components: - - type: Transform - pos: -43.5,30.5 - parent: 2 - - uid: 15873 - components: - - type: Transform - pos: -55.5,30.5 - parent: 2 - - uid: 15874 - components: - - type: Transform - pos: -45.5,44.5 - parent: 2 - - uid: 15875 - components: - - type: Transform - pos: -42.5,30.5 - parent: 2 - - uid: 15876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,49.5 - parent: 2 - - uid: 15877 - components: - - type: Transform - pos: -51.5,30.5 - parent: 2 - - uid: 15878 - components: - - type: Transform - pos: -45.5,31.5 - parent: 2 - - uid: 15879 - components: - - type: Transform - pos: -47.5,31.5 - parent: 2 - - uid: 15880 - components: - - type: Transform - pos: -48.5,31.5 - parent: 2 - - uid: 15881 - components: - - type: Transform - pos: -49.5,31.5 - parent: 2 - - uid: 15882 - components: - - type: Transform - pos: -50.5,31.5 - parent: 2 - - uid: 15883 - components: - - type: Transform - pos: -51.5,31.5 - parent: 2 - - uid: 15884 - components: - - type: Transform - pos: -52.5,30.5 - parent: 2 - - uid: 15885 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,47.5 - parent: 2 - - uid: 15886 - components: - - type: Transform - pos: -37.5,38.5 - parent: 2 - - uid: 15887 - components: - - type: Transform - pos: -53.5,30.5 - parent: 2 - - uid: 15888 - components: - - type: Transform - pos: -54.5,30.5 - parent: 2 - - uid: 15889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,42.5 - parent: 2 - - uid: 15890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,43.5 - parent: 2 - - uid: 15891 - components: - - type: Transform - pos: 8.5,-17.5 - parent: 2 - - uid: 15892 - components: - - type: Transform - pos: -38.5,48.5 - parent: 2 - - uid: 15893 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,18.5 - parent: 2 - - uid: 15894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,14.5 - parent: 2 - - uid: 15895 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,22.5 - parent: 2 - - uid: 15896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,18.5 - parent: 2 - - uid: 15897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,18.5 - parent: 2 - - uid: 15898 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,10.5 - parent: 2 - - uid: 15899 - components: - - type: Transform - pos: -37.5,48.5 - parent: 2 - - uid: 15900 - components: - - type: Transform - pos: -61.5,30.5 - parent: 2 - - uid: 15901 - components: - - type: Transform - pos: -60.5,30.5 - parent: 2 - - uid: 15902 - components: - - type: Transform - pos: -57.5,38.5 - parent: 2 - - uid: 15903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,44.5 - parent: 2 - - uid: 15904 - components: - - type: Transform - pos: -56.5,38.5 - parent: 2 - - uid: 15905 - components: - - type: Transform - pos: -51.5,38.5 - parent: 2 - - uid: 15906 - components: - - type: Transform - pos: -56.5,42.5 - parent: 2 - - uid: 15907 - components: - - type: Transform - pos: -35.5,48.5 - parent: 2 - - uid: 15908 - components: - - type: Transform - pos: -52.5,38.5 - parent: 2 - - uid: 15909 - components: - - type: Transform - pos: -52.5,42.5 - parent: 2 - - uid: 15910 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,40.5 - parent: 2 - - uid: 15911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,39.5 - parent: 2 - - uid: 15912 - components: - - type: Transform - pos: -56.5,30.5 - parent: 2 - - uid: 15913 - components: - - type: Transform - pos: -45.5,45.5 - parent: 2 - - uid: 15914 - components: - - type: Transform - pos: -44.5,45.5 - parent: 2 - - uid: 15915 - components: - - type: Transform - pos: -39.5,51.5 - parent: 2 - - uid: 15916 - components: - - type: Transform - pos: -42.5,45.5 - parent: 2 - - uid: 15917 - components: - - type: Transform - pos: -41.5,45.5 - parent: 2 - - uid: 15918 - components: - - type: Transform - pos: -40.5,45.5 - parent: 2 - - uid: 15919 - components: - - type: Transform - pos: -39.5,45.5 - parent: 2 - - uid: 15920 - components: - - type: Transform - pos: -38.5,45.5 - parent: 2 - - uid: 15921 - components: - - type: Transform - pos: -37.5,45.5 - parent: 2 - - uid: 15922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,45.5 - parent: 2 - - uid: 15923 - components: - - type: Transform - pos: -45.5,43.5 - parent: 2 - - uid: 15924 - components: - - type: Transform - pos: -45.5,42.5 - parent: 2 - - uid: 15925 - components: - - type: Transform - pos: -45.5,41.5 - parent: 2 - - uid: 15926 - components: - - type: Transform - pos: -49.5,38.5 - parent: 2 - - uid: 15927 - components: - - type: Transform - pos: -45.5,38.5 - parent: 2 - - uid: 15928 - components: - - type: Transform - pos: -37.5,44.5 - parent: 2 - - uid: 15929 - components: - - type: Transform - pos: -37.5,43.5 - parent: 2 - - uid: 15930 - components: - - type: Transform - pos: -37.5,42.5 - parent: 2 - - uid: 15931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,46.5 - parent: 2 - - uid: 15932 - components: - - type: Transform - pos: -46.5,42.5 - parent: 2 - - uid: 15933 - components: - - type: Transform - pos: -47.5,42.5 - parent: 2 - - uid: 15934 - components: - - type: Transform - pos: -48.5,42.5 - parent: 2 - - uid: 15935 - components: - - type: Transform - pos: -49.5,42.5 - parent: 2 - - uid: 15936 - components: - - type: Transform - pos: -50.5,42.5 - parent: 2 - - uid: 15937 - components: - - type: Transform - pos: -50.5,41.5 - parent: 2 - - uid: 15938 - components: - - type: Transform - pos: -50.5,38.5 - parent: 2 - - uid: 15939 - components: - - type: Transform - pos: -36.5,48.5 - parent: 2 - - uid: 15940 - components: - - type: Transform - pos: -40.5,48.5 - parent: 2 - - uid: 15941 - components: - - type: Transform - pos: -39.5,48.5 - parent: 2 - - uid: 15942 - components: - - type: Transform - pos: -34.5,48.5 - parent: 2 - - uid: 15943 - components: - - type: Transform - pos: -45.5,49.5 - parent: 2 - - uid: 15944 - components: - - type: Transform - pos: -39.5,49.5 - parent: 2 - - uid: 15945 - components: - - type: Transform - pos: -45.5,48.5 - parent: 2 - - uid: 15946 - components: - - type: Transform - pos: -44.5,48.5 - parent: 2 - - uid: 15947 - components: - - type: Transform - pos: -39.5,50.5 - parent: 2 - - uid: 15948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,48.5 - parent: 2 - - uid: 15949 - components: - - type: Transform - pos: -39.5,52.5 - parent: 2 - - uid: 15950 - components: - - type: Transform - pos: -62.5,30.5 - parent: 2 - - uid: 15951 - components: - - type: Transform - pos: -45.5,51.5 - parent: 2 - - uid: 15952 - components: - - type: Transform - pos: -63.5,30.5 - parent: 2 - - uid: 15953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,51.5 - parent: 2 - - uid: 15954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,48.5 - parent: 2 - - uid: 15955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,45.5 - parent: 2 - - uid: 15956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,48.5 - parent: 2 - - uid: 15957 - components: - - type: Transform - pos: -63.5,38.5 - parent: 2 - - uid: 15958 - components: - - type: Transform - pos: -63.5,37.5 - parent: 2 - - uid: 15959 - components: - - type: Transform - pos: -47.5,47.5 - parent: 2 - - uid: 15960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,47.5 - parent: 2 - - uid: 15961 - components: - - type: Transform - pos: -51.5,37.5 - parent: 2 - - uid: 15962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,44.5 - parent: 2 - - uid: 15963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,51.5 - parent: 2 - - uid: 15964 - components: - - type: Transform - pos: -63.5,36.5 - parent: 2 - - uid: 15965 - components: - - type: Transform - pos: -62.5,38.5 - parent: 2 - - uid: 15966 - components: - - type: Transform - pos: -61.5,38.5 - parent: 2 - - uid: 15967 - components: - - type: Transform - pos: -60.5,38.5 - parent: 2 - - uid: 15968 - components: - - type: Transform - pos: -63.5,32.5 - parent: 2 - - uid: 15969 - components: - - type: Transform - pos: -63.5,31.5 - parent: 2 - - uid: 15970 - components: - - type: Transform - pos: -58.5,38.5 - parent: 2 - - uid: 15971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,51.5 - parent: 2 - - uid: 15972 - components: - - type: Transform - pos: -57.5,30.5 - parent: 2 - - uid: 15973 - components: - - type: Transform - pos: -58.5,30.5 - parent: 2 - - uid: 15974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,51.5 - parent: 2 - - uid: 15975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,47.5 - parent: 2 - - uid: 15976 - components: - - type: Transform - pos: -51.5,32.5 - parent: 2 - - uid: 15977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,48.5 - parent: 2 - - uid: 15978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,51.5 - parent: 2 - - uid: 15979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,51.5 - parent: 2 - - uid: 15980 - components: - - type: Transform - pos: -45.5,50.5 - parent: 2 - - uid: 15981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,44.5 - parent: 2 - - uid: 15982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,50.5 - parent: 2 - - uid: 15983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,44.5 - parent: 2 - - uid: 15984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,51.5 - parent: 2 - - uid: 15985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,46.5 - parent: 2 - - uid: 15986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,45.5 - parent: 2 - - uid: 15987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,43.5 - parent: 2 - - uid: 15988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,49.5 - parent: 2 - - uid: 15989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,50.5 - parent: 2 - - uid: 15990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,44.5 - parent: 2 - - uid: 15991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,45.5 - parent: 2 - - uid: 15992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,10.5 - parent: 2 - - uid: 15993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,10.5 - parent: 2 - - uid: 15994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,14.5 - parent: 2 - - uid: 15995 - components: - - type: Transform - pos: -37.5,4.5 - parent: 2 - - uid: 15996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,18.5 - parent: 2 - - uid: 15997 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,22.5 - parent: 2 - - uid: 15998 - components: - - type: Transform - pos: -44.5,4.5 - parent: 2 - - uid: 15999 - components: - - type: Transform - pos: 30.5,26.5 - parent: 2 - - uid: 16000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,47.5 - parent: 2 - - uid: 16001 - components: - - type: Transform - pos: 3.5,37.5 - parent: 2 - - uid: 16002 - components: - - type: Transform - pos: 3.5,40.5 - parent: 2 - - uid: 16003 - components: - - type: Transform - pos: 3.5,41.5 - parent: 2 - - uid: 16004 - components: - - type: Transform - pos: -45.5,4.5 - parent: 2 - - uid: 16005 - components: - - type: Transform - pos: -39.5,2.5 - parent: 2 - - uid: 16006 - components: - - type: Transform - pos: -43.5,2.5 - parent: 2 - - uid: 16007 - components: - - type: Transform - pos: -33.5,35.5 - parent: 2 - - uid: 16008 - components: - - type: Transform - pos: 29.5,26.5 - parent: 2 - - uid: 16009 - components: - - type: Transform - pos: 27.5,24.5 - parent: 2 - - uid: 16010 - components: - - type: Transform - pos: 27.5,26.5 - parent: 2 - - uid: 16011 - components: - - type: Transform - pos: 30.5,25.5 - parent: 2 - - uid: 16012 - components: - - type: Transform - pos: -33.5,33.5 - parent: 2 - - uid: 16013 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 2 - - uid: 16014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-35.5 - parent: 2 - - uid: 16015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-34.5 - parent: 2 - - uid: 16016 - components: - - type: Transform - pos: 27.5,25.5 - parent: 2 - - uid: 16017 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,42.5 - parent: 2 - - uid: 16018 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 2 - - uid: 16019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-49.5 - parent: 2 - - uid: 16020 - components: - - type: Transform - pos: 8.5,-14.5 - parent: 2 - - uid: 16021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,49.5 - parent: 2 - - uid: 16022 - components: - - type: Transform - pos: -15.5,-22.5 - parent: 2 - - uid: 16023 - components: - - type: Transform - pos: 8.5,-15.5 - parent: 2 - - uid: 16024 - components: - - type: Transform - pos: 25.5,3.5 - parent: 2 - - uid: 16025 - components: - - type: Transform - pos: 22.5,-22.5 - parent: 2 - - uid: 16026 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-25.5 - parent: 2 - - uid: 16027 - components: - - type: Transform - pos: -6.5,-14.5 - parent: 2 - - uid: 16028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 - parent: 2 - - uid: 16029 - components: - - type: Transform - pos: -9.5,-20.5 - parent: 2 - - uid: 16030 - components: - - type: Transform - pos: -10.5,-20.5 - parent: 2 - - uid: 16031 - components: - - type: Transform - pos: 9.5,-41.5 - parent: 2 - - uid: 16032 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 2 - - uid: 16033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,42.5 - parent: 2 - - uid: 16034 - components: - - type: Transform - pos: -47.5,4.5 - parent: 2 - - uid: 16035 - components: - - type: Transform - pos: 12.5,-40.5 - parent: 2 - - uid: 16036 - components: - - type: Transform - pos: -38.5,-7.5 - parent: 2 - - uid: 16037 - components: - - type: Transform - pos: -9.5,-19.5 - parent: 2 - - uid: 16038 - components: - - type: Transform - pos: -8.5,-14.5 - parent: 2 - - uid: 16039 - components: - - type: Transform - pos: -45.5,-2.5 - parent: 2 - - uid: 16040 - components: - - type: Transform - pos: -9.5,-14.5 - parent: 2 - - uid: 16041 - components: - - type: Transform - pos: -7.5,-14.5 - parent: 2 - - uid: 16042 - components: - - type: Transform - pos: -33.5,34.5 - parent: 2 - - uid: 16043 - components: - - type: Transform - pos: -14.5,-20.5 - parent: 2 - - uid: 16044 - components: - - type: Transform - pos: -17.5,-65.5 - parent: 2 - - uid: 16045 - components: - - type: Transform - pos: -15.5,-65.5 - parent: 2 - - uid: 16046 - components: - - type: Transform - pos: -45.5,39.5 - parent: 2 - - uid: 16047 - components: - - type: Transform - pos: -14.5,-25.5 - parent: 2 - - uid: 16048 - components: - - type: Transform - pos: -13.5,-25.5 - parent: 2 - - uid: 16049 - components: - - type: Transform - pos: -12.5,-25.5 - parent: 2 - - uid: 16050 - components: - - type: Transform - pos: -11.5,-25.5 - parent: 2 - - uid: 16051 - components: - - type: Transform - pos: -64.5,-20.5 - parent: 2 - - uid: 16052 - components: - - type: Transform - pos: -65.5,6.5 - parent: 2 - - uid: 16053 - components: - - type: Transform - pos: -46.5,-23.5 - parent: 2 - - uid: 16054 - components: - - type: Transform - pos: 3.5,-11.5 - parent: 2 - - uid: 16055 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 2 - - uid: 16056 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 2 - - uid: 16057 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 2 - - uid: 16058 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 2 - - uid: 16059 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 2 - - uid: 16060 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 16061 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - - uid: 16062 - components: - - type: Transform - pos: -10.5,-25.5 - parent: 2 - - uid: 16063 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 2 - - uid: 16064 - components: - - type: Transform - pos: 3.5,-10.5 - parent: 2 - - uid: 16065 - components: - - type: Transform - pos: 2.5,-11.5 - parent: 2 - - uid: 16066 - components: - - type: Transform - pos: 8.5,13.5 - parent: 2 - - uid: 16067 - components: - - type: Transform - pos: 23.5,-28.5 - parent: 2 - - uid: 16068 - components: - - type: Transform - pos: 23.5,-29.5 - parent: 2 - - uid: 16069 - components: - - type: Transform - pos: 9.5,13.5 - parent: 2 - - uid: 16070 - components: - - type: Transform - pos: 12.5,-35.5 - parent: 2 - - uid: 16071 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 2 - - uid: 16072 - components: - - type: Transform - pos: 5.5,-18.5 - parent: 2 - - uid: 16073 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 2 - - uid: 16074 - components: - - type: Transform - pos: 6.5,-18.5 - parent: 2 - - uid: 16075 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - - uid: 16076 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 2 - - uid: 16077 - components: - - type: Transform - pos: 2.5,-16.5 - parent: 2 - - uid: 16078 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 16079 - components: - - type: Transform - pos: 2.5,-15.5 - parent: 2 - - uid: 16080 - components: - - type: Transform - pos: 8.5,-29.5 - parent: 2 - - uid: 16081 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 16082 - components: - - type: Transform - pos: 26.5,-17.5 - parent: 2 - - uid: 16083 - components: - - type: Transform - pos: 27.5,-17.5 - parent: 2 - - uid: 16084 - components: - - type: Transform - pos: 27.5,-18.5 - parent: 2 - - uid: 16085 - components: - - type: Transform - pos: 27.5,-22.5 - parent: 2 - - uid: 16086 - components: - - type: Transform - pos: 22.5,-17.5 - parent: 2 - - uid: 16087 - components: - - type: Transform - pos: 23.5,-17.5 - parent: 2 - - uid: 16088 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 2 - - uid: 16089 - components: - - type: Transform - pos: -9.5,-21.5 - parent: 2 - - uid: 16090 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 2 - - uid: 16091 - components: - - type: Transform - pos: -44.5,-17.5 - parent: 2 - - uid: 16092 - components: - - type: Transform - pos: -9.5,-25.5 - parent: 2 - - uid: 16093 - components: - - type: Transform - pos: 30.5,23.5 - parent: 2 - - uid: 16094 - components: - - type: Transform - pos: -15.5,-24.5 - parent: 2 - - uid: 16095 - components: - - type: Transform - pos: -15.5,-20.5 - parent: 2 - - uid: 16096 - components: - - type: Transform - pos: 27.5,-21.5 - parent: 2 - - uid: 16097 - components: - - type: Transform - pos: 8.5,-28.5 - parent: 2 - - uid: 16098 - components: - - type: Transform - pos: -15.5,-23.5 - parent: 2 - - uid: 16099 - components: - - type: Transform - pos: -15.5,-21.5 - parent: 2 - - uid: 16101 - components: - - type: Transform - pos: -15.5,-26.5 - parent: 2 - - uid: 16102 - components: - - type: Transform - pos: -15.5,-25.5 - parent: 2 - - uid: 16103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-34.5 - parent: 2 - - uid: 17476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-47.5 - parent: 2 - - uid: 17487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-47.5 - parent: 2 - - uid: 17488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-45.5 - parent: 2 - - uid: 17491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-45.5 - parent: 2 - - uid: 17545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-32.5 - parent: 2 - - uid: 17546 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-32.5 - parent: 2 - - uid: 17580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-41.5 - parent: 2 - - uid: 17582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-41.5 - parent: 2 - - uid: 17583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-44.5 - parent: 2 - - uid: 17584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-35.5 - parent: 2 - - uid: 17585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-35.5 - parent: 2 - - uid: 17586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-35.5 - parent: 2 - - uid: 17587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-41.5 - parent: 2 - - uid: 17599 - components: - - type: Transform - pos: -27.5,-36.5 - parent: 2 - - uid: 17642 - components: - - type: Transform - pos: -27.5,-38.5 - parent: 2 - - uid: 17676 - components: - - type: Transform - pos: -34.5,-44.5 - parent: 2 - - uid: 17802 - components: - - type: Transform - pos: -27.5,-29.5 - parent: 2 -- proto: WallRiveted - entities: - - uid: 16104 - components: - - type: Transform - pos: 2.5,19.5 - parent: 2 - - uid: 16105 - components: - - type: Transform - pos: -1.5,18.5 - parent: 2 - - uid: 16106 - components: - - type: Transform - pos: -1.5,20.5 - parent: 2 - - uid: 16107 - components: - - type: Transform - pos: -1.5,17.5 - parent: 2 - - uid: 16108 - components: - - type: Transform - pos: -0.5,17.5 - parent: 2 - - uid: 16109 - components: - - type: Transform - pos: 2.5,17.5 - parent: 2 - - uid: 16110 - components: - - type: Transform - pos: 2.5,20.5 - parent: 2 - - uid: 16111 - components: - - type: Transform - pos: 2.5,18.5 - parent: 2 - - uid: 16112 - components: - - type: Transform - pos: -1.5,21.5 - parent: 2 - - uid: 16113 - components: - - type: Transform - pos: -0.5,21.5 - parent: 2 - - uid: 16114 - components: - - type: Transform - pos: 2.5,21.5 - parent: 2 -- proto: WallSolid - entities: - - uid: 7644 - components: - - type: Transform - pos: -30.5,17.5 - parent: 2 - - uid: 7694 - components: - - type: Transform - pos: -34.5,17.5 - parent: 2 - - uid: 16115 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 2 - - uid: 16116 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 2 - - uid: 16117 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 2 - - uid: 16118 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 2 - - uid: 16119 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 2 - - uid: 16120 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 2 - - uid: 16121 - components: - - type: Transform - pos: 36.5,2.5 - parent: 2 - - uid: 16122 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 2 - - uid: 16123 - components: - - type: Transform - pos: 1.5,5.5 - parent: 2 - - uid: 16124 - components: - - type: Transform - pos: -2.5,2.5 - parent: 2 - - uid: 16125 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 2 - - uid: 16126 - components: - - type: Transform - pos: -2.5,5.5 - parent: 2 - - uid: 16127 - components: - - type: Transform - pos: -0.5,5.5 - parent: 2 - - uid: 16128 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 2 - - uid: 16129 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 2 - - uid: 16130 - components: - - type: Transform - pos: -2.5,0.5 - parent: 2 - - uid: 16131 - components: - - type: Transform - pos: 3.5,0.5 - parent: 2 - - uid: 16132 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 2 - - uid: 16133 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 2 - - uid: 16134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 2 - - uid: 16135 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 2 - - uid: 16136 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,9.5 - parent: 2 - - uid: 16137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,13.5 - parent: 2 - - uid: 16138 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 2 - - uid: 16139 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - uid: 16140 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 - - uid: 16141 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 2 - - uid: 16142 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 2 - - uid: 16143 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 2 - - uid: 16144 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 2 - - uid: 16145 - components: - - type: Transform - pos: -15.5,2.5 - parent: 2 - - uid: 16146 - components: - - type: Transform - pos: -1.5,5.5 - parent: 2 - - uid: 16147 - components: - - type: Transform - pos: 2.5,5.5 - parent: 2 - - uid: 16148 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 2 - - uid: 16149 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 2 - - uid: 16150 - components: - - type: Transform - pos: -11.5,-3.5 - parent: 2 - - uid: 16151 - components: - - type: Transform - pos: -1.5,6.5 - parent: 2 - - uid: 16152 - components: - - type: Transform - pos: -11.5,-5.5 - parent: 2 - - uid: 16153 - components: - - type: Transform - pos: -11.5,-6.5 - parent: 2 - - uid: 16154 - components: - - type: Transform - pos: -11.5,-9.5 - parent: 2 - - uid: 16155 - components: - - type: Transform - pos: -1.5,8.5 - parent: 2 - - uid: 16156 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 2 - - uid: 16157 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 2 - - uid: 16158 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 2 - - uid: 16159 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 2 - - uid: 16160 - components: - - type: Transform - pos: -2.5,-10.5 - parent: 2 - - uid: 16161 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 2 - - uid: 16162 - components: - - type: Transform - pos: -2.5,-8.5 - parent: 2 - - uid: 16163 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 2 - - uid: 16164 - components: - - type: Transform - pos: -11.5,-1.5 - parent: 2 - - uid: 16165 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 2 - - uid: 16166 - components: - - type: Transform - pos: -11.5,-11.5 - parent: 2 - - uid: 16167 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 2 - - uid: 16168 - components: - - type: Transform - pos: -10.5,-11.5 - parent: 2 - - uid: 16169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 2 - - uid: 16170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,7.5 - parent: 2 - - uid: 16171 - components: - - type: Transform - pos: -14.5,-4.5 - parent: 2 - - uid: 16172 - components: - - type: Transform - pos: -15.5,-6.5 - parent: 2 - - uid: 16173 - components: - - type: Transform - pos: -14.5,-7.5 - parent: 2 - - uid: 16174 - components: - - type: Transform - pos: -14.5,-5.5 - parent: 2 - - uid: 16175 - components: - - type: Transform - pos: -14.5,-8.5 - parent: 2 - - uid: 16176 - components: - - type: Transform - pos: -14.5,-9.5 - parent: 2 - - uid: 16177 - components: - - type: Transform - pos: -14.5,-6.5 - parent: 2 - - uid: 16178 - components: - - type: Transform - pos: -13.5,-6.5 - parent: 2 - - uid: 16179 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 2 - - uid: 16180 - components: - - type: Transform - pos: -12.5,2.5 - parent: 2 - - uid: 16181 - components: - - type: Transform - pos: -16.5,3.5 - parent: 2 - - uid: 16182 - components: - - type: Transform - pos: -16.5,2.5 - parent: 2 - - uid: 16183 - components: - - type: Transform - pos: -17.5,2.5 - parent: 2 - - uid: 16184 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 2 - - uid: 16185 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 2 - - uid: 16186 - components: - - type: Transform - pos: -19.5,-2.5 - parent: 2 - - uid: 16187 - components: - - type: Transform - pos: -0.5,8.5 - parent: 2 - - uid: 16188 - components: - - type: Transform - pos: 0.5,8.5 - parent: 2 - - uid: 16189 - components: - - type: Transform - pos: 1.5,8.5 - parent: 2 - - uid: 16190 - components: - - type: Transform - pos: 2.5,8.5 - parent: 2 - - uid: 16191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 2 - - uid: 16192 - components: - - type: Transform - pos: -12.5,8.5 - parent: 2 - - uid: 16193 - components: - - type: Transform - pos: -11.5,12.5 - parent: 2 - - uid: 16194 - components: - - type: Transform - pos: 2.5,10.5 - parent: 2 - - uid: 16195 - components: - - type: Transform - pos: 2.5,9.5 - parent: 2 - - uid: 16196 - components: - - type: Transform - pos: 2.5,12.5 - parent: 2 - - uid: 16197 - components: - - type: Transform - pos: -6.5,8.5 - parent: 2 - - uid: 16198 - components: - - type: Transform - pos: 2.5,13.5 - parent: 2 - - uid: 16199 - components: - - type: Transform - pos: -16.5,7.5 - parent: 2 - - uid: 16200 - components: - - type: Transform - pos: -16.5,8.5 - parent: 2 - - uid: 16201 - components: - - type: Transform - pos: -14.5,19.5 - parent: 2 - - uid: 16202 - components: - - type: Transform - pos: -5.5,18.5 - parent: 2 - - uid: 16203 - components: - - type: Transform - pos: -16.5,11.5 - parent: 2 - - uid: 16204 - components: - - type: Transform - pos: -11.5,14.5 - parent: 2 - - uid: 16205 - components: - - type: Transform - pos: -15.5,8.5 - parent: 2 - - uid: 16206 - components: - - type: Transform - pos: -13.5,8.5 - parent: 2 - - uid: 16207 - components: - - type: Transform - pos: -5.5,9.5 - parent: 2 - - uid: 16208 - components: - - type: Transform - pos: -5.5,13.5 - parent: 2 - - uid: 16209 - components: - - type: Transform - pos: -14.5,-2.5 - parent: 2 - - uid: 16210 - components: - - type: Transform - pos: -14.5,-3.5 - parent: 2 - - uid: 16211 - components: - - type: Transform - pos: -22.5,2.5 - parent: 2 - - uid: 16212 - components: - - type: Transform - pos: -22.5,3.5 - parent: 2 - - uid: 16213 - components: - - type: Transform - pos: -22.5,4.5 - parent: 2 - - uid: 16214 - components: - - type: Transform - pos: -14.5,-10.5 - parent: 2 - - uid: 16215 - components: - - type: Transform - pos: -22.5,7.5 - parent: 2 - - uid: 16216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,8.5 - parent: 2 - - uid: 16217 - components: - - type: Transform - pos: -11.5,19.5 - parent: 2 - - uid: 16218 - components: - - type: Transform - pos: -13.5,16.5 - parent: 2 - - uid: 16219 - components: - - type: Transform - pos: -5.5,15.5 - parent: 2 - - uid: 16220 - components: - - type: Transform - pos: -9.5,19.5 - parent: 2 - - uid: 16221 - components: - - type: Transform - pos: -16.5,16.5 - parent: 2 - - uid: 16222 - components: - - type: Transform - pos: -19.5,8.5 - parent: 2 - - uid: 16223 - components: - - type: Transform - pos: -21.5,8.5 - parent: 2 - - uid: 16224 - components: - - type: Transform - pos: -16.5,9.5 - parent: 2 - - uid: 16225 - components: - - type: Transform - pos: -22.5,8.5 - parent: 2 - - uid: 16226 - components: - - type: Transform - pos: -15.5,19.5 - parent: 2 - - uid: 16227 - components: - - type: Transform - pos: 0.5,13.5 - parent: 2 - - uid: 16228 - components: - - type: Transform - pos: 1.5,13.5 - parent: 2 - - uid: 16229 - components: - - type: Transform - pos: -5.5,14.5 - parent: 2 - - uid: 16230 - components: - - type: Transform - pos: -1.5,13.5 - parent: 2 - - uid: 16231 - components: - - type: Transform - pos: -0.5,13.5 - parent: 2 - - uid: 16232 - components: - - type: Transform - pos: -18.5,19.5 - parent: 2 - - uid: 16233 - components: - - type: Transform - pos: -5.5,12.5 - parent: 2 - - uid: 16234 - components: - - type: Transform - pos: -12.5,16.5 - parent: 2 - - uid: 16235 - components: - - type: Transform - pos: -11.5,16.5 - parent: 2 - - uid: 16236 - components: - - type: Transform - pos: 10.5,-7.5 - parent: 2 - - uid: 16237 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 2 - - uid: 16238 - components: - - type: Transform - pos: 9.5,-5.5 - parent: 2 - - uid: 16239 - components: - - type: Transform - pos: 8.5,-8.5 - parent: 2 - - uid: 16240 - components: - - type: Transform - pos: 9.5,-8.5 - parent: 2 - - uid: 16241 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 2 - - uid: 16242 - components: - - type: Transform - pos: -12.5,18.5 - parent: 2 - - uid: 16243 - components: - - type: Transform - pos: -15.5,16.5 - parent: 2 - - uid: 16244 - components: - - type: Transform - pos: 20.5,-10.5 - parent: 2 - - uid: 16245 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 2 - - uid: 16246 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 2 - - uid: 16247 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 2 - - uid: 16248 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 2 - - uid: 16249 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 16250 - components: - - type: Transform - pos: 10.5,-11.5 - parent: 2 - - uid: 16251 - components: - - type: Transform - pos: 14.5,-11.5 - parent: 2 - - uid: 16252 - components: - - type: Transform - pos: 16.5,-11.5 - parent: 2 - - uid: 16253 - components: - - type: Transform - pos: 16.5,-15.5 - parent: 2 - - uid: 16254 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - - uid: 16255 - components: - - type: Transform - pos: 16.5,-13.5 - parent: 2 - - uid: 16256 - components: - - type: Transform - pos: 16.5,-12.5 - parent: 2 - - uid: 16257 - components: - - type: Transform - pos: 16.5,-17.5 - parent: 2 - - uid: 16258 - components: - - type: Transform - pos: -5.5,20.5 - parent: 2 - - uid: 16259 - components: - - type: Transform - pos: 16.5,-10.5 - parent: 2 - - uid: 16260 - components: - - type: Transform - pos: 16.5,-8.5 - parent: 2 - - uid: 16261 - components: - - type: Transform - pos: -18.5,18.5 - parent: 2 - - uid: 16262 - components: - - type: Transform - pos: -19.5,18.5 - parent: 2 - - uid: 16263 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 2 - - uid: 16264 - components: - - type: Transform - pos: 17.5,2.5 - parent: 2 - - uid: 16265 - components: - - type: Transform - pos: -34.5,0.5 - parent: 2 - - uid: 16266 - components: - - type: Transform - pos: 20.5,2.5 - parent: 2 - - uid: 16267 - components: - - type: Transform - pos: -21.5,18.5 - parent: 2 - - uid: 16268 - components: - - type: Transform - pos: -22.5,14.5 - parent: 2 - - uid: 16269 - components: - - type: Transform - pos: -21.5,15.5 - parent: 2 - - uid: 16270 - components: - - type: Transform - pos: -1.5,9.5 - parent: 2 - - uid: 16271 - components: - - type: Transform - pos: -2.5,9.5 - parent: 2 - - uid: 16272 - components: - - type: Transform - pos: -2.5,13.5 - parent: 2 - - uid: 16273 - components: - - type: Transform - pos: 16.5,2.5 - parent: 2 - - uid: 16274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,8.5 - parent: 2 - - uid: 16275 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 16276 - components: - - type: Transform - pos: 15.5,3.5 - parent: 2 - - uid: 16277 - components: - - type: Transform - pos: 16.5,3.5 - parent: 2 - - uid: 16278 - components: - - type: Transform - pos: 26.5,-6.5 - parent: 2 - - uid: 16279 - components: - - type: Transform - pos: 16.5,4.5 - parent: 2 - - uid: 16280 - components: - - type: Transform - pos: 16.5,8.5 - parent: 2 - - uid: 16281 - components: - - type: Transform - pos: -8.5,13.5 - parent: 2 - - uid: 16282 - components: - - type: Transform - pos: -20.5,-1.5 - parent: 2 - - uid: 16283 - components: - - type: Transform - pos: -23.5,-1.5 - parent: 2 - - uid: 16284 - components: - - type: Transform - pos: -25.5,-1.5 - parent: 2 - - uid: 16285 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 2 - - uid: 16286 - components: - - type: Transform - pos: -26.5,8.5 - parent: 2 - - uid: 16287 - components: - - type: Transform - pos: -27.5,8.5 - parent: 2 - - uid: 16288 - components: - - type: Transform - pos: -29.5,8.5 - parent: 2 - - uid: 16289 - components: - - type: Transform - pos: -30.5,8.5 - parent: 2 - - uid: 16290 - components: - - type: Transform - pos: -31.5,8.5 - parent: 2 - - uid: 16291 - components: - - type: Transform - pos: -32.5,8.5 - parent: 2 - - uid: 16292 - components: - - type: Transform - pos: -33.5,8.5 - parent: 2 - - uid: 16293 - components: - - type: Transform - pos: -35.5,8.5 - parent: 2 - - uid: 16294 - components: - - type: Transform - pos: -34.5,4.5 - parent: 2 - - uid: 16295 - components: - - type: Transform - pos: -35.5,4.5 - parent: 2 - - uid: 16296 - components: - - type: Transform - pos: -26.5,9.5 - parent: 2 - - uid: 16297 - components: - - type: Transform - pos: -26.5,11.5 - parent: 2 - - uid: 16298 - components: - - type: Transform - pos: -26.5,10.5 - parent: 2 - - uid: 16299 - components: - - type: Transform - pos: -26.5,13.5 - parent: 2 - - uid: 16300 - components: - - type: Transform - pos: -26.5,12.5 - parent: 2 - - uid: 16301 - components: - - type: Transform - pos: -23.5,8.5 - parent: 2 - - uid: 16302 - components: - - type: Transform - pos: -26.5,17.5 - parent: 2 - - uid: 16303 - components: - - type: Transform - pos: -26.5,16.5 - parent: 2 - - uid: 16304 - components: - - type: Transform - pos: -25.5,18.5 - parent: 2 - - uid: 16305 - components: - - type: Transform - pos: -25.5,19.5 - parent: 2 - - uid: 16306 - components: - - type: Transform - pos: -25.5,20.5 - parent: 2 - - uid: 16307 - components: - - type: Transform - pos: -25.5,21.5 - parent: 2 - - uid: 16308 - components: - - type: Transform - pos: -25.5,22.5 - parent: 2 - - uid: 16309 - components: - - type: Transform - pos: -13.5,19.5 - parent: 2 - - uid: 16310 - components: - - type: Transform - pos: -12.5,19.5 - parent: 2 - - uid: 16311 - components: - - type: Transform - pos: -5.5,19.5 - parent: 2 - - uid: 16312 - components: - - type: Transform - pos: -23.5,11.5 - parent: 2 - - uid: 16313 - components: - - type: Transform - pos: -26.5,18.5 - parent: 2 - - uid: 16314 - components: - - type: Transform - pos: -23.5,13.5 - parent: 2 - - uid: 16315 - components: - - type: Transform - pos: -22.5,15.5 - parent: 2 - - uid: 16316 - components: - - type: Transform - pos: -20.5,8.5 - parent: 2 - - uid: 16317 - components: - - type: Transform - pos: -11.5,11.5 - parent: 2 - - uid: 16318 - components: - - type: Transform - pos: -8.5,14.5 - parent: 2 - - uid: 16319 - components: - - type: Transform - pos: -5.5,8.5 - parent: 2 - - uid: 16320 - components: - - type: Transform - pos: -22.5,16.5 - parent: 2 - - uid: 16321 - components: - - type: Transform - pos: -22.5,18.5 - parent: 2 - - uid: 16322 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 2 - - uid: 16323 - components: - - type: Transform - pos: -25.5,23.5 - parent: 2 - - uid: 16324 - components: - - type: Transform - pos: -29.5,12.5 - parent: 2 - - uid: 16325 - components: - - type: Transform - pos: -29.5,11.5 - parent: 2 - - uid: 16326 - components: - - type: Transform - pos: -29.5,10.5 - parent: 2 - - uid: 16327 - components: - - type: Transform - pos: -29.5,9.5 - parent: 2 - - uid: 16328 - components: - - type: Transform - pos: -32.5,12.5 - parent: 2 - - uid: 16329 - components: - - type: Transform - pos: -29.5,-1.5 - parent: 2 - - uid: 16330 - components: - - type: Transform - pos: -32.5,11.5 - parent: 2 - - uid: 16331 - components: - - type: Transform - pos: -32.5,10.5 - parent: 2 - - uid: 16332 - components: - - type: Transform - pos: -32.5,9.5 - parent: 2 - - uid: 16333 - components: - - type: Transform - pos: -26.5,-2.5 - parent: 2 - - uid: 16334 - components: - - type: Transform - pos: -38.5,12.5 - parent: 2 - - uid: 16335 - components: - - type: Transform - pos: -38.5,8.5 - parent: 2 - - uid: 16336 - components: - - type: Transform - pos: -29.5,13.5 - parent: 2 - - uid: 16337 - components: - - type: Transform - pos: -27.5,13.5 - parent: 2 - - uid: 16338 - components: - - type: Transform - pos: 36.5,-17.5 - parent: 2 - - uid: 16339 - components: - - type: Transform - pos: -35.5,16.5 - parent: 2 - - uid: 16340 - components: - - type: Transform - pos: -35.5,17.5 - parent: 2 - - uid: 16341 - components: - - type: Transform - pos: 33.5,-17.5 - parent: 2 - - uid: 16342 - components: - - type: Transform - pos: -38.5,21.5 - parent: 2 - - uid: 16343 - components: - - type: Transform - pos: -35.5,18.5 - parent: 2 - - uid: 16344 - components: - - type: Transform - pos: -35.5,19.5 - parent: 2 - - uid: 16345 - components: - - type: Transform - pos: -35.5,20.5 - parent: 2 - - uid: 16346 - components: - - type: Transform - pos: -35.5,21.5 - parent: 2 - - uid: 16347 - components: - - type: Transform - pos: -34.5,1.5 - parent: 2 - - uid: 16348 - components: - - type: Transform - pos: -5.5,-15.5 - parent: 2 - - uid: 16351 - components: - - type: Transform - pos: -29.5,17.5 - parent: 2 - - uid: 16352 - components: - - type: Transform - pos: -28.5,17.5 - parent: 2 - - uid: 16353 - components: - - type: Transform - pos: -36.5,21.5 - parent: 2 - - uid: 16354 - components: - - type: Transform - pos: -29.5,18.5 - parent: 2 - - uid: 16355 - components: - - type: Transform - pos: -29.5,19.5 - parent: 2 - - uid: 16356 - components: - - type: Transform - pos: -29.5,20.5 - parent: 2 - - uid: 16358 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - - uid: 16359 - components: - - type: Transform - pos: -29.5,21.5 - parent: 2 - - uid: 16363 - components: - - type: Transform - pos: -31.5,21.5 - parent: 2 - - uid: 16364 - components: - - type: Transform - pos: -30.5,21.5 - parent: 2 - - uid: 16365 - components: - - type: Transform - pos: -34.5,21.5 - parent: 2 - - uid: 16366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 2 - - uid: 16367 - components: - - type: Transform - pos: -30.5,-1.5 - parent: 2 - - uid: 16368 - components: - - type: Transform - pos: -32.5,-1.5 - parent: 2 - - uid: 16369 - components: - - type: Transform - pos: -33.5,-1.5 - parent: 2 - - uid: 16370 - components: - - type: Transform - pos: -34.5,3.5 - parent: 2 - - uid: 16371 - components: - - type: Transform - pos: -34.5,2.5 - parent: 2 - - uid: 16372 - components: - - type: Transform - pos: -29.5,-0.5 - parent: 2 - - uid: 16373 - components: - - type: Transform - pos: -34.5,-0.5 - parent: 2 - - uid: 16374 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 - - uid: 16375 - components: - - type: Transform - pos: -20.5,-10.5 - parent: 2 - - uid: 16376 - components: - - type: Transform - pos: -21.5,-10.5 - parent: 2 - - uid: 16377 - components: - - type: Transform - pos: -23.5,-10.5 - parent: 2 - - uid: 16378 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 2 - - uid: 16379 - components: - - type: Transform - pos: -15.5,20.5 - parent: 2 - - uid: 16380 - components: - - type: Transform - pos: -22.5,23.5 - parent: 2 - - uid: 16381 - components: - - type: Transform - pos: -26.5,-7.5 - parent: 2 - - uid: 16382 - components: - - type: Transform - pos: -27.5,-7.5 - parent: 2 - - uid: 16383 - components: - - type: Transform - pos: -5.5,-21.5 - parent: 2 - - uid: 16384 - components: - - type: Transform - pos: -22.5,13.5 - parent: 2 - - uid: 16386 - components: - - type: Transform - pos: -18.5,22.5 - parent: 2 - - uid: 16387 - components: - - type: Transform - pos: -5.5,-19.5 - parent: 2 - - uid: 16388 - components: - - type: Transform - pos: 13.5,-29.5 - parent: 2 - - uid: 16389 - components: - - type: Transform - pos: -18.5,24.5 - parent: 2 - - uid: 16390 - components: - - type: Transform - pos: -2.5,-20.5 - parent: 2 - - uid: 16391 - components: - - type: Transform - pos: 35.5,-17.5 - parent: 2 - - uid: 16392 - components: - - type: Transform - pos: -15.5,-19.5 - parent: 2 - - uid: 16393 - components: - - type: Transform - pos: -1.5,-20.5 - parent: 2 - - uid: 16394 - components: - - type: Transform - pos: -10.5,-14.5 - parent: 2 - - uid: 16395 - components: - - type: Transform - pos: 23.5,-6.5 - parent: 2 - - uid: 16396 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - - uid: 16397 - components: - - type: Transform - pos: -5.5,-20.5 - parent: 2 - - uid: 16398 - components: - - type: Transform - pos: -4.5,-20.5 - parent: 2 - - uid: 16399 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 2 - - uid: 16400 - components: - - type: Transform - pos: -15.5,-14.5 - parent: 2 - - uid: 16401 - components: - - type: Transform - pos: -14.5,-14.5 - parent: 2 - - uid: 16402 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 2 - - uid: 16403 - components: - - type: Transform - pos: -11.5,23.5 - parent: 2 - - uid: 16404 - components: - - type: Transform - pos: -19.5,24.5 - parent: 2 - - uid: 16405 - components: - - type: Transform - pos: -22.5,21.5 - parent: 2 - - uid: 16406 - components: - - type: Transform - pos: 8.5,-19.5 - parent: 2 - - uid: 16407 - components: - - type: Transform - pos: -18.5,20.5 - parent: 2 - - uid: 16408 - components: - - type: Transform - pos: -20.5,24.5 - parent: 2 - - uid: 16409 - components: - - type: Transform - pos: -2.5,15.5 - parent: 2 - - uid: 16410 - components: - - type: Transform - pos: -22.5,24.5 - parent: 2 - - uid: 16411 - components: - - type: Transform - pos: -21.5,24.5 - parent: 2 - - uid: 16412 - components: - - type: Transform - pos: -15.5,22.5 - parent: 2 - - uid: 16413 - components: - - type: Transform - pos: -18.5,21.5 - parent: 2 - - uid: 16414 - components: - - type: Transform - pos: -16.5,23.5 - parent: 2 - - uid: 16415 - components: - - type: Transform - pos: -15.5,23.5 - parent: 2 - - uid: 16416 - components: - - type: Transform - pos: -15.5,24.5 - parent: 2 - - uid: 16417 - components: - - type: Transform - pos: -12.5,24.5 - parent: 2 - - uid: 16418 - components: - - type: Transform - pos: -18.5,23.5 - parent: 2 - - uid: 16419 - components: - - type: Transform - pos: -11.5,24.5 - parent: 2 - - uid: 16420 - components: - - type: Transform - pos: -25.5,24.5 - parent: 2 - - uid: 16421 - components: - - type: Transform - pos: -1.5,26.5 - parent: 2 - - uid: 16422 - components: - - type: Transform - pos: -15.5,-15.5 - parent: 2 - - uid: 16423 - components: - - type: Transform - pos: -15.5,-16.5 - parent: 2 - - uid: 16424 - components: - - type: Transform - pos: -33.5,-10.5 - parent: 2 - - uid: 16425 - components: - - type: Transform - pos: -34.5,-10.5 - parent: 2 - - uid: 16426 - components: - - type: Transform - pos: -5.5,-25.5 - parent: 2 - - uid: 16427 - components: - - type: Transform - pos: -5.5,-26.5 - parent: 2 - - uid: 16428 - components: - - type: Transform - pos: -5.5,-27.5 - parent: 2 - - uid: 16429 - components: - - type: Transform - pos: -5.5,-28.5 - parent: 2 - - uid: 16430 - components: - - type: Transform - pos: -20.5,28.5 - parent: 2 - - uid: 16431 - components: - - type: Transform - pos: -17.5,28.5 - parent: 2 - - uid: 16432 - components: - - type: Transform - pos: -18.5,28.5 - parent: 2 - - uid: 16433 - components: - - type: Transform - pos: -13.5,-31.5 - parent: 2 - - uid: 16434 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 2 - - uid: 16435 - components: - - type: Transform - pos: 36.5,-11.5 - parent: 2 - - uid: 16436 - components: - - type: Transform - pos: -15.5,28.5 - parent: 2 - - uid: 16437 - components: - - type: Transform - pos: 13.5,-30.5 - parent: 2 - - uid: 16438 - components: - - type: Transform - pos: 12.5,-28.5 - parent: 2 - - uid: 16439 - components: - - type: Transform - pos: 13.5,-28.5 - parent: 2 - - uid: 16440 - components: - - type: Transform - pos: 9.5,-28.5 - parent: 2 - - uid: 16441 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-1.5 - parent: 2 - - uid: 16442 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 2 - - uid: 16443 - components: - - type: Transform - pos: -16.5,28.5 - parent: 2 - - uid: 16444 - components: - - type: Transform - pos: 32.5,-14.5 - parent: 2 - - uid: 16445 - components: - - type: Transform - pos: -5.5,-17.5 - parent: 2 - - uid: 16446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-6.5 - parent: 2 - - uid: 16447 - components: - - type: Transform - pos: 18.5,-10.5 - parent: 2 - - uid: 16448 - components: - - type: Transform - pos: 19.5,-14.5 - parent: 2 - - uid: 16449 - components: - - type: Transform - pos: 32.5,-17.5 - parent: 2 - - uid: 16450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-6.5 - parent: 2 - - uid: 16451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-10.5 - parent: 2 - - uid: 16452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-12.5 - parent: 2 - - uid: 16453 - components: - - type: Transform - pos: -21.5,28.5 - parent: 2 - - uid: 16454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-1.5 - parent: 2 - - uid: 16455 - components: - - type: Transform - pos: -0.5,-20.5 - parent: 2 - - uid: 16456 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,23.5 - parent: 2 - - uid: 16457 - components: - - type: Transform - pos: 21.5,-10.5 - parent: 2 - - uid: 16458 - components: - - type: Transform - pos: -10.5,-35.5 - parent: 2 - - uid: 16459 - components: - - type: Transform - pos: -13.5,-35.5 - parent: 2 - - uid: 16460 - components: - - type: Transform - pos: 19.5,-21.5 - parent: 2 - - uid: 16461 - components: - - type: Transform - pos: 19.5,-19.5 - parent: 2 - - uid: 16462 - components: - - type: Transform - pos: 19.5,-18.5 - parent: 2 - - uid: 16463 - components: - - type: Transform - pos: 22.5,-10.5 - parent: 2 - - uid: 16464 - components: - - type: Transform - pos: 8.5,-11.5 - parent: 2 - - uid: 16465 - components: - - type: Transform - pos: 16.5,5.5 - parent: 2 - - uid: 16466 - components: - - type: Transform - pos: -15.5,-27.5 - parent: 2 - - uid: 16467 - components: - - type: Transform - pos: -15.5,-28.5 - parent: 2 - - uid: 16468 - components: - - type: Transform - pos: -12.5,-31.5 - parent: 2 - - uid: 16469 - components: - - type: Transform - pos: -10.5,-31.5 - parent: 2 - - uid: 16470 - components: - - type: Transform - pos: -9.5,-31.5 - parent: 2 - - uid: 16471 - components: - - type: Transform - pos: -35.5,-10.5 - parent: 2 - - uid: 16472 - components: - - type: Transform - pos: 9.5,3.5 - parent: 2 - - uid: 16473 - components: - - type: Transform - pos: 3.5,2.5 - parent: 2 - - uid: 16474 - components: - - type: Transform - pos: 5.5,2.5 - parent: 2 - - uid: 16475 - components: - - type: Transform - pos: 27.5,-11.5 - parent: 2 - - uid: 16476 - components: - - type: Transform - pos: -26.5,-22.5 - parent: 2 - - uid: 16477 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 2 - - uid: 16478 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 2 - - uid: 16479 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 2 - - uid: 16480 - components: - - type: Transform - pos: -14.5,-46.5 - parent: 2 - - uid: 16481 - components: - - type: Transform - pos: 4.5,2.5 - parent: 2 - - uid: 16482 - components: - - type: Transform - pos: -26.5,-21.5 - parent: 2 - - uid: 16483 - components: - - type: Transform - pos: -20.5,-20.5 - parent: 2 - - uid: 16484 - components: - - type: Transform - pos: -14.5,28.5 - parent: 2 - - uid: 16485 - components: - - type: Transform - pos: -11.5,28.5 - parent: 2 - - uid: 16486 - components: - - type: Transform - pos: -12.5,28.5 - parent: 2 - - uid: 16487 - components: - - type: Transform - pos: -11.5,27.5 - parent: 2 - - uid: 16488 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 2 - - uid: 16489 - components: - - type: Transform - pos: -10.5,28.5 - parent: 2 - - uid: 16490 - components: - - type: Transform - pos: -9.5,28.5 - parent: 2 - - uid: 16491 - components: - - type: Transform - pos: 3.5,3.5 - parent: 2 - - uid: 16492 - components: - - type: Transform - pos: -11.5,-7.5 - parent: 2 - - uid: 16493 - components: - - type: Transform - pos: -39.5,13.5 - parent: 2 - - uid: 16494 - components: - - type: Transform - pos: -39.5,16.5 - parent: 2 - - uid: 16495 - components: - - type: Transform - pos: -15.5,-29.5 - parent: 2 - - uid: 16496 - components: - - type: Transform - pos: -15.5,-30.5 - parent: 2 - - uid: 16497 - components: - - type: Transform - pos: -14.5,-38.5 - parent: 2 - - uid: 16498 - components: - - type: Transform - pos: -14.5,-37.5 - parent: 2 - - uid: 16499 - components: - - type: Transform - pos: -13.5,-41.5 - parent: 2 - - uid: 16500 - components: - - type: Transform - pos: -9.5,-35.5 - parent: 2 - - uid: 16501 - components: - - type: Transform - pos: -15.5,-31.5 - parent: 2 - - uid: 16502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-45.5 - parent: 2 - - uid: 16503 - components: - - type: Transform - pos: -14.5,-36.5 - parent: 2 - - uid: 16504 - components: - - type: Transform - pos: -11.5,-41.5 - parent: 2 - - uid: 16505 - components: - - type: Transform - pos: -12.5,-41.5 - parent: 2 - - uid: 16506 - components: - - type: Transform - pos: -10.5,-41.5 - parent: 2 - - uid: 16507 - components: - - type: Transform - pos: -14.5,-42.5 - parent: 2 - - uid: 16508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-45.5 - parent: 2 - - uid: 16509 - components: - - type: Transform - pos: -14.5,-41.5 - parent: 2 - - uid: 16510 - components: - - type: Transform - pos: -14.5,-35.5 - parent: 2 - - uid: 16511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-45.5 - parent: 2 - - uid: 16512 - components: - - type: Transform - pos: -14.5,-31.5 - parent: 2 - - uid: 16513 - components: - - type: Transform - pos: -45.5,-11.5 - parent: 2 - - uid: 16514 - components: - - type: Transform - pos: -47.5,-11.5 - parent: 2 - - uid: 16515 - components: - - type: Transform - pos: -4.5,-28.5 - parent: 2 - - uid: 16516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-8.5 - parent: 2 - - uid: 16517 - components: - - type: Transform - pos: 27.5,-10.5 - parent: 2 - - uid: 16518 - components: - - type: Transform - pos: 27.5,-9.5 - parent: 2 - - uid: 16519 - components: - - type: Transform - pos: 3.5,5.5 - parent: 2 - - uid: 16520 - components: - - type: Transform - pos: 27.5,-8.5 - parent: 2 - - uid: 16521 - components: - - type: Transform - pos: 3.5,4.5 - parent: 2 - - uid: 16522 - components: - - type: Transform - pos: 27.5,-7.5 - parent: 2 - - uid: 16523 - components: - - type: Transform - pos: 9.5,2.5 - parent: 2 - - uid: 16524 - components: - - type: Transform - pos: -19.5,-28.5 - parent: 2 - - uid: 16525 - components: - - type: Transform - pos: -19.5,-29.5 - parent: 2 - - uid: 16526 - components: - - type: Transform - pos: 23.5,2.5 - parent: 2 - - uid: 16527 - components: - - type: Transform - pos: 8.5,2.5 - parent: 2 - - uid: 16528 - components: - - type: Transform - pos: 36.5,-7.5 - parent: 2 - - uid: 16529 - components: - - type: Transform - pos: 36.5,-8.5 - parent: 2 - - uid: 16530 - components: - - type: Transform - pos: 36.5,-10.5 - parent: 2 - - uid: 16531 - components: - - type: Transform - pos: 36.5,-9.5 - parent: 2 - - uid: 16532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,12.5 - parent: 2 - - uid: 16533 - components: - - type: Transform - pos: -39.5,12.5 - parent: 2 - - uid: 16534 - components: - - type: Transform - pos: -33.5,12.5 - parent: 2 - - uid: 16535 - components: - - type: Transform - pos: -36.5,12.5 - parent: 2 - - uid: 16536 - components: - - type: Transform - pos: 4.5,28.5 - parent: 2 - - uid: 16537 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - - uid: 16538 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 2 - - uid: 16539 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 16540 - components: - - type: Transform - pos: 24.5,11.5 - parent: 2 - - uid: 16541 - components: - - type: Transform - pos: 3.5,-66.5 - parent: 2 - - uid: 16542 - components: - - type: Transform - pos: -15.5,-89.5 - parent: 2 - - uid: 16543 - components: - - type: Transform - pos: -33.5,-66.5 - parent: 2 - - uid: 16544 - components: - - type: Transform - pos: -39.5,-80.5 - parent: 2 - - uid: 16545 - components: - - type: Transform - pos: -39.5,8.5 - parent: 2 - - uid: 16546 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 2 - - uid: 16547 - components: - - type: Transform - pos: 36.5,-13.5 - parent: 2 - - uid: 16548 - components: - - type: Transform - pos: 36.5,-16.5 - parent: 2 - - uid: 16549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,16.5 - parent: 2 - - uid: 16550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,15.5 - parent: 2 - - uid: 16551 - components: - - type: Transform - pos: 30.5,2.5 - parent: 2 - - uid: 16552 - components: - - type: Transform - pos: 28.5,-13.5 - parent: 2 - - uid: 16553 - components: - - type: Transform - pos: 35.5,2.5 - parent: 2 - - uid: 16554 - components: - - type: Transform - pos: 37.5,-14.5 - parent: 2 - - uid: 16555 - components: - - type: Transform - pos: 29.5,2.5 - parent: 2 - - uid: 16556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-17.5 - parent: 2 - - uid: 16557 - components: - - type: Transform - pos: 31.5,-16.5 - parent: 2 - - uid: 16558 - components: - - type: Transform - pos: 31.5,-14.5 - parent: 2 - - uid: 16559 - components: - - type: Transform - pos: 27.5,-13.5 - parent: 2 - - uid: 16560 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 2 - - uid: 16561 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 2 - - uid: 16562 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 2 - - uid: 16563 - components: - - type: Transform - pos: 31.5,-17.5 - parent: 2 - - uid: 16564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 2 - - uid: 16565 - components: - - type: Transform - pos: 31.5,-13.5 - parent: 2 - - uid: 16566 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 2 - - uid: 16567 - components: - - type: Transform - pos: 33.5,-13.5 - parent: 2 - - uid: 16568 - components: - - type: Transform - pos: 35.5,-13.5 - parent: 2 - - uid: 16569 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 2 - - uid: 16570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 2 - - uid: 16571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-7.5 - parent: 2 - - uid: 16572 - components: - - type: Transform - pos: 23.5,-11.5 - parent: 2 - - uid: 16573 - components: - - type: Transform - pos: 23.5,-10.5 - parent: 2 - - uid: 16574 - components: - - type: Transform - pos: -39.5,17.5 - parent: 2 - - uid: 16575 - components: - - type: Transform - pos: -39.5,20.5 - parent: 2 - - uid: 16576 - components: - - type: Transform - pos: -39.5,21.5 - parent: 2 - - uid: 16577 - components: - - type: Transform - pos: -39.5,11.5 - parent: 2 - - uid: 16578 - components: - - type: Transform - pos: -39.5,10.5 - parent: 2 - - uid: 16579 - components: - - type: Transform - pos: -39.5,9.5 - parent: 2 - - uid: 16580 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - - uid: 16581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,21.5 - parent: 2 - - uid: 16582 - components: - - type: Transform - pos: 9.5,12.5 - parent: 2 - - uid: 16583 - components: - - type: Transform - pos: 24.5,16.5 - parent: 2 - - uid: 16584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,17.5 - parent: 2 - - uid: 16585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 2 - - uid: 16586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,17.5 - parent: 2 - - uid: 16587 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,17.5 - parent: 2 - - uid: 16588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,16.5 - parent: 2 - - uid: 16589 - components: - - type: Transform - pos: 30.5,17.5 - parent: 2 - - uid: 16590 - components: - - type: Transform - pos: 24.5,18.5 - parent: 2 - - uid: 16591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,13.5 - parent: 2 - - uid: 16592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,17.5 - parent: 2 - - uid: 16593 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,14.5 - parent: 2 - - uid: 16594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 2 - - uid: 16595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,17.5 - parent: 2 - - uid: 16596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,11.5 - parent: 2 - - uid: 16597 - components: - - type: Transform - pos: 9.5,15.5 - parent: 2 - - uid: 16598 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 2 - - uid: 16599 - components: - - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 16600 - components: - - type: Transform - pos: 20.5,20.5 - parent: 2 - - uid: 16601 - components: - - type: Transform - pos: 20.5,18.5 - parent: 2 - - uid: 16602 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 16603 - components: - - type: Transform - pos: 20.5,21.5 - parent: 2 - - uid: 16604 - components: - - type: Transform - pos: 15.5,22.5 - parent: 2 - - uid: 16605 - components: - - type: Transform - pos: 14.5,22.5 - parent: 2 - - uid: 16606 - components: - - type: Transform - pos: 14.5,17.5 - parent: 2 - - uid: 16607 - components: - - type: Transform - pos: 24.5,23.5 - parent: 2 - - uid: 16608 - components: - - type: Transform - pos: 14.5,18.5 - parent: 2 - - uid: 16609 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - - uid: 16610 - components: - - type: Transform - pos: 23.5,20.5 - parent: 2 - - uid: 16611 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 16612 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 16613 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - - uid: 16614 - components: - - type: Transform - pos: 30.5,22.5 - parent: 2 - - uid: 16615 - components: - - type: Transform - pos: 25.5,23.5 - parent: 2 - - uid: 16616 - components: - - type: Transform - pos: 24.5,21.5 - parent: 2 - - uid: 16617 - components: - - type: Transform - pos: 16.5,22.5 - parent: 2 - - uid: 16618 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - uid: 16619 - components: - - type: Transform - pos: 18.5,22.5 - parent: 2 - - uid: 16620 - components: - - type: Transform - pos: 14.5,21.5 - parent: 2 - - uid: 16621 - components: - - type: Transform - pos: 19.5,22.5 - parent: 2 - - uid: 16622 - components: - - type: Transform - pos: 20.5,22.5 - parent: 2 - - uid: 16623 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,27.5 - parent: 2 - - uid: 16624 - components: - - type: Transform - pos: 16.5,27.5 - parent: 2 - - uid: 16625 - components: - - type: Transform - pos: 15.5,27.5 - parent: 2 - - uid: 16626 - components: - - type: Transform - pos: 14.5,27.5 - parent: 2 - - uid: 16627 - components: - - type: Transform - pos: 12.5,27.5 - parent: 2 - - uid: 16628 - components: - - type: Transform - pos: 7.5,28.5 - parent: 2 - - uid: 16629 - components: - - type: Transform - pos: 6.5,27.5 - parent: 2 - - uid: 16630 - components: - - type: Transform - pos: 6.5,26.5 - parent: 2 - - uid: 16631 - components: - - type: Transform - pos: 7.5,24.5 - parent: 2 - - uid: 16632 - components: - - type: Transform - pos: 6.5,24.5 - parent: 2 - - uid: 16633 - components: - - type: Transform - pos: 6.5,25.5 - parent: 2 - - uid: 16634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,28.5 - parent: 2 - - uid: 16635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,28.5 - parent: 2 - - uid: 16636 - components: - - type: Transform - pos: 11.5,24.5 - parent: 2 - - uid: 16637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,24.5 - parent: 2 - - uid: 16638 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,25.5 - parent: 2 - - uid: 16639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,26.5 - parent: 2 - - uid: 16640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,27.5 - parent: 2 - - uid: 16641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,26.5 - parent: 2 - - uid: 16642 - components: - - type: Transform - pos: 19.5,27.5 - parent: 2 - - uid: 16643 - components: - - type: Transform - pos: 21.5,27.5 - parent: 2 - - uid: 16644 - components: - - type: Transform - pos: 22.5,27.5 - parent: 2 - - uid: 16645 - components: - - type: Transform - pos: 23.5,27.5 - parent: 2 - - uid: 16646 - components: - - type: Transform - pos: 24.5,27.5 - parent: 2 - - uid: 16647 - components: - - type: Transform - pos: 25.5,27.5 - parent: 2 - - uid: 16648 - components: - - type: Transform - pos: 26.5,27.5 - parent: 2 - - uid: 16649 - components: - - type: Transform - pos: 6.5,28.5 - parent: 2 - - uid: 16650 - components: - - type: Transform - pos: 11.5,27.5 - parent: 2 - - uid: 16651 - components: - - type: Transform - pos: 8.5,28.5 - parent: 2 - - uid: 16652 - components: - - type: Transform - pos: 9.5,28.5 - parent: 2 - - uid: 16653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,14.5 - parent: 2 - - uid: 16654 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,14.5 - parent: 2 - - uid: 16655 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,17.5 - parent: 2 - - uid: 16656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,14.5 - parent: 2 - - uid: 16657 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,14.5 - parent: 2 - - uid: 16658 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,14.5 - parent: 2 - - uid: 16659 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,14.5 - parent: 2 - - uid: 16660 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,14.5 - parent: 2 - - uid: 16661 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,14.5 - parent: 2 - - uid: 16662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 2 - - uid: 16663 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 2 - - uid: 16664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,2.5 - parent: 2 - - uid: 16665 - components: - - type: Transform - pos: 18.5,-18.5 - parent: 2 - - uid: 16666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,9.5 - parent: 2 - - uid: 16667 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,7.5 - parent: 2 - - uid: 16668 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,10.5 - parent: 2 - - uid: 16669 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,4.5 - parent: 2 - - uid: 16670 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,3.5 - parent: 2 - - uid: 16671 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,8.5 - parent: 2 - - uid: 16672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 2 - - uid: 16673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,13.5 - parent: 2 - - uid: 16674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,12.5 - parent: 2 - - uid: 16675 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,5.5 - parent: 2 - - uid: 16676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,15.5 - parent: 2 - - uid: 16677 - components: - - type: Transform - pos: 42.5,10.5 - parent: 2 - - uid: 16678 - components: - - type: Transform - pos: 42.5,9.5 - parent: 2 - - uid: 16679 - components: - - type: Transform - pos: 42.5,13.5 - parent: 2 - - uid: 16680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,12.5 - parent: 2 - - uid: 16681 - components: - - type: Transform - pos: 9.5,5.5 - parent: 2 - - uid: 16682 - components: - - type: Transform - pos: -19.5,-27.5 - parent: 2 - - uid: 16683 - components: - - type: Transform - pos: -49.5,-5.5 - parent: 2 - - uid: 16684 - components: - - type: Transform - pos: -25.5,37.5 - parent: 2 - - uid: 16685 - components: - - type: Transform - pos: -25.5,36.5 - parent: 2 - - uid: 16686 - components: - - type: Transform - pos: 9.5,9.5 - parent: 2 - - uid: 16687 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - - uid: 16688 - components: - - type: Transform - pos: 9.5,8.5 - parent: 2 - - uid: 16689 - components: - - type: Transform - pos: -31.5,12.5 - parent: 2 - - uid: 16690 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,24.5 - parent: 2 - - uid: 16691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,27.5 - parent: 2 - - uid: 16692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-14.5 - parent: 2 - - uid: 16693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,24.5 - parent: 2 - - uid: 16694 - components: - - type: Transform - pos: 12.5,9.5 - parent: 2 - - uid: 16695 - components: - - type: Transform - pos: -8.5,28.5 - parent: 2 - - uid: 16696 - components: - - type: Transform - pos: -21.5,29.5 - parent: 2 - - uid: 16697 - components: - - type: Transform - pos: -21.5,30.5 - parent: 2 - - uid: 16698 - components: - - type: Transform - pos: -21.5,31.5 - parent: 2 - - uid: 16699 - components: - - type: Transform - pos: -21.5,32.5 - parent: 2 - - uid: 16700 - components: - - type: Transform - pos: -13.5,36.5 - parent: 2 - - uid: 16701 - components: - - type: Transform - pos: -13.5,34.5 - parent: 2 - - uid: 16702 - components: - - type: Transform - pos: -12.5,37.5 - parent: 2 - - uid: 16703 - components: - - type: Transform - pos: -13.5,37.5 - parent: 2 - - uid: 16704 - components: - - type: Transform - pos: -7.5,37.5 - parent: 2 - - uid: 16705 - components: - - type: Transform - pos: -6.5,37.5 - parent: 2 - - uid: 16706 - components: - - type: Transform - pos: -6.5,36.5 - parent: 2 - - uid: 16707 - components: - - type: Transform - pos: -6.5,34.5 - parent: 2 - - uid: 16708 - components: - - type: Transform - pos: -6.5,33.5 - parent: 2 - - uid: 16709 - components: - - type: Transform - pos: -25.5,32.5 - parent: 2 - - uid: 16710 - components: - - type: Transform - pos: -25.5,33.5 - parent: 2 - - uid: 16711 - components: - - type: Transform - pos: -28.5,40.5 - parent: 2 - - uid: 16712 - components: - - type: Transform - pos: -28.5,39.5 - parent: 2 - - uid: 16713 - components: - - type: Transform - pos: -28.5,38.5 - parent: 2 - - uid: 16714 - components: - - type: Transform - pos: -28.5,37.5 - parent: 2 - - uid: 16715 - components: - - type: Transform - pos: -28.5,36.5 - parent: 2 - - uid: 16716 - components: - - type: Transform - pos: -27.5,36.5 - parent: 2 - - uid: 16717 - components: - - type: Transform - pos: -26.5,36.5 - parent: 2 - - uid: 16718 - components: - - type: Transform - pos: -25.5,31.5 - parent: 2 - - uid: 16719 - components: - - type: Transform - pos: -26.5,33.5 - parent: 2 - - uid: 16720 - components: - - type: Transform - pos: -27.5,33.5 - parent: 2 - - uid: 16721 - components: - - type: Transform - pos: -28.5,33.5 - parent: 2 - - uid: 16722 - components: - - type: Transform - pos: -29.5,33.5 - parent: 2 - - uid: 16723 - components: - - type: Transform - pos: -30.5,33.5 - parent: 2 - - uid: 16724 - components: - - type: Transform - pos: -31.5,33.5 - parent: 2 - - uid: 16725 - components: - - type: Transform - pos: -25.5,35.5 - parent: 2 - - uid: 16726 - components: - - type: Transform - pos: -37.5,31.5 - parent: 2 - - uid: 16727 - components: - - type: Transform - pos: -35.5,24.5 - parent: 2 - - uid: 16728 - components: - - type: Transform - pos: -37.5,33.5 - parent: 2 - - uid: 16729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,25.5 - parent: 2 - - uid: 16730 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,24.5 - parent: 2 - - uid: 16731 - components: - - type: Transform - pos: -31.5,39.5 - parent: 2 - - uid: 16732 - components: - - type: Transform - pos: -30.5,39.5 - parent: 2 - - uid: 16733 - components: - - type: Transform - pos: -37.5,30.5 - parent: 2 - - uid: 16734 - components: - - type: Transform - pos: -38.5,24.5 - parent: 2 - - uid: 16735 - components: - - type: Transform - pos: -51.5,24.5 - parent: 2 - - uid: 16736 - components: - - type: Transform - pos: -37.5,34.5 - parent: 2 - - uid: 16737 - components: - - type: Transform - pos: -34.5,30.5 - parent: 2 - - uid: 16738 - components: - - type: Transform - pos: -36.5,30.5 - parent: 2 - - uid: 16739 - components: - - type: Transform - pos: -39.5,29.5 - parent: 2 - - uid: 16740 - components: - - type: Transform - pos: -39.5,25.5 - parent: 2 - - uid: 16741 - components: - - type: Transform - pos: -39.5,30.5 - parent: 2 - - uid: 16742 - components: - - type: Transform - pos: -38.5,30.5 - parent: 2 - - uid: 16743 - components: - - type: Transform - pos: -39.5,24.5 - parent: 2 - - uid: 16744 - components: - - type: Transform - pos: -36.5,24.5 - parent: 2 - - uid: 16745 - components: - - type: Transform - pos: -34.5,24.5 - parent: 2 - - uid: 16746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,23.5 - parent: 2 - - uid: 16747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,23.5 - parent: 2 - - uid: 16748 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,23.5 - parent: 2 - - uid: 16749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,23.5 - parent: 2 - - uid: 16750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,23.5 - parent: 2 - - uid: 16751 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,23.5 - parent: 2 - - uid: 16752 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,23.5 - parent: 2 - - uid: 16753 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,24.5 - parent: 2 - - uid: 16754 - components: - - type: Transform - pos: -50.5,24.5 - parent: 2 - - uid: 16755 - components: - - type: Transform - pos: -43.5,32.5 - parent: 2 - - uid: 16756 - components: - - type: Transform - pos: -51.5,25.5 - parent: 2 - - uid: 16757 - components: - - type: Transform - pos: -51.5,29.5 - parent: 2 - - uid: 16758 - components: - - type: Transform - pos: -38.5,38.5 - parent: 2 - - uid: 16759 - components: - - type: Transform - pos: -43.5,35.5 - parent: 2 - - uid: 16760 - components: - - type: Transform - pos: -43.5,34.5 - parent: 2 - - uid: 16761 - components: - - type: Transform - pos: -44.5,35.5 - parent: 2 - - uid: 16762 - components: - - type: Transform - pos: -41.5,35.5 - parent: 2 - - uid: 16763 - components: - - type: Transform - pos: -44.5,38.5 - parent: 2 - - uid: 16764 - components: - - type: Transform - pos: -41.5,38.5 - parent: 2 - - uid: 16765 - components: - - type: Transform - pos: -40.5,38.5 - parent: 2 - - uid: 16766 - components: - - type: Transform - pos: -13.5,28.5 - parent: 2 - - uid: 16767 - components: - - type: Transform - pos: -45.5,35.5 - parent: 2 - - uid: 16768 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,12.5 - parent: 2 - - uid: 16769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,11.5 - parent: 2 - - uid: 16770 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,8.5 - parent: 2 - - uid: 16771 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,9.5 - parent: 2 - - uid: 16772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,10.5 - parent: 2 - - uid: 16773 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,22.5 - parent: 2 - - uid: 16774 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 2 - - uid: 16775 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,18.5 - parent: 2 - - uid: 16776 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,13.5 - parent: 2 - - uid: 16777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,8.5 - parent: 2 - - uid: 16778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,11.5 - parent: 2 - - uid: 16779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,14.5 - parent: 2 - - uid: 16780 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,21.5 - parent: 2 - - uid: 16781 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,18.5 - parent: 2 - - uid: 16782 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,20.5 - parent: 2 - - uid: 16783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,19.5 - parent: 2 - - uid: 16784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,14.5 - parent: 2 - - uid: 16785 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,23.5 - parent: 2 - - uid: 16786 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - - uid: 16787 - components: - - type: Transform - pos: -34.5,38.5 - parent: 2 - - uid: 16788 - components: - - type: Transform - pos: 4.5,8.5 - parent: 2 - - uid: 16789 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,27.5 - parent: 2 - - uid: 16790 - components: - - type: Transform - pos: 13.5,-24.5 - parent: 2 - - uid: 16791 - components: - - type: Transform - pos: 24.5,2.5 - parent: 2 - - uid: 16792 - components: - - type: Transform - pos: -30.5,38.5 - parent: 2 - - uid: 16793 - components: - - type: Transform - pos: -35.5,39.5 - parent: 2 - - uid: 16794 - components: - - type: Transform - pos: -34.5,39.5 - parent: 2 - - uid: 16795 - components: - - type: Transform - pos: -33.5,39.5 - parent: 2 - - uid: 16796 - components: - - type: Transform - pos: -32.5,39.5 - parent: 2 - - uid: 16797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,34.5 - parent: 2 - - uid: 16798 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,35.5 - parent: 2 - - uid: 16799 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,36.5 - parent: 2 - - uid: 16800 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,37.5 - parent: 2 - - uid: 16801 - components: - - type: Transform - pos: 12.5,-18.5 - parent: 2 - - uid: 16802 - components: - - type: Transform - pos: -48.5,-5.5 - parent: 2 - - uid: 16803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,37.5 - parent: 2 - - uid: 16804 - components: - - type: Transform - pos: 21.5,20.5 - parent: 2 - - uid: 16805 - components: - - type: Transform - pos: -47.5,-5.5 - parent: 2 - - uid: 16806 - components: - - type: Transform - pos: -22.5,-20.5 - parent: 2 - - uid: 16807 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 2 - - uid: 16808 - components: - - type: Transform - pos: -20.5,2.5 - parent: 2 - - uid: 16809 - components: - - type: Transform - pos: -21.5,2.5 - parent: 2 - - uid: 16810 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-16.5 - parent: 2 - - uid: 16811 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - - uid: 16812 - components: - - type: Transform - pos: -24.5,-10.5 - parent: 2 - - uid: 16813 - components: - - type: Transform - pos: -39.5,23.5 - parent: 2 - - uid: 16814 - components: - - type: Transform - pos: 13.5,-23.5 - parent: 2 - - uid: 16815 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 2 - - uid: 16816 - components: - - type: Transform - pos: 16.5,-23.5 - parent: 2 - - uid: 16817 - components: - - type: Transform - pos: 14.5,-23.5 - parent: 2 - - uid: 16818 - components: - - type: Transform - pos: 3.5,-84.5 - parent: 2 - - uid: 16819 - components: - - type: Transform - pos: 18.5,-23.5 - parent: 2 - - uid: 16820 - components: - - type: Transform - pos: 17.5,-23.5 - parent: 2 - - uid: 16821 - components: - - type: Transform - pos: 21.5,-23.5 - parent: 2 - - uid: 16822 - components: - - type: Transform - pos: 19.5,-23.5 - parent: 2 - - uid: 16823 - components: - - type: Transform - pos: 16.5,-18.5 - parent: 2 - - uid: 16824 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 2 - - uid: 16825 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 2 - - uid: 16826 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 2 - - uid: 16827 - components: - - type: Transform - pos: 13.5,-18.5 - parent: 2 - - uid: 16828 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 16829 - components: - - type: Transform - pos: 13.5,-22.5 - parent: 2 - - uid: 16830 - components: - - type: Transform - pos: 13.5,-21.5 - parent: 2 - - uid: 16831 - components: - - type: Transform - pos: 19.5,-22.5 - parent: 2 - - uid: 16832 - components: - - type: Transform - pos: 16.5,-16.5 - parent: 2 - - uid: 16833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-16.5 - parent: 2 - - uid: 16834 - components: - - type: Transform - pos: 13.5,-33.5 - parent: 2 - - uid: 16835 - components: - - type: Transform - pos: -25.5,-10.5 - parent: 2 - - uid: 16836 - components: - - type: Transform - pos: -24.5,-13.5 - parent: 2 - - uid: 16837 - components: - - type: Transform - pos: -24.5,-11.5 - parent: 2 - - uid: 16838 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 2 - - uid: 16839 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 16840 - components: - - type: Transform - pos: -26.5,-10.5 - parent: 2 -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 16841 - components: - - type: Transform - pos: -31.5,-11.5 - parent: 2 - - uid: 16842 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-10.5 - parent: 2 -- proto: WardrobeAtmosphericsFilled - entities: - - uid: 16843 - components: - - type: Transform - pos: -5.5,-37.5 - parent: 2 -- proto: WardrobeFormal - entities: - - uid: 16844 - components: - - type: Transform - pos: -12.5,-7.5 - parent: 2 -- proto: WardrobePrisonFilled - entities: - - uid: 16845 - components: - - type: Transform - pos: -42.5,-11.5 - parent: 2 - - uid: 16846 - components: - - type: Transform - pos: -42.5,-14.5 - parent: 2 - - uid: 16847 - components: - - type: Transform - pos: -40.5,-17.5 - parent: 2 - - uid: 16848 - components: - - type: Transform - pos: -34.5,-17.5 - parent: 2 -- proto: WardrobeSalvageFilled - entities: - - uid: 16849 - components: - - type: Transform - pos: 8.5,-33.5 - parent: 2 -- proto: WarningAir - entities: - - uid: 16850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-40.5 - parent: 2 -- proto: WarningCO2 - entities: - - uid: 16851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 2 -- proto: WarningN2 - entities: - - uid: 16852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-42.5 - parent: 2 -- proto: WarningO2 - entities: - - uid: 16853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-44.5 - parent: 2 -- proto: WarningPlasma - entities: - - uid: 16854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-48.5 - parent: 2 -- proto: WarningWaste - entities: - - uid: 16855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-50.5 - parent: 2 - - uid: 16856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 2 -- proto: WarpPoint - entities: - - uid: 16858 - components: - - type: Transform - pos: -40.5,32.5 - parent: 2 - - type: WarpPoint - location: epistemics - - uid: 16859 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 2 - - type: WarpPoint - location: ame room - - uid: 16860 - components: - - type: Transform - pos: 33.5,-20.5 - parent: 2 - - type: WarpPoint - location: arrivals - - uid: 16861 - components: - - type: Transform - pos: -10.5,36.5 - parent: 2 - - type: WarpPoint - location: command - - uid: 16862 - components: - - type: Transform - pos: -47.5,16.5 - parent: 2 - - type: WarpPoint - location: primary evac - - uid: 16863 - components: - - type: Transform - pos: -42.5,67.5 - parent: 2 - - uid: 16864 - components: - - type: Transform - pos: 62.5,11.5 - parent: 2 - - type: WarpPoint - location: east solar panel - - uid: 16865 - components: - - type: Transform - pos: 34.5,8.5 - parent: 2 - - type: WarpPoint - location: dojo - - uid: 16866 - components: - - type: Transform - pos: -21.5,-23.5 - parent: 2 - - type: WarpPoint - location: eva room - - uid: 16867 - components: - - type: Transform - pos: -15.5,-76.5 - parent: 2 - - type: WarpPoint - location: ai upload -- proto: WarpPointBombing - entities: - - uid: 16868 - components: - - type: Transform - pos: -14.5,13.5 - parent: 2 - - type: WarpPoint - location: kitchen/hydro - - uid: 16869 - components: - - type: Transform - pos: 0.5,1.5 - parent: 2 - - type: WarpPoint - location: center park - - uid: 16870 - components: - - type: Transform - pos: 10.5,-15.5 - parent: 2 - - type: WarpPoint - location: logistics - - uid: 16871 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - - type: WarpPoint - location: security - - uid: 16872 - components: - - type: Transform - pos: -23.5,41.5 - parent: 2 - - type: WarpPoint - location: courtroom - - uid: 16873 - components: - - type: Transform - pos: -32.5,15.5 - parent: 2 - - type: WarpPoint - location: dormitories - - uid: 16874 - components: - - type: Transform - pos: 17.5,16.5 - parent: 2 - - type: WarpPoint - location: medical - - uid: 16875 - components: - - type: Transform - pos: 0.5,19.5 - parent: 2 - - type: WarpPoint - location: vault - - uid: 16876 - components: - - type: Transform - pos: -8.5,-6.5 - parent: 2 - - type: WarpPoint - location: bar - - uid: 16877 - components: - - type: Transform - pos: -55.5,-8.5 - parent: 2 - - type: WarpPoint - location: extended confinement - - uid: 16878 - components: - - type: Transform - pos: -7.5,-22.5 - parent: 2 - - type: WarpPoint - location: engineering -- proto: WashingMachineFilledClothes - entities: - - uid: 16879 - components: - - type: Transform - pos: -38.5,19.5 - parent: 2 -- proto: WaterCooler - entities: - - uid: 11988 - components: - - type: Transform - pos: -19.5,37.5 - parent: 2 - - uid: 16880 - components: - - type: Transform - pos: -39.5,31.5 - parent: 2 - - uid: 16881 - components: - - type: Transform - pos: -25.5,-5.5 - parent: 2 -- proto: WaterTank - entities: - - uid: 16882 - components: - - type: Transform - pos: -6.5,-21.5 - parent: 2 -- proto: WaterTankFull - entities: - - uid: 16883 - components: - - type: Transform - pos: 20.5,-14.5 - parent: 2 - - uid: 16884 - components: - - type: Transform - pos: -16.5,19.5 - parent: 2 - - uid: 16885 - components: - - type: Transform - pos: 4.5,9.5 - parent: 2 - - uid: 16886 - components: - - type: Transform - pos: -40.5,47.5 - parent: 2 -- proto: WaterTankHighCapacity - entities: - - uid: 16887 - components: - - type: Transform - pos: -17.5,3.5 - parent: 2 - - uid: 16888 - components: - - type: Transform - pos: -63.5,-5.5 - parent: 2 -- proto: WaterVaporCanister - entities: - - uid: 6237 - components: - - type: Transform - pos: -13.5,-45.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 6239 - components: - - type: Transform - pos: -13.5,-46.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 - - uid: 16889 - components: - - type: Transform - pos: 0.5,-36.5 - parent: 2 - - type: AtmosDevice - joinedGrid: 2 -- proto: WeaponCapacitorRecharger - entities: - - uid: 16890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 2 - - uid: 16891 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 2 - - uid: 16892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,0.5 - parent: 2 - - uid: 16893 - components: - - type: Transform - pos: -31.5,-10.5 - parent: 2 -- proto: WeaponCapacitorRechargerCircuitboard - entities: - - uid: 16894 - components: - - type: Transform - pos: 8.398281,-31.671444 - parent: 2 -- proto: WeaponLauncherRocket - entities: - - uid: 16895 - components: - - type: Transform - pos: -41.49494,1.6153598 - parent: 2 -- proto: WeaponShotgunHandmade - entities: - - uid: 16897 - components: - - type: Transform - pos: 58.21016,9.5359 - parent: 2 -- proto: WeaponShotgunKammererNonLethal - entities: - - uid: 16898 - components: - - type: Transform - pos: -26.271503,-15.564819 - parent: 2 - - uid: 16899 - components: - - type: Transform - pos: -26.388712,-15.330445 - parent: 2 -- proto: WeaponSniperCeremonial - entities: - - uid: 16900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.651196,20.645538 - parent: 2 -- proto: WeaponTurretSyndicateBroken - entities: - - uid: 16901 - components: - - type: Transform - pos: -4.5,-73.5 - parent: 2 - - uid: 16902 - components: - - type: Transform - pos: -10.5,-79.5 - parent: 2 - - uid: 16903 - components: - - type: Transform - pos: -10.5,-73.5 - parent: 2 - - uid: 16904 - components: - - type: Transform - pos: -14.5,-74.5 - parent: 2 - - uid: 16905 - components: - - type: Transform - pos: -10.5,-76.5 - parent: 2 - - uid: 16906 - components: - - type: Transform - pos: -4.5,-79.5 - parent: 2 - - uid: 16907 - components: - - type: Transform - pos: -17.5,-74.5 - parent: 2 -- proto: WeaponWaterPistol - entities: - - uid: 16908 - components: - - type: Transform - pos: -20.31781,9.430968 - parent: 2 -- proto: WelderIndustrial - entities: - - uid: 16909 - components: - - type: Transform - pos: -8.5,-39.5 - parent: 2 -- proto: WelderMini - entities: - - uid: 16910 - components: - - type: Transform - pos: 2.4258919,-9.600988 - parent: 2 -- proto: WeldingFuelTank - entities: - - uid: 16911 - components: - - type: Transform - pos: 4.5,-19.5 - parent: 2 -- proto: WeldingFuelTankFull - entities: - - uid: 16912 - components: - - type: Transform - pos: -6.5,-19.5 - parent: 2 - - uid: 16913 - components: - - type: Transform - pos: 26.5,-18.5 - parent: 2 - - uid: 16914 - components: - - type: Transform - pos: 4.5,3.5 - parent: 2 - - uid: 16915 - components: - - type: Transform - pos: -28.5,20.5 - parent: 2 - - uid: 16916 - components: - - type: Transform - pos: -9.5,29.5 - parent: 2 - - uid: 16917 - components: - - type: Transform - pos: 36.5,19.5 - parent: 2 - - uid: 16918 - components: - - type: Transform - pos: 4.5,29.5 - parent: 2 - - uid: 16919 - components: - - type: Transform - pos: -31.5,-21.5 - parent: 2 -- proto: WetFloorSign - entities: - - uid: 16920 - components: - - type: Transform - pos: -21.720625,13.343189 - parent: 2 - - uid: 16921 - components: - - type: Transform - pos: -1.5648136,12.694733 - parent: 2 - - uid: 16922 - components: - - type: Transform - pos: -1.2002304,12.663462 - parent: 2 - - uid: 16923 - components: - - type: Transform - pos: 22.190928,-14.054367 - parent: 2 -- proto: WheatSeeds - entities: - - uid: 16924 - components: - - type: Transform - pos: 32.33082,-12.661961 - parent: 2 -- proto: WindoorBarLocked - entities: - - uid: 16925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 2 -- proto: WindoorCargoLocked - entities: - - uid: 16926 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 2 - - uid: 16927 - components: - - type: Transform - pos: 13.5,-7.5 - parent: 2 -- proto: WindoorHydroponicsLocked - entities: - - uid: 16928 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,5.5 - parent: 2 - - uid: 16929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,10.5 - parent: 2 - - uid: 16930 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,6.5 - parent: 2 - - uid: 16931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,4.5 - parent: 2 - - uid: 16932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,5.5 - parent: 2 -- proto: WindoorKitchenLocked - entities: - - uid: 16933 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 2 - - uid: 16934 - components: - - type: Transform - pos: -7.5,13.5 - parent: 2 -- proto: WindoorMailLocked - entities: - - uid: 16935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 2 -- proto: WindoorSecure - entities: - - uid: 16936 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-2.5 - parent: 2 - - uid: 16937 - components: - - type: Transform - pos: -23.5,40.5 - parent: 2 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 16938 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-7.5 - parent: 2 - - uid: 16939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-7.5 - parent: 2 - - uid: 16940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,0.5 - parent: 2 -- proto: WindoorSecureCargoLocked - entities: - - uid: 16943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-28.5 - parent: 2 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 16944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,2.5 - parent: 2 - - uid: 16945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,2.5 - parent: 2 - - uid: 16946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,9.5 - parent: 2 - - uid: 16947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,9.5 - parent: 2 - - uid: 16948 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,9.5 - parent: 2 - - uid: 16949 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,9.5 - parent: 2 -- proto: WindoorSecureCommandLocked - entities: - - uid: 16950 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-29.5 - parent: 2 - - uid: 16951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-84.5 - parent: 2 - - uid: 16952 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-75.5 - parent: 2 - - uid: 16953 - components: - - type: Transform - pos: -7.5,-77.5 - parent: 2 - - uid: 16954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-84.5 - parent: 2 - - uid: 16955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-66.5 - parent: 2 - - uid: 16956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-68.5 - parent: 2 - - uid: 16957 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-66.5 - parent: 2 - - uid: 16958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-67.5 - parent: 2 - - uid: 16959 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,32.5 - parent: 2 - - uid: 16960 - components: - - type: Transform - pos: -6.5,-79.5 - parent: 2 - - uid: 16961 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-73.5 - parent: 2 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 16962 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-16.5 - parent: 2 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 16963 - components: - - type: Transform - pos: 18.5,-2.5 - parent: 2 -- proto: WindoorSecureMailLocked - entities: - - uid: 16964 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 16965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,16.5 - parent: 2 - - uid: 16966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,14.5 - parent: 2 - - uid: 16967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,25.5 - parent: 2 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 16968 - components: - - type: Transform - pos: 11.5,-28.5 - parent: 2 -- proto: WindoorSecureScienceLocked - entities: - - uid: 16969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,28.5 - parent: 2 - - uid: 16970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,28.5 - parent: 2 - - uid: 16971 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,27.5 - parent: 2 - - uid: 16972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,29.5 - parent: 2 -- proto: WindoorSecureSecurityLawyerLocked - entities: - - uid: 6241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-10.5 - parent: 2 - - uid: 6244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-10.5 - parent: 2 - - uid: 16941 - components: - - type: Transform - pos: -21.5,-6.5 - parent: 2 - - uid: 16942 - components: - - type: Transform - pos: -22.5,-6.5 - parent: 2 -- proto: WindoorSecureSecurityLocked - entities: - - uid: 16974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 2 - - uid: 16975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-14.5 - parent: 2 - - uid: 16977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,7.5 - parent: 2 -- proto: WindoorServiceLocked - entities: - - uid: 16978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 2 -- proto: Window - entities: - - uid: 12109 - components: - - type: Transform - pos: -32.5,17.5 - parent: 2 - - uid: 16979 - components: - - type: Transform - pos: -11.5,21.5 - parent: 2 - - uid: 16980 - components: - - type: Transform - pos: -8.5,2.5 - parent: 2 - - uid: 16981 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 2 - - uid: 16982 - components: - - type: Transform - pos: -11.5,20.5 - parent: 2 - - uid: 16983 - components: - - type: Transform - pos: -9.5,-29.5 - parent: 2 - - uid: 16984 - components: - - type: Transform - pos: -16.5,6.5 - parent: 2 - - uid: 16985 - components: - - type: Transform - pos: -9.5,2.5 - parent: 2 - - uid: 16986 - components: - - type: Transform - pos: -5.5,11.5 - parent: 2 - - uid: 16987 - components: - - type: Transform - pos: -6.5,-25.5 - parent: 2 - - uid: 16988 - components: - - type: Transform - pos: -10.5,2.5 - parent: 2 - - uid: 16989 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 2 - - uid: 16990 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 2 - - uid: 16991 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 2 - - uid: 16992 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 16993 - components: - - type: Transform - pos: 14.5,-7.5 - parent: 2 - - uid: 16994 - components: - - type: Transform - pos: 12.5,-11.5 - parent: 2 - - uid: 16995 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 2 - - uid: 16996 - components: - - type: Transform - pos: 9.5,-10.5 - parent: 2 - - uid: 16997 - components: - - type: Transform - pos: -2.5,10.5 - parent: 2 - - uid: 16998 - components: - - type: Transform - pos: -5.5,16.5 - parent: 2 - - uid: 16999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-4.5 - parent: 2 - - uid: 17000 - components: - - type: Transform - pos: 11.5,3.5 - parent: 2 - - uid: 17001 - components: - - type: Transform - pos: 14.5,3.5 - parent: 2 - - uid: 17002 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 2 - - uid: 17003 - components: - - type: Transform - pos: -9.5,13.5 - parent: 2 - - uid: 17004 - components: - - type: Transform - pos: -10.5,13.5 - parent: 2 - - uid: 17005 - components: - - type: Transform - pos: -22.5,-1.5 - parent: 2 - - uid: 17006 - components: - - type: Transform - pos: -5.5,17.5 - parent: 2 - - uid: 17007 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 2 - - uid: 17008 - components: - - type: Transform - pos: -19.5,2.5 - parent: 2 - - uid: 17009 - components: - - type: Transform - pos: -18.5,2.5 - parent: 2 - - uid: 17010 - components: - - type: Transform - pos: -11.5,22.5 - parent: 2 - - uid: 17011 - components: - - type: Transform - pos: -11.5,1.5 - parent: 2 - - uid: 17012 - components: - - type: Transform - pos: -30.5,4.5 - parent: 2 - - uid: 17013 - components: - - type: Transform - pos: -32.5,4.5 - parent: 2 - - uid: 17014 - components: - - type: Transform - pos: -5.5,-22.5 - parent: 2 - - uid: 17015 - components: - - type: Transform - pos: -5.5,-24.5 - parent: 2 - - uid: 17016 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 2 - - uid: 17017 - components: - - type: Transform - pos: -7.5,-11.5 - parent: 2 - - uid: 17018 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 2 - - uid: 17019 - components: - - type: Transform - pos: 28.5,-17.5 - parent: 2 - - uid: 17020 - components: - - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 17021 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-3.5 - parent: 2 - - uid: 17022 - components: - - type: Transform - pos: -12.5,-35.5 - parent: 2 - - uid: 17023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-30.5 - parent: 2 - - uid: 17024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 2 - - uid: 17025 - components: - - type: Transform - pos: -9.5,-27.5 - parent: 2 - - uid: 17026 - components: - - type: Transform - pos: -9.5,-32.5 - parent: 2 - - uid: 17027 - components: - - type: Transform - pos: -9.5,-34.5 - parent: 2 - - uid: 17028 - components: - - type: Transform - pos: -39.5,19.5 - parent: 2 - - uid: 17029 - components: - - type: Transform - pos: -39.5,18.5 - parent: 2 - - uid: 17030 - components: - - type: Transform - pos: -38.5,16.5 - parent: 2 - - uid: 17031 - components: - - type: Transform - pos: -36.5,16.5 - parent: 2 - - uid: 17032 - components: - - type: Transform - pos: -37.5,8.5 - parent: 2 - - uid: 17033 - components: - - type: Transform - pos: -36.5,8.5 - parent: 2 - - uid: 17034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 2 - - uid: 17035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-3.5 - parent: 2 - - uid: 17036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 2 - - uid: 17037 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 2 - - uid: 17038 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 2 - - uid: 17039 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-1.5 - parent: 2 - - uid: 17040 - components: - - type: Transform - pos: 23.5,-13.5 - parent: 2 - - uid: 17041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 2 - - uid: 17042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 2 - - uid: 17043 - components: - - type: Transform - pos: 23.5,-14.5 - parent: 2 - - uid: 17044 - components: - - type: Transform - pos: 22.5,2.5 - parent: 2 - - uid: 17045 - components: - - type: Transform - pos: 21.5,2.5 - parent: 2 - - uid: 17046 - components: - - type: Transform - pos: 19.5,2.5 - parent: 2 - - uid: 17047 - components: - - type: Transform - pos: 18.5,2.5 - parent: 2 - - uid: 17048 - components: - - type: Transform - pos: 24.5,14.5 - parent: 2 - - uid: 17049 - components: - - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 17050 - components: - - type: Transform - pos: 18.5,17.5 - parent: 2 - - uid: 17051 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - - uid: 17052 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 - parent: 2 - - uid: 17053 - components: - - type: Transform - pos: 11.5,26.5 - parent: 2 - - uid: 17054 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 2 - - uid: 17055 - components: - - type: Transform - pos: 16.5,1.5 - parent: 2 - - uid: 17056 - components: - - type: Transform - pos: 16.5,-0.5 - parent: 2 - - uid: 17057 - components: - - type: Transform - pos: 36.5,1.5 - parent: 2 - - uid: 17058 - components: - - type: Transform - pos: 36.5,-0.5 - parent: 2 - - uid: 17059 - components: - - type: Transform - pos: -40.5,30.5 - parent: 2 - - uid: 17060 - components: - - type: Transform - pos: -48.5,24.5 - parent: 2 - - uid: 17061 - components: - - type: Transform - pos: -49.5,24.5 - parent: 2 - - uid: 17062 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 17063 - components: - - type: Transform - pos: -43.5,16.5 - parent: 2 - - uid: 17064 - components: - - type: Transform - pos: -47.5,8.5 - parent: 2 - - uid: 17065 - components: - - type: Transform - pos: -13.5,24.5 - parent: 2 - - uid: 17066 - components: - - type: Transform - pos: -41.5,8.5 - parent: 2 - - uid: 17067 - components: - - type: Transform - pos: -17.5,-29.5 - parent: 2 - - uid: 17068 - components: - - type: Transform - pos: -6.5,4.5 - parent: 2 - - uid: 17069 - components: - - type: Transform - pos: -25.5,30.5 - parent: 2 - - uid: 17070 - components: - - type: Transform - pos: -25.5,29.5 - parent: 2 - - uid: 17071 - components: - - type: Transform - pos: -25.5,28.5 - parent: 2 - - uid: 17072 - components: - - type: Transform - pos: -26.5,7.5 - parent: 2 - - uid: 17073 - components: - - type: Transform - pos: 14.5,24.5 - parent: 2 - - uid: 17074 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - - uid: 17075 - components: - - type: Transform - pos: 29.5,-13.5 - parent: 2 - - uid: 17076 - components: - - type: Transform - pos: 30.5,-13.5 - parent: 2 - - uid: 17077 - components: - - type: Transform - pos: 15.5,17.5 - parent: 2 - - uid: 17078 - components: - - type: Transform - pos: 9.5,10.5 - parent: 2 - - uid: 17079 - components: - - type: Transform - pos: -38.5,7.5 - parent: 2 - - uid: 17080 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 - - uid: 17081 - components: - - type: Transform - pos: -20.5,1.5 - parent: 2 - - uid: 17082 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 - - uid: 17083 - components: - - type: Transform - pos: -2.5,4.5 - parent: 2 - - uid: 17084 - components: - - type: Transform - pos: -2.5,3.5 - parent: 2 - - uid: 17085 - components: - - type: Transform - pos: -2.5,12.5 - parent: 2 - - uid: 17086 - components: - - type: Transform - pos: -33.5,4.5 - parent: 2 - - uid: 17087 - components: - - type: Transform - pos: 13.5,-31.5 - parent: 2 - - uid: 17088 - components: - - type: Transform - pos: 13.5,-32.5 - parent: 2 - - uid: 17611 - components: - - type: Transform - pos: -14.5,-32.5 - parent: 2 - - uid: 17612 - components: - - type: Transform - pos: -14.5,-34.5 - parent: 2 -- proto: WindowDirectional - entities: - - uid: 17089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,11.5 - parent: 2 - - uid: 17090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 2 - - uid: 17091 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,14.5 - parent: 2 - - uid: 17092 - components: - - type: Transform - pos: -6.5,13.5 - parent: 2 -- proto: WindowFrostedDirectional - entities: - - uid: 17093 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 2 - - uid: 17094 - components: - - type: Transform - pos: 8.5,-4.5 - parent: 2 - - uid: 17095 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 2 - - uid: 17096 - components: - - type: Transform - pos: 7.5,-4.5 - parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 17097 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,1.5 - parent: 2 - - uid: 17098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 2 - - uid: 17099 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,3.5 - parent: 2 - - uid: 17100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-15.5 - parent: 2 - - uid: 17101 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-11.5 - parent: 2 - - uid: 17102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-10.5 - parent: 2 - - uid: 17103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-10.5 - parent: 2 - - uid: 17104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-87.5 - parent: 2 - - uid: 17105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-87.5 - parent: 2 - - uid: 17106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-87.5 - parent: 2 - - uid: 17107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-30.5 - parent: 2 - - uid: 17108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,13.5 - parent: 2 - - uid: 17109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-68.5 - parent: 2 - - uid: 17110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,7.5 - parent: 2 - - uid: 17111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,7.5 - parent: 2 - - uid: 17112 - components: - - type: Transform - pos: -9.5,-66.5 - parent: 2 - - uid: 17113 - components: - - type: Transform - pos: -11.5,-66.5 - parent: 2 - - uid: 17114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-67.5 - parent: 2 - - uid: 17115 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-67.5 - parent: 2 - - uid: 17116 - components: - - type: Transform - pos: -31.5,-68.5 - parent: 2 - - uid: 17117 - components: - - type: Transform - pos: -30.5,-68.5 - parent: 2 - - uid: 17118 - components: - - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 17119 - components: - - type: Transform - pos: -12.5,-66.5 - parent: 2 - - uid: 17120 - components: - - type: Transform - pos: -29.5,-68.5 - parent: 2 - - uid: 17121 - components: - - type: Transform - pos: -28.5,-68.5 - parent: 2 - - uid: 17122 - components: - - type: Transform - pos: -14.5,-66.5 - parent: 2 - - uid: 17123 - components: - - type: Transform - pos: -13.5,-66.5 - parent: 2 - - uid: 17124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-84.5 - parent: 2 - - uid: 17125 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-68.5 - parent: 2 - - uid: 17126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-64.5 - parent: 2 - - uid: 17127 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-67.5 - parent: 2 - - uid: 17128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-63.5 - parent: 2 - - uid: 17129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-63.5 - parent: 2 - - uid: 17130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-64.5 - parent: 2 - - uid: 17131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-87.5 - parent: 2 - - uid: 17132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-87.5 - parent: 2 - - uid: 17133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-85.5 - parent: 2 - - uid: 17134 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-85.5 - parent: 2 - - uid: 17135 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-87.5 - parent: 2 - - uid: 17136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-88.5 - parent: 2 - - uid: 17137 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-87.5 - parent: 2 - - uid: 17138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-86.5 - parent: 2 - - uid: 17139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-72.5 - parent: 2 - - uid: 17140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-87.5 - parent: 2 - - uid: 17141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-87.5 - parent: 2 - - uid: 17142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-87.5 - parent: 2 - - uid: 17143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-69.5 - parent: 2 - - uid: 17144 - components: - - type: Transform - pos: -14.5,-65.5 - parent: 2 - - uid: 17145 - components: - - type: Transform - pos: -13.5,-65.5 - parent: 2 - - uid: 17146 - components: - - type: Transform - pos: -12.5,-65.5 - parent: 2 - - uid: 17147 - components: - - type: Transform - pos: -11.5,-65.5 - parent: 2 - - uid: 17148 - components: - - type: Transform - pos: -10.5,-65.5 - parent: 2 - - uid: 17149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-66.5 - parent: 2 - - uid: 17150 - components: - - type: Transform - pos: -8.5,-66.5 - parent: 2 - - uid: 17151 - components: - - type: Transform - pos: -7.5,-66.5 - parent: 2 - - uid: 17152 - components: - - type: Transform - pos: -6.5,-66.5 - parent: 2 - - uid: 17153 - components: - - type: Transform - pos: -5.5,-66.5 - parent: 2 - - uid: 17154 - components: - - type: Transform - pos: -4.5,-66.5 - parent: 2 - - uid: 17155 - components: - - type: Transform - pos: -3.5,-66.5 - parent: 2 - - uid: 17156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-67.5 - parent: 2 - - uid: 17157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-68.5 - parent: 2 - - uid: 17158 - components: - - type: Transform - pos: -2.5,-67.5 - parent: 2 - - uid: 17159 - components: - - type: Transform - pos: -18.5,-66.5 - parent: 2 - - uid: 17160 - components: - - type: Transform - pos: -19.5,-66.5 - parent: 2 - - uid: 17161 - components: - - type: Transform - pos: -20.5,-66.5 - parent: 2 - - uid: 17162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-67.5 - parent: 2 - - uid: 17163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-68.5 - parent: 2 - - uid: 17164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-69.5 - parent: 2 - - uid: 17165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-70.5 - parent: 2 - - uid: 17166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-71.5 - parent: 2 - - uid: 17167 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-72.5 - parent: 2 - - uid: 17168 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-73.5 - parent: 2 - - uid: 17169 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-74.5 - parent: 2 - - uid: 17170 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-75.5 - parent: 2 - - uid: 17171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-76.5 - parent: 2 - - uid: 17172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-77.5 - parent: 2 - - uid: 17173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-78.5 - parent: 2 - - uid: 17174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-79.5 - parent: 2 - - uid: 17175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-80.5 - parent: 2 - - uid: 17176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-81.5 - parent: 2 - - uid: 17177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-82.5 - parent: 2 - - uid: 17178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-83.5 - parent: 2 - - uid: 17179 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-84.5 - parent: 2 - - uid: 17180 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-85.5 - parent: 2 - - uid: 17181 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-86.5 - parent: 2 - - uid: 17182 - components: - - type: Transform - pos: -34.5,-68.5 - parent: 2 - - uid: 17183 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-69.5 - parent: 2 - - uid: 17184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-70.5 - parent: 2 - - uid: 17185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-71.5 - parent: 2 - - uid: 17186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-72.5 - parent: 2 - - uid: 17187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-73.5 - parent: 2 - - uid: 17188 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-74.5 - parent: 2 - - uid: 17189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-75.5 - parent: 2 - - uid: 17190 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-76.5 - parent: 2 - - uid: 17191 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-77.5 - parent: 2 - - uid: 17192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-78.5 - parent: 2 - - uid: 17193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-79.5 - parent: 2 - - uid: 17194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-80.5 - parent: 2 - - uid: 17195 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-81.5 - parent: 2 - - uid: 17196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-82.5 - parent: 2 - - uid: 17197 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-83.5 - parent: 2 - - uid: 17198 - components: - - type: Transform - pos: -27.5,-68.5 - parent: 2 - - uid: 17199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-84.5 - parent: 2 - - uid: 17200 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-85.5 - parent: 2 - - uid: 17201 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-86.5 - parent: 2 - - uid: 17202 - components: - - type: Transform - pos: -33.5,-68.5 - parent: 2 - - uid: 17203 - components: - - type: Transform - pos: -32.5,-68.5 - parent: 2 - - uid: 17204 - components: - - type: Transform - pos: -26.5,-68.5 - parent: 2 - - uid: 17205 - components: - - type: Transform - pos: -25.5,-68.5 - parent: 2 - - uid: 17206 - components: - - type: Transform - pos: -24.5,-68.5 - parent: 2 - - uid: 17207 - components: - - type: Transform - pos: -23.5,-68.5 - parent: 2 - - uid: 17208 - components: - - type: Transform - pos: -22.5,-68.5 - parent: 2 - - uid: 17209 - components: - - type: Transform - pos: -21.5,-68.5 - parent: 2 - - uid: 17210 - components: - - type: Transform - pos: -8.5,-67.5 - parent: 2 - - uid: 17211 - components: - - type: Transform - pos: -9.5,-67.5 - parent: 2 - - uid: 17212 - components: - - type: Transform - pos: -7.5,-67.5 - parent: 2 - - uid: 17213 - components: - - type: Transform - pos: -6.5,-67.5 - parent: 2 - - uid: 17214 - components: - - type: Transform - pos: -5.5,-67.5 - parent: 2 - - uid: 17215 - components: - - type: Transform - pos: -4.5,-67.5 - parent: 2 - - uid: 17216 - components: - - type: Transform - pos: -3.5,-68.5 - parent: 2 - - uid: 17217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-84.5 - parent: 2 - - uid: 17218 - components: - - type: Transform - pos: -2.5,-68.5 - parent: 2 - - uid: 17219 - components: - - type: Transform - pos: -1.5,-68.5 - parent: 2 - - uid: 17220 - components: - - type: Transform - pos: -0.5,-68.5 - parent: 2 - - uid: 17221 - components: - - type: Transform - pos: 0.5,-68.5 - parent: 2 - - uid: 17222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-84.5 - parent: 2 - - uid: 17223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-84.5 - parent: 2 - - uid: 17224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-84.5 - parent: 2 - - uid: 17225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-84.5 - parent: 2 - - uid: 17226 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-85.5 - parent: 2 - - uid: 17227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-85.5 - parent: 2 - - uid: 17228 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-85.5 - parent: 2 - - uid: 17229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-85.5 - parent: 2 - - uid: 17230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-85.5 - parent: 2 - - uid: 17231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-85.5 - parent: 2 - - uid: 17232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-85.5 - parent: 2 - - uid: 17233 - components: - - type: Transform - pos: -1.5,-67.5 - parent: 2 - - uid: 17234 - components: - - type: Transform - pos: -0.5,-67.5 - parent: 2 - - uid: 17235 - components: - - type: Transform - pos: 0.5,-67.5 - parent: 2 - - uid: 17236 - components: - - type: Transform - pos: 1.5,-67.5 - parent: 2 - - uid: 17237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-70.5 - parent: 2 - - uid: 17238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-71.5 - parent: 2 - - uid: 17239 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-72.5 - parent: 2 - - uid: 17240 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-73.5 - parent: 2 - - uid: 17241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-79.5 - parent: 2 - - uid: 17242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-84.5 - parent: 2 - - uid: 17243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-84.5 - parent: 2 - - uid: 17244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-84.5 - parent: 2 - - uid: 17245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-84.5 - parent: 2 - - uid: 17246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-84.5 - parent: 2 - - uid: 17247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-84.5 - parent: 2 - - uid: 17248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-84.5 - parent: 2 - - uid: 17249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-84.5 - parent: 2 - - uid: 17250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-84.5 - parent: 2 - - uid: 17251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-84.5 - parent: 2 - - uid: 17252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-84.5 - parent: 2 - - uid: 17253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-84.5 - parent: 2 - - uid: 17254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-84.5 - parent: 2 - - uid: 17255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-68.5 - parent: 2 - - uid: 17256 - components: - - type: Transform - pos: 2.5,-73.5 - parent: 2 - - uid: 17257 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 - - uid: 17258 - components: - - type: Transform - pos: 28.5,15.5 - parent: 2 - - uid: 17259 - components: - - type: Transform - pos: 28.5,13.5 - parent: 2 - - uid: 17260 - components: - - type: Transform - pos: 27.5,13.5 - parent: 2 - - uid: 17261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,15.5 - parent: 2 - - uid: 17262 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,24.5 - parent: 2 - - uid: 17263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,26.5 - parent: 2 - - uid: 17264 - components: - - type: Transform - pos: 3.5,-73.5 - parent: 2 - - uid: 17265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 2 - - uid: 17266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,13.5 - parent: 2 - - uid: 17267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,45.5 - parent: 2 - - uid: 17268 - components: - - type: Transform - pos: -10.5,46.5 - parent: 2 - - uid: 17269 - components: - - type: Transform - pos: -9.5,46.5 - parent: 2 - - uid: 17270 - components: - - type: Transform - pos: -8.5,46.5 - parent: 2 - - uid: 17271 - components: - - type: Transform - pos: -11.5,46.5 - parent: 2 - - uid: 17272 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,45.5 - parent: 2 - - uid: 17273 - components: - - type: Transform - pos: -27.5,40.5 - parent: 2 - - uid: 17274 - components: - - type: Transform - pos: -26.5,40.5 - parent: 2 - - uid: 17275 - components: - - type: Transform - pos: -25.5,40.5 - parent: 2 - - uid: 17276 - components: - - type: Transform - pos: -24.5,40.5 - parent: 2 - - uid: 17277 - components: - - type: Transform - pos: -22.5,40.5 - parent: 2 - - uid: 17278 - components: - - type: Transform - pos: -21.5,40.5 - parent: 2 - - uid: 17279 - components: - - type: Transform - pos: -20.5,40.5 - parent: 2 - - uid: 17280 - components: - - type: Transform - pos: -19.5,40.5 - parent: 2 - - uid: 17281 - components: - - type: Transform - pos: -21.5,46.5 - parent: 2 - - uid: 17282 - components: - - type: Transform - pos: -22.5,46.5 - parent: 2 - - uid: 17283 - components: - - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 17284 - components: - - type: Transform - pos: -24.5,46.5 - parent: 2 - - uid: 17285 - components: - - type: Transform - pos: -25.5,46.5 - parent: 2 - - uid: 17286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,45.5 - parent: 2 - - uid: 17287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,45.5 - parent: 2 - - uid: 17288 - components: - - type: Transform - pos: -27.5,45.5 - parent: 2 - - uid: 17289 - components: - - type: Transform - pos: -19.5,45.5 - parent: 2 - - uid: 17290 - components: - - type: Transform - pos: -28.5,44.5 - parent: 2 - - uid: 17291 - components: - - type: Transform - pos: -18.5,44.5 - parent: 2 - - uid: 17292 - components: - - type: Transform - pos: -26.5,46.5 - parent: 2 - - uid: 17293 - components: - - type: Transform - pos: -20.5,46.5 - parent: 2 - - uid: 17294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 2 - - uid: 17295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-28.5 - parent: 2 - - uid: 17296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 2 - - uid: 17297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,11.5 - parent: 2 - - uid: 17298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,12.5 - parent: 2 - - uid: 17299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,14.5 - parent: 2 - - uid: 17300 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,15.5 - parent: 2 - - uid: 17301 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,15.5 - parent: 2 - - uid: 17302 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,14.5 - parent: 2 - - uid: 17303 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,12.5 - parent: 2 - - uid: 17304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,11.5 - parent: 2 - - uid: 17305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,17.5 - parent: 2 - - uid: 17306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,18.5 - parent: 2 - - uid: 17307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,20.5 - parent: 2 - - uid: 17308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,21.5 - parent: 2 - - uid: 17309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,21.5 - parent: 2 - - uid: 17310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,20.5 - parent: 2 - - uid: 17311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,18.5 - parent: 2 - - uid: 17312 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,17.5 - parent: 2 - - uid: 17313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-80.5 - parent: 2 - - uid: 17314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-74.5 - parent: 2 - - uid: 17315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-75.5 - parent: 2 - - uid: 17316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-76.5 - parent: 2 - - uid: 17317 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-77.5 - parent: 2 - - uid: 17318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-78.5 - parent: 2 - - uid: 17319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-79.5 - parent: 2 - - uid: 17320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-84.5 - parent: 2 - - uid: 17321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-79.5 - parent: 2 - - uid: 17322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-81.5 - parent: 2 - - uid: 17323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-82.5 - parent: 2 - - uid: 17324 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-83.5 - parent: 2 - - uid: 17325 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-84.5 - parent: 2 - - uid: 17326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-85.5 - parent: 2 - - uid: 17327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-85.5 - parent: 2 - - uid: 17328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-85.5 - parent: 2 - - uid: 17329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-85.5 - parent: 2 - - uid: 17330 - components: - - type: Transform - pos: -9.5,37.5 - parent: 2 - - uid: 17331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-86.5 - parent: 2 - - uid: 17332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-86.5 - parent: 2 - - uid: 17333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-86.5 - parent: 2 - - uid: 17334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-86.5 - parent: 2 - - uid: 17335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-86.5 - parent: 2 - - uid: 17336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 2 - - uid: 17337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 2 - - uid: 17338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 - parent: 2 - - uid: 17339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-4.5 - parent: 2 - - uid: 17340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-86.5 - parent: 2 - - uid: 17341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-86.5 - parent: 2 - - uid: 17342 - components: - - type: Transform - pos: -8.5,37.5 - parent: 2 - - uid: 17343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-86.5 - parent: 2 - - uid: 17344 - components: - - type: Transform - pos: -10.5,37.5 - parent: 2 - - uid: 17345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-87.5 - parent: 2 - - uid: 17346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-88.5 - parent: 2 - - uid: 17347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-88.5 - parent: 2 - - uid: 17348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-88.5 - parent: 2 - - uid: 17349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-88.5 - parent: 2 - - uid: 17350 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-88.5 - parent: 2 - - uid: 17351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-88.5 - parent: 2 - - uid: 17352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-88.5 - parent: 2 - - uid: 17353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-88.5 - parent: 2 - - uid: 17354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-88.5 - parent: 2 - - uid: 17355 - components: - - type: Transform - pos: -11.5,37.5 - parent: 2 - - uid: 17356 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-88.5 - parent: 2 - - uid: 17357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,7.5 - parent: 2 - - uid: 17358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-88.5 - parent: 2 - - uid: 17359 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-85.5 - parent: 2 - - uid: 17360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-85.5 - parent: 2 - - uid: 17361 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-85.5 - parent: 2 - - uid: 17362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-85.5 - parent: 2 - - uid: 17363 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-85.5 - parent: 2 - - uid: 17364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-85.5 - parent: 2 - - uid: 17365 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-85.5 - parent: 2 - - uid: 17366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-85.5 - parent: 2 - - uid: 17367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-85.5 - parent: 2 - - uid: 17368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-85.5 - parent: 2 - - uid: 17369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-85.5 - parent: 2 - - uid: 17370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-85.5 - parent: 2 - - uid: 17371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-85.5 - parent: 2 - - uid: 17372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-85.5 - parent: 2 - - uid: 17373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-85.5 - parent: 2 - - uid: 17374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-83.5 - parent: 2 - - uid: 17375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-82.5 - parent: 2 - - uid: 17376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-81.5 - parent: 2 - - uid: 17377 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-80.5 - parent: 2 - - uid: 17378 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-79.5 - parent: 2 - - uid: 17379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-79.5 - parent: 2 - - uid: 17380 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-79.5 - parent: 2 - - uid: 17381 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-78.5 - parent: 2 - - uid: 17382 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-77.5 - parent: 2 - - uid: 17383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-76.5 - parent: 2 - - uid: 17384 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-75.5 - parent: 2 - - uid: 17385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-74.5 - parent: 2 - - uid: 17386 - components: - - type: Transform - pos: -37.5,-73.5 - parent: 2 - - uid: 17387 - components: - - type: Transform - pos: -36.5,-73.5 - parent: 2 - - uid: 17388 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-73.5 - parent: 2 - - uid: 17389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-71.5 - parent: 2 - - uid: 17390 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-70.5 - parent: 2 - - uid: 17391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-69.5 - parent: 2 - - uid: 17392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-68.5 - parent: 2 - - uid: 17393 - components: - - type: Transform - pos: -35.5,-67.5 - parent: 2 - - uid: 17394 - components: - - type: Transform - pos: -34.5,-67.5 - parent: 2 - - uid: 17395 - components: - - type: Transform - pos: -33.5,-67.5 - parent: 2 - - uid: 17396 - components: - - type: Transform - pos: -32.5,-67.5 - parent: 2 - - uid: 17397 - components: - - type: Transform - pos: -31.5,-67.5 - parent: 2 - - uid: 17398 - components: - - type: Transform - pos: -30.5,-67.5 - parent: 2 - - uid: 17399 - components: - - type: Transform - pos: -29.5,-67.5 - parent: 2 - - uid: 17400 - components: - - type: Transform - pos: -28.5,-67.5 - parent: 2 - - uid: 17401 - components: - - type: Transform - pos: -27.5,-67.5 - parent: 2 - - uid: 17402 - components: - - type: Transform - pos: -26.5,-67.5 - parent: 2 - - uid: 17403 - components: - - type: Transform - pos: -25.5,-67.5 - parent: 2 - - uid: 17404 - components: - - type: Transform - pos: -24.5,-67.5 - parent: 2 - - uid: 17405 - components: - - type: Transform - pos: -23.5,-67.5 - parent: 2 - - uid: 17406 - components: - - type: Transform - pos: -22.5,-67.5 - parent: 2 - - uid: 17407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-67.5 - parent: 2 - - uid: 17408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-66.5 - parent: 2 - - uid: 17409 - components: - - type: Transform - pos: -21.5,-65.5 - parent: 2 - - uid: 17410 - components: - - type: Transform - pos: -20.5,-65.5 - parent: 2 - - uid: 17411 - components: - - type: Transform - pos: -19.5,-65.5 - parent: 2 - - uid: 17412 - components: - - type: Transform - pos: -18.5,-65.5 - parent: 2 - - uid: 17413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-86.5 - parent: 2 - - uid: 17414 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-85.5 - parent: 2 - - uid: 17415 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-85.5 - parent: 2 - - uid: 17416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-86.5 - parent: 2 -- proto: Wirecutter - entities: - - uid: 17417 - components: - - type: Transform - pos: -47.23643,-18.134506 - parent: 2 -- proto: WoodDoor - entities: - - uid: 17418 - components: - - type: Transform - pos: -46.5,24.5 - parent: 2 -- proto: Wrench - entities: - - uid: 17419 - components: - - type: Transform - pos: 19.52687,21.19062 - parent: 2 - - uid: 17420 - components: - - type: Transform - pos: -21.54481,13.343189 - parent: 2 - - uid: 17421 - components: - - type: Transform - pos: -40.489174,40.55304 - parent: 2 - - uid: 17422 - components: - - type: Transform - pos: -11.125876,-24.417439 - parent: 2 - - uid: 17423 - components: - - type: Transform - pos: 4.4012365,-10.410826 - parent: 2 -... From d3ab5a29e0b8acb78a4b78b04af7dba13842386d Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 21 Jun 2024 15:19:27 -0400 Subject: [PATCH 15/38] Create edge.yml --- Resources/Maps/edge.yml | 111528 +++++++++++++++++++++++++++++++++++++ 1 file changed, 111528 insertions(+) create mode 100644 Resources/Maps/edge.yml diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml new file mode 100644 index 00000000000..601cb7dd17c --- /dev/null +++ b/Resources/Maps/edge.yml @@ -0,0 +1,111528 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 2: FloorArcadeBlue2 + 14: FloorBar + 17: FloorBlue + 18: FloorBlueCircuit + 23: FloorCarpetClown + 24: FloorCarpetOffice + 29: FloorConcrete + 30: FloorConcreteMono + 32: FloorDark + 36: FloorDarkMini + 37: FloorDarkMono + 40: FloorDarkPavementVertical + 41: FloorDarkPlastic + 44: FloorEighties + 47: FloorFreezer + 48: FloorGlass + 50: FloorGrass + 53: FloorGrassLight + 55: FloorGrayConcreteMono + 57: FloorGreenCircuit + 58: FloorGym + 59: FloorHull + 60: FloorHullReinforced + 61: FloorHydro + 63: FloorKitchen + 64: FloorLaundry + 67: FloorMetalDiamond + 68: FloorMime + 72: FloorMono + 75: FloorOldConcreteSmooth + 77: FloorPlanetGrass + 79: FloorRGlass + 80: FloorReinforced + 81: FloorReinforcedHardened + 83: FloorShowroom + 87: FloorShuttleOrange + 89: FloorShuttleRed + 90: FloorShuttleWhite + 94: FloorSteel + 96: FloorSteelCheckerDark + 102: FloorSteelHerringbone + 105: FloorSteelMono + 107: FloorSteelPavement + 108: FloorSteelPavementVertical + 109: FloorTechMaint + 110: FloorTechMaint2 + 111: FloorTechMaint3 + 113: FloorWhite + 114: FloorWhiteDiagonal + 122: FloorWhitePlastic + 123: FloorWood + 125: FloorWoodTile + 126: Lattice + 127: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: XgAAAAACMAAAAAAAMAAAAAACfwAAAAAAXgAAAAACXgAAAAADMAAAAAABMAAAAAABXgAAAAABXgAAAAACMAAAAAABXgAAAAABMAAAAAAAMAAAAAACXgAAAAADMAAAAAACMAAAAAACXgAAAAACXgAAAAABbQAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAAAMAAAAAAAXgAAAAABXgAAAAAAMAAAAAACXgAAAAAAMAAAAAAAXgAAAAADNQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAABNQAAAAADMAAAAAADXgAAAAACNQAAAAAAfwAAAAAAbwAAAAABbwAAAAAAfwAAAAAAbwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAcQAAAAADMAAAAAADMAAAAAABMAAAAAABMAAAAAADcQAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbgAAAAAAcQAAAAABcQAAAAADcQAAAAACSAAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAADfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAACcQAAAAACcQAAAAADbwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAcQAAAAADcQAAAAACcQAAAAADfwAAAAAAcQAAAAAAcQAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABSAAAAAAAcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAAAcgAAAAABbwAAAAABbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAASAAAAAAAcQAAAAADcgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAACbwAAAAADbgAAAAAAcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACbwAAAAABfwAAAAAAcQAAAAACcQAAAAABcQAAAAACcQAAAAABcQAAAAADcQAAAAAC + version: 6 + 0,-1: + ind: 0,-1 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAAAXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAABTwAAAAADXgAAAAAAMAAAAAADXgAAAAADXgAAAAABXgAAAAACXgAAAAABUAAAAAAAbwAAAAAAbwAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAACTwAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADUAAAAAAAfwAAAAAAbwAAAAACbwAAAAAAfwAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAABTwAAAAACXgAAAAABMAAAAAADMAAAAAAAMAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAbgAAAAAAXgAAAAAAMAAAAAAAMAAAAAADXgAAAAACXgAAAAABMAAAAAAAMAAAAAADXgAAAAAATwAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAABXgAAAAACUAAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAADfwAAAAAAXgAAAAAAXgAAAAACMAAAAAAAMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACMAAAAAABXgAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAABXgAAAAADbQAAAAAAXgAAAAAAXgAAAAABMAAAAAACMAAAAAAAXgAAAAAAXgAAAAACMAAAAAADXgAAAAAANQAAAAADfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAMAAAAAAAXgAAAAAANQAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAANQAAAAAANQAAAAABXgAAAAADXgAAAAABMAAAAAAAXgAAAAABXgAAAAADbQAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADMAAAAAAAXgAAAAAD + version: 6 + -1,0: + ind: -1,0 + tiles: XgAAAAABXgAAAAACXgAAAAACMAAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAACMAAAAAACXgAAAAACXgAAAAACXgAAAAACMAAAAAABfwAAAAAAMAAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAABbQAAAAAAXgAAAAACXgAAAAABfwAAAAAATwAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAANQAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAABfwAAAAAANQAAAAACXgAAAAADMAAAAAADMAAAAAADXgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAADfwAAAAAAXgAAAAADMAAAAAAAXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACTwAAAAABXgAAAAADXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABMAAAAAAAXgAAAAAAMAAAAAABMAAAAAAAXgAAAAACMAAAAAAAMAAAAAAAXgAAAAAATwAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAABXgAAAAACbgAAAAAAbwAAAAACfwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAABfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATwAAAAAAXgAAAAABXgAAAAABfwAAAAAAbgAAAAAAbgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAMAAAAAACXgAAAAABbQAAAAAAbgAAAAAAbgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAXgAAAAAAMAAAAAACfwAAAAAAbwAAAAABbwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAABbgAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: fwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMAAAAAACXgAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAADXgAAAAADXgAAAAACXgAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAAAXgAAAAADMAAAAAACXgAAAAADXgAAAAABXgAAAAACfwAAAAAAbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAABNQAAAAABNQAAAAACNQAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAADewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAAAewAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAALAAAAAAALAAAAAAATwAAAAACewAAAAACewAAAAAADgAAAAACDgAAAAAAMAAAAAACMAAAAAACMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAewAAAAABewAAAAABDgAAAAABMAAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAACDgAAAAAAMAAAAAABDgAAAAADDgAAAAABDgAAAAACDgAAAAABbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAewAAAAACewAAAAACfwAAAAAAewAAAAAAewAAAAACDgAAAAADMAAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAACfwAAAAAAbwAAAAACbwAAAAADXgAAAAADfwAAAAAAewAAAAADewAAAAAATwAAAAAAewAAAAABewAAAAADDgAAAAABMAAAAAAADgAAAAABDgAAAAACDgAAAAAAbQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAABfwAAAAAAewAAAAABewAAAAACfwAAAAAAewAAAAADewAAAAACDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAAbQAAAAAAfwAAAAAAXgAAAAACMAAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAABDgAAAAACDgAAAAACfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAANQAAAAACXgAAAAAAXgAAAAADNQAAAAABNQAAAAAANQAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAADXgAAAAACXgAAAAADMAAAAAADXgAAAAABbQAAAAAAXgAAAAADXgAAAAADMAAAAAACXgAAAAACXgAAAAADXgAAAAADMAAAAAABXgAAAAAAbQAAAAAAXgAAAAAAXgAAAAAB + version: 6 + 1,0: + ind: 1,0 + tiles: bQAAAAAAXgAAAAAAMAAAAAABMAAAAAADXgAAAAABMAAAAAACMAAAAAAAXgAAAAACMAAAAAABMAAAAAADXgAAAAAAMAAAAAADMAAAAAADXgAAAAAAMAAAAAACMAAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAABcQAAAAACcQAAAAABcQAAAAABcQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAewAAAAAAewAAAAADewAAAAACKQAAAAAAfwAAAAAAOgAAAAACOgAAAAADfwAAAAAAcQAAAAABcQAAAAADcQAAAAAAcQAAAAACcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAewAAAAAAewAAAAAAewAAAAACKQAAAAAAfwAAAAAAOgAAAAADOgAAAAACSAAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAADbQAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAACfwAAAAAAOgAAAAACOgAAAAACSAAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAAAfwAAAAAAKQAAAAABKQAAAAAAKQAAAAACKQAAAAACfwAAAAAAOgAAAAACOgAAAAADfwAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAOgAAAAACOgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAOgAAAAABOgAAAAADcQAAAAABcQAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOgAAAAABOgAAAAACcgAAAAABcgAAAAABcgAAAAACcQAAAAADfwAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAOgAAAAADOgAAAAADcgAAAAAAcgAAAAADcgAAAAAAcQAAAAADfwAAAAAAcQAAAAACcQAAAAABcQAAAAADfwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAcQAAAAABfwAAAAAAUwAAAAAAUwAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAAAfwAAAAAAcQAAAAAAcQAAAAABcQAAAAABSAAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAABfwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAADfwAAAAAAcQAAAAACcQAAAAABcQAAAAAAcQAAAAACfwAAAAAAbgAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABcQAAAAADSAAAAAAAcQAAAAACcQAAAAADcQAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAACcQAAAAABfwAAAAAAewAAAAADewAAAAAB + version: 6 + 1,-1: + ind: 1,-1 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAADXgAAAAACTwAAAAACXgAAAAACMAAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAACMAAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAACTwAAAAADXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAXgAAAAAAXgAAAAADXgAAAAACfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAADXgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAABMAAAAAAAXgAAAAADfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAMAAAAAABfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAUAAAAAAAMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADfwAAAAAAewAAAAACewAAAAABGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAMAAAAAABXgAAAAABXgAAAAADXgAAAAACUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAewAAAAADewAAAAACewAAAAADewAAAAABewAAAAACTwAAAAADXgAAAAADMAAAAAAAXgAAAAACXgAAAAADbQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACfwAAAAAAewAAAAADewAAAAADewAAAAABewAAAAADewAAAAACfwAAAAAAXgAAAAADXgAAAAACMAAAAAADXgAAAAAAUAAAAAAAMAAAAAAAIAAAAAACMAAAAAACIAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAABfwAAAAAAMAAAAAADIAAAAAACMAAAAAADIAAAAAADfwAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: fwAAAAAALwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbAAAAAACXgAAAAADXgAAAAADfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbAAAAAABXgAAAAAAMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfwAAAAAAbAAAAAABXgAAAAACXgAAAAACfwAAAAAAVwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAADgAAAAAADgAAAAACDgAAAAAAfwAAAAAAbAAAAAABXgAAAAABXgAAAAABbQAAAAAAWgAAAAAAfwAAAAAAewAAAAABGAAAAAAAGAAAAAAAfwAAAAAAbAAAAAABDgAAAAADDgAAAAADDgAAAAAADgAAAAACfwAAAAAAbAAAAAABXgAAAAAAMAAAAAAAfwAAAAAAVwAAAAAAbgAAAAAAewAAAAABGAAAAAAAGAAAAAAAfwAAAAAAbAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAAAbAAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADGAAAAAAAGAAAAAAAfwAAAAAAbAAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAACDgAAAAABbAAAAAABXgAAAAACXgAAAAACfwAAAAAAfgAAAAAAfwAAAAAAewAAAAADGAAAAAAAGAAAAAAAfwAAAAAAbAAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAACbAAAAAAAXgAAAAAAMAAAAAADfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAZgAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAAAawAAAAACZgAAAAABXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADMAAAAAACXgAAAAACbQAAAAAAXgAAAAADMAAAAAAAXgAAAAACXgAAAAACXgAAAAAAMAAAAAAAXgAAAAACXgAAAAAAXgAAAAABbgAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAMAAAAAAAbQAAAAAAXgAAAAACXgAAAAABMAAAAAAAXgAAAAABXgAAAAABXgAAAAADMAAAAAAAXgAAAAAAMAAAAAACfwAAAAAAfwAAAAAANQAAAAABNQAAAAADXgAAAAADXgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADewAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAewAAAAAAewAAAAADfwAAAAAAbwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAADMAAAAAAC + version: 6 + 0,1: + ind: 0,1 + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACcQAAAAABcQAAAAADcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAAfwAAAAAAVwAAAAAAVwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAABfwAAAAAAcQAAAAABcQAAAAAAfwAAAAAASAAAAAAAWgAAAAAAWQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAABfwAAAAAAcQAAAAADcQAAAAADfwAAAAAASAAAAAAAVwAAAAAAVwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAcQAAAAABfwAAAAAAcQAAAAACcQAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAAAcQAAAAADSAAAAAAAcQAAAAABcQAAAAABfwAAAAAASAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAcQAAAAACcQAAAAABfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAACewAAAAACfwAAAAAAcQAAAAAAcQAAAAABfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAABSAAAAAAAcQAAAAADcQAAAAAASAAAAAAAcQAAAAABfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADewAAAAABfwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: cQAAAAACcQAAAAAAcQAAAAADcQAAAAAASAAAAAAAcQAAAAACcQAAAAACcQAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAABfwAAAAAAewAAAAAAewAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAABfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAACfwAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAASAAAAAAASAAAAAAAfwAAAAAASAAAAAAAfwAAAAAAcQAAAAADcQAAAAABcQAAAAAASAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAASAAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAADfwAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAADSAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAcQAAAAADcQAAAAACfwAAAAAAcQAAAAADcQAAAAABcQAAAAACcQAAAAAAcQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAADcQAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAABcQAAAAACcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACfwAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAACcQAAAAACcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAcQAAAAADcQAAAAABcQAAAAADcQAAAAADcQAAAAAAcQAAAAACcQAAAAACcQAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAMAAAAAACMAAAAAAAMAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: XgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABXgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADXgAAAAACHgAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAABHgAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAADbwAAAAADbwAAAAADbwAAAAACfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAIAAAAAACIAAAAAABfwAAAAAAIAAAAAABfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAIAAAAAABfwAAAAAAXgAAAAACMAAAAAADXgAAAAAAMAAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAIAAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADMAAAAAADXgAAAAACfwAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: LAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAABfQAAAAABewAAAAABQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABLAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAACewAAAAABQwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAACewAAAAAAewAAAAAAQwAAAAAAfwAAAAAAXgAAAAADXgAAAAABJQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAADXgAAAAABfwAAAAAAXgAAAAABXgAAAAABQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACTwAAAAAAXgAAAAAATwAAAAADQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAXgAAAAAATwAAAAACXgAAAAADTwAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAABJQAAAAABfwAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbgAAAAAAJQAAAAAAJQAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAADfwAAAAAAbwAAAAADfwAAAAAAJQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAACfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAXgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAABUAAAAAAAXgAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABUAAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAADfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAQAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABfwAAAAAAXgAAAAADMAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAACUAAAAAAAQwAAAAAAJAAAAAABJAAAAAACJAAAAAAALAAAAAAAfwAAAAAAEgAAAAAAUAAAAAAAJQAAAAABJQAAAAACJQAAAAABfwAAAAAAXgAAAAADfwAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAMAAAAAADMAAAAAAAMAAAAAAALAAAAAAAfwAAAAAAEgAAAAAAUAAAAAAAJQAAAAACJQAAAAACJQAAAAAAfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAUAAAAAAAJQAAAAADJQAAAAACJQAAAAACQwAAAAAAXgAAAAACfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAACJQAAAAABJQAAAAADfwAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAACJQAAAAADfwAAAAAAXgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAJQAAAAADJQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAfwAAAAAAOQAAAAAAOQAAAAAAJQAAAAADOQAAAAAAOQAAAAAAfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAfwAAAAAAJQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAACfwAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAACXgAAAAACfwAAAAAAXgAAAAABfwAAAAAAUAAAAAAAfwAAAAAAJQAAAAABUAAAAAAAUAAAAAAAJQAAAAABJQAAAAACfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABQwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAABQwAAAAAAXgAAAAADXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAABJQAAAAADfwAAAAAAJQAAAAADfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAXgAAAAACXgAAAAABUAAAAAAAfwAAAAAAXgAAAAACXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAXgAAAAACMAAAAAADXgAAAAACMAAAAAABXgAAAAAAQwAAAAAAXgAAAAABXgAAAAADUAAAAAAAQwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAADbQAAAAAAXgAAAAACXgAAAAACMAAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAADUAAAAAAAUAAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAACMAAAAAAAXgAAAAADbQAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABUAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAAAfwAAAAAAXgAAAAABMAAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAADTwAAAAACTwAAAAABbQAAAAAAXgAAAAAAXgAAAAABMAAAAAACAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAACbQAAAAAAXgAAAAABXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAABfwAAAAAAXgAAAAADMAAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACMAAAAAADbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbgAAAAAAXgAAAAACXgAAAAACXgAAAAADfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAACXgAAAAADMAAAAAAC + version: 6 + -2,-1: + ind: -2,-1 + tiles: IAAAAAABIAAAAAABfwAAAAAAIAAAAAABIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADfwAAAAAAXgAAAAABXgAAAAACXgAAAAABIAAAAAABIAAAAAAAbQAAAAAAIAAAAAABIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAIAAAAAAAIAAAAAACfwAAAAAAIAAAAAADIAAAAAACUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABfwAAAAAAXgAAAAACMAAAAAAAXgAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAACIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADfwAAAAAAXgAAAAABXgAAAAADMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAADXgAAAAABXgAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAADbQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAbQAAAAAAIAAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAAAbQAAAAAAXgAAAAADXgAAAAAAMAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAABXgAAAAAAXgAAAAABIAAAAAADfwAAAAAAMAAAAAABMAAAAAABMAAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAIAAAAAABfwAAAAAAMAAAAAADMAAAAAACMAAAAAADfwAAAAAAXgAAAAABMAAAAAADXgAAAAAAXgAAAAAAXgAAAAACMAAAAAABfwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAIAAAAAAAfwAAAAAAMAAAAAACMAAAAAADMAAAAAAAfwAAAAAAXgAAAAADXgAAAAABMAAAAAABMAAAAAADMAAAAAACXgAAAAAAbQAAAAAAXgAAAAAAMAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAACXgAAAAABXgAAAAADMAAAAAAAbQAAAAAAXgAAAAACXgAAAAADMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAABfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAcQAAAAACcQAAAAACfwAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAMAAAAAABXgAAAAACXgAAAAADXgAAAAAAMAAAAAAAbQAAAAAAXgAAAAACXgAAAAABMAAAAAABXgAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: cQAAAAAAcQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAACXgAAAAACXgAAAAABXgAAAAACbQAAAAAAXgAAAAABXgAAAAAAXgAAAAABMAAAAAAAcQAAAAADcQAAAAAAcgAAAAADcgAAAAABcgAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAcQAAAAADcQAAAAABcgAAAAADcgAAAAABcgAAAAACbQAAAAAAXgAAAAADXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAACcQAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAPQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACPQAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAPQAAAAAAPQAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAbQAAAAAAXgAAAAACMAAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMAAAAAAAMAAAAAADMAAAAAACXgAAAAAAXgAAAAADbQAAAAAAXgAAAAACXgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAABXgAAAAAAbQAAAAAAXgAAAAACXgAAAAACPQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAABMAAAAAACfwAAAAAAXgAAAAABXgAAAAADfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAACMAAAAAABfwAAAAAAPQAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAXgAAAAADXgAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAPQAAAAAAMAAAAAADXgAAAAABMAAAAAAAXgAAAAAAXgAAAAABLwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAXgAAAAADXgAAAAABfwAAAAAAPQAAAAAAXgAAAAACMAAAAAADXgAAAAABPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAEQAAAAAAEQAAAAAAfwAAAAAAMAAAAAABXgAAAAABTwAAAAAAXgAAAAABMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAABMAAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAXgAAAAABfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADMAAAAAAAXgAAAAABXgAAAAADbQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAPQAAAAAAXgAAAAACfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAMAAAAAACXgAAAAADXgAAAAACMAAAAAACXgAAAAACbQAAAAAAXgAAAAACXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: XgAAAAABMAAAAAACXgAAAAAAXgAAAAADMAAAAAACfwAAAAAAMAAAAAABXgAAAAABXgAAAAABfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAegAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAXgAAAAADXgAAAAABfwAAAAAAewAAAAABewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAMAAAAAABXgAAAAAAfwAAAAAAewAAAAADMAAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAXgAAAAADXgAAAAACfwAAAAAAewAAAAAAMAAAAAABewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAXgAAAAAAXgAAAAADTwAAAAADewAAAAACMAAAAAAAewAAAAACfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAXgAAAAADfwAAAAAAewAAAAADewAAAAACewAAAAABfwAAAAAAbgAAAAAAfwAAAAAANQAAAAAAewAAAAADewAAAAADewAAAAABNQAAAAACNQAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAADfQAAAAAAfQAAAAADfQAAAAAAMAAAAAADMAAAAAADbQAAAAAAXgAAAAABXgAAAAACXgAAAAACMAAAAAADXgAAAAACXgAAAAACXgAAAAACMAAAAAADXgAAAAAAewAAAAABewAAAAACewAAAAADewAAAAACewAAAAACewAAAAABbQAAAAAAMAAAAAABXgAAAAADXgAAAAAAXgAAAAABMAAAAAAAXgAAAAABXgAAAAACXgAAAAAAMAAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAABfwAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADNQAAAAAANQAAAAAAMAAAAAACewAAAAADewAAAAACewAAAAADMAAAAAADMAAAAAACfwAAAAAAXgAAAAADXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADfQAAAAADfQAAAAACfQAAAAADewAAAAAAewAAAAADfwAAAAAAMAAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAACewAAAAAAewAAAAADewAAAAACfwAAAAAAXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAACewAAAAABewAAAAADewAAAAABMAAAAAABMAAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: KQAAAAABKQAAAAAAKQAAAAADfwAAAAAAIAAAAAABIAAAAAAAQwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAIAAAAAAAKQAAAAABKQAAAAAAKQAAAAACfwAAAAAAIAAAAAADIAAAAAACfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAADfwAAAAAAIAAAAAAAKQAAAAAAKQAAAAABKQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAADfwAAAAAAIAAAAAACKQAAAAAAKQAAAAACKQAAAAABfwAAAAAAIAAAAAABIAAAAAACQwAAAAAAXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAQwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADbQAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAABbQAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAADIAAAAAABbQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABbQAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAIAAAAAADfwAAAAAAWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAACfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADfwAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAC + version: 6 + -3,0: + ind: -3,0 + tiles: bwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAWQAAAAAAUAAAAAAAWQAAAAAAUAAAAAAAWQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAABbwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAADbwAAAAACfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAACcQAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACbQAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAABXgAAAAACMAAAAAACMAAAAAAAMAAAAAADXgAAAAABXgAAAAADMAAAAAACMAAAAAAAMAAAAAADbQAAAAAAXgAAAAAAMAAAAAAAMAAAAAADMAAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAADfwAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAMAAAAAAANQAAAAABfwAAAAAAXgAAAAABMAAAAAABXgAAAAAAfwAAAAAARAAAAAAARAAAAAAARAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACNQAAAAACfwAAAAAAMAAAAAACXgAAAAACXgAAAAACfwAAAAAARAAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAADFwAAAAAAfwAAAAAAMAAAAAABXgAAAAABMAAAAAABfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAABfwAAAAAARAAAAAAARAAAAAAARAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAMAAAAAACXgAAAAAAMAAAAAADfwAAAAAAaQAAAAABXgAAAAACXgAAAAABMAAAAAABfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAMAAAAAADfwAAAAAAaQAAAAAAXgAAAAABMAAAAAADXgAAAAACfwAAAAAAXgAAAAACMAAAAAADXgAAAAACXgAAAAADMAAAAAAAXgAAAAAAXgAAAAADMAAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAMAAAAAACXgAAAAACXgAAAAACbQAAAAAAMAAAAAABXgAAAAACXgAAAAABMAAAAAAAXgAAAAABXgAAAAABMAAAAAABMAAAAAABXgAAAAABXgAAAAACXgAAAAAAbQAAAAAAXgAAAAACMAAAAAAAXgAAAAABbQAAAAAAXgAAAAAAMAAAAAACXgAAAAADXgAAAAAAMAAAAAADXgAAAAADXgAAAAAD + version: 6 + -3,1: + ind: -3,1 + tiles: XgAAAAADXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAXgAAAAAAXgAAAAADMAAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAAAMAAAAAADXgAAAAABXgAAAAACXgAAAAABbQAAAAAAXgAAAAACMAAAAAADXgAAAAADfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAMAAAAAACXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAMAAAAAADXgAAAAACXgAAAAABfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAATwAAAAAATwAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAfwAAAAAAaQAAAAACXgAAAAADMAAAAAADXgAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAAegAAAAAATwAAAAAAMAAAAAABXgAAAAABMAAAAAAAfwAAAAAAaQAAAAACXgAAAAACXgAAAAABMAAAAAABfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAegAAAAAATwAAAAAATwAAAAAAMAAAAAACXgAAAAACMAAAAAADfwAAAAAAfwAAAAAAXgAAAAADMAAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAMAAAAAAANQAAAAACfwAAAAAAMAAAAAAAXgAAAAABXgAAAAADbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAABMAAAAAADNQAAAAAAfwAAAAAAXgAAAAAAMAAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAMAAAAAADfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAACewAAAAABMAAAAAACewAAAAACewAAAAABfwAAAAAAXgAAAAAAXgAAAAABXgAAAAADfwAAAAAAXgAAAAADXgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAMAAAAAACewAAAAADewAAAAACewAAAAABewAAAAAAfwAAAAAAMAAAAAACXgAAAAAAMAAAAAACXgAAAAADXgAAAAADMAAAAAABMAAAAAACMAAAAAAAXgAAAAADbQAAAAAAewAAAAACewAAAAADMAAAAAACewAAAAAAewAAAAAAbQAAAAAAMAAAAAABXgAAAAAAMAAAAAABXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAewAAAAACewAAAAADMAAAAAABewAAAAADewAAAAABbQAAAAAAMAAAAAABXgAAAAADMAAAAAAAXgAAAAADXgAAAAAAMAAAAAADMAAAAAADMAAAAAAAXgAAAAAAbQAAAAAAMAAAAAADewAAAAACewAAAAAAewAAAAACewAAAAACfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAbQAAAAAAewAAAAAAewAAAAABMAAAAAAAewAAAAACewAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAewAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAewAAAAABewAAAAABewAAAAACfwAAAAAAMAAAAAAD + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANwAAAAACNwAAAAADNwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAAbwAAAAAANwAAAAACNwAAAAAANwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAbgAAAAAAfwAAAAAAIAAAAAABIAAAAAADfwAAAAAAbwAAAAABNwAAAAAANwAAAAABNwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABNQAAAAABNQAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAMAAAAAAAXgAAAAACMAAAAAADXgAAAAABMAAAAAADXgAAAAADMAAAAAACXgAAAAABfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABMAAAAAAAXgAAAAACXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABMAAAAAAAXgAAAAACMAAAAAABXgAAAAAAMAAAAAAAXgAAAAADMAAAAAACXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAACNQAAAAABNQAAAAACNQAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAACbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: QAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAXgAAAAADMAAAAAABXgAAAAADXgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMgAAAAAAfwAAAAAANQAAAAACXgAAAAAAMAAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAMgAAAAAAfwAAAAAANQAAAAAAXgAAAAADXgAAAAABMAAAAAACbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAACfwAAAAAANQAAAAADXgAAAAADXgAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABfwAAAAAANQAAAAADXgAAAAABXgAAAAABXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADfwAAAAAANQAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAABMAAAAAADbQAAAAAAfwAAAAAAXgAAAAAAMAAAAAABXgAAAAAAXgAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAXgAAAAADXgAAAAACMAAAAAADXgAAAAACUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABbQAAAAAAXgAAAAACXgAAAAAAXgAAAAADMAAAAAADUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABMAAAAAADIAAAAAADMAAAAAACUAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADUAAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAMAAAAAACIAAAAAADMAAAAAABfwAAAAAAMAAAAAACXgAAAAABXgAAAAAAXgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAXgAAAAAAMAAAAAAAXgAAAAADXgAAAAADbgAAAAAAfwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAADXgAAAAACXgAAAAACfwAAAAAAXgAAAAAAXgAAAAADMAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: XgAAAAACMAAAAAABMAAAAAABXgAAAAABbQAAAAAAXgAAAAAAXgAAAAABXgAAAAAAMAAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAABOgAAAAACOgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAACOgAAAAAAOgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAABOgAAAAABOgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAOgAAAAADOgAAAAACOgAAAAADOgAAAAABOgAAAAACOgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOgAAAAACOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUwAAAAAAKQAAAAADKQAAAAACKQAAAAADUwAAAAAAUwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: ewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: fgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANQAAAAABXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAANQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAABXgAAAAADMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAADXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACMAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: fgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAADewAAAAACewAAAAABewAAAAAAewAAAAABfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAewAAAAADewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAOwAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAABTQAAAAACfwAAAAAAewAAAAABewAAAAADewAAAAABQwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAABIAAAAAAAOwAAAAAATQAAAAADTQAAAAACTQAAAAAATQAAAAAATQAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAACIAAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAQwAAAAAAewAAAAADewAAAAACewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAATQAAAAACTQAAAAADTQAAAAADTQAAAAABTQAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAADQwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABQwAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAABIAAAAAADIAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAewAAAAADewAAAAAAfwAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAewAAAAABewAAAAACQwAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAABfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAACewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAABewAAAAADfwAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAXgAAAAACXgAAAAADfwAAAAAAXgAAAAADXgAAAAADfwAAAAAALAAAAAAALAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAXgAAAAABXgAAAAAAfwAAAAAALAAAAAAALAAAAAAAfwAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAACXgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAABXgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAewAAAAAAewAAAAACewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: QwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAAAXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAXgAAAAAAXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAABXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACXgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAXgAAAAADXgAAAAADQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAQwAAAAAAXgAAAAACXgAAAAADQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAfwAAAAAAJAAAAAADJAAAAAAAJAAAAAACQwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAADfwAAAAAAXgAAAAAAUAAAAAAAfwAAAAAAMAAAAAADMAAAAAABMAAAAAABfwAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAPAAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABfwAAAAAAXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKAAAAAADKAAAAAACKAAAAAABfwAAAAAAJQAAAAAAfwAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAATwAAAAAATwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAJQAAAAADfwAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAQwAAAAAAfwAAAAAAXgAAAAAATwAAAAAAPAAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAACewAAAAADQwAAAAAAfwAAAAAAXgAAAAACTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAADQwAAAAAAfwAAAAAAXgAAAAABXgAAAAAD + version: 6 + 1,-3: + ind: 1,-3 + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADfwAAAAAAUAAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAABUAAAAAAAXgAAAAABXgAAAAACXgAAAAACUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: XgAAAAABXgAAAAAAXgAAAAADXgAAAAABfwAAAAAAXgAAAAACMAAAAAAAMAAAAAABMAAAAAAAXgAAAAABbQAAAAAAewAAAAADewAAAAADewAAAAABfwAAAAAAewAAAAACMAAAAAABXgAAAAABMAAAAAACMAAAAAACbQAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAADfwAAAAAAbQAAAAAAMAAAAAABXgAAAAADUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAABMAAAAAABMAAAAAADMAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAAAfwAAAAAAIAAAAAADMAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAXgAAAAABXgAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACMAAAAAACXgAAAAACfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAMAAAAAADMAAAAAACUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAbQAAAAAAfwAAAAAAMAAAAAACXgAAAAABXgAAAAACfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAXgAAAAACXgAAAAACUAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAMAAAAAACMAAAAAACbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAMAAAAAABKQAAAAABKQAAAAADfwAAAAAAXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAABKQAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAACKQAAAAAAfwAAAAAAXgAAAAABXgAAAAACSwAAAAAASwAAAAACXgAAAAABXgAAAAAAXgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKQAAAAADKQAAAAAAKQAAAAABKQAAAAACKQAAAAAAKQAAAAABKQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAbwAAAAACfwAAAAAAfwAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAADMAAAAAADXgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACMAAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAXgAAAAAAMAAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAKQAAAAADKQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAKQAAAAADKQAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAKQAAAAABKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: ewAAAAABewAAAAACewAAAAACewAAAAADewAAAAABewAAAAACfwAAAAAAMAAAAAADXgAAAAAAXgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAANQAAAAAANQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACbQAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAACIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAADXgAAAAABXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAMAAAAAABXgAAAAABXgAAAAACbQAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACMAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAADewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAACTwAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAABfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAABcQAAAAABcQAAAAABMAAAAAACIAAAAAACIAAAAAABIAAAAAAAIAAAAAABfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACbgAAAAAAcQAAAAABcQAAAAADcQAAAAAAMAAAAAADMAAAAAAAMAAAAAABIAAAAAADIAAAAAADIAAAAAACfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAABcQAAAAACMAAAAAADMAAAAAABMAAAAAADMAAAAAAAMAAAAAABIAAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAMAAAAAADMAAAAAABMAAAAAACMAAAAAABMAAAAAAAMAAAAAAAMAAAAAABfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAMAAAAAAAMAAAAAABMAAAAAACMAAAAAABMAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: fwAAAAAAbwAAAAACfwAAAAAAJQAAAAAAIAAAAAACMAAAAAABMAAAAAABIAAAAAACJQAAAAACfwAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAABIAAAAAACMAAAAAABMAAAAAABIAAAAAACJQAAAAACfwAAAAAAIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAewAAAAABMAAAAAACIAAAAAABIAAAAAACfwAAAAAAJQAAAAACIAAAAAADMAAAAAADMAAAAAABIAAAAAAAJQAAAAACfwAAAAAAIAAAAAADIAAAAAAAIAAAAAADbQAAAAAAewAAAAAAewAAAAABIAAAAAAAIAAAAAACbQAAAAAAJQAAAAADIAAAAAACMAAAAAADMAAAAAACIAAAAAADJQAAAAABbQAAAAAAIAAAAAADIAAAAAAAIAAAAAACfwAAAAAAewAAAAACMAAAAAACIAAAAAADIAAAAAABfwAAAAAAJQAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAJQAAAAABfwAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAKQAAAAABTwAAAAACTwAAAAABKQAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAewAAAAADewAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAACTwAAAAACTwAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAACbQAAAAAAewAAAAADewAAAAADNQAAAAACNQAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAANQAAAAADNQAAAAADfwAAAAAAewAAAAADewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAACfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAMAAAAAADMAAAAAABMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACMAAAAAADMAAAAAACfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: MAAAAAADewAAAAADewAAAAACTwAAAAAATwAAAAADUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAADMAAAAAABewAAAAADTwAAAAACTwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAMAAAAAABewAAAAADewAAAAAATwAAAAACTwAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAABMAAAAAABewAAAAABTwAAAAAATwAAAAABUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAADfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: fwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAEgAAAAAAIAAAAAACIAAAAAACIAAAAAABEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAATwAAAAADIAAAAAABfwAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAfwAAAAAAEgAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAIAAAAAACTwAAAAABUAAAAAAAIAAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABIAAAAAABfwAAAAAAIAAAAAABEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAIAAAAAABIAAAAAADfwAAAAAAIAAAAAABIAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAADIAAAAAACEgAAAAAAIAAAAAAAIAAAAAABIAAAAAACEgAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAATwAAAAACIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAACMAAAAAADMAAAAAADMAAAAAADMAAAAAADfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAA + version: 6 + -2,-5: + ind: -2,-5 + tiles: fwAAAAAAEgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAIAAAAAACIAAAAAABIAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAEgAAAAAAIAAAAAADEgAAAAAAEgAAAAAAIAAAAAACOQAAAAAAOQAAAAAAfwAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAADfwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAEgAAAAAAIAAAAAACTwAAAAADTwAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABTwAAAAADTwAAAAAAIAAAAAADfwAAAAAAIAAAAAAATwAAAAADfwAAAAAAIAAAAAACTwAAAAACIAAAAAADIAAAAAABTwAAAAADUAAAAAAAIAAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADUAAAAAAATwAAAAACIAAAAAAAfwAAAAAAEgAAAAAAIAAAAAADTwAAAAAATwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABTwAAAAABTwAAAAACIAAAAAACfwAAAAAAIAAAAAAATwAAAAAAfwAAAAAAEgAAAAAAIAAAAAAAEgAAAAAAEgAAAAAAIAAAAAADOQAAAAAAOQAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAEgAAAAAAIAAAAAACEgAAAAAAEgAAAAAAIAAAAAAAIAAAAAACIAAAAAACfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAIAAAAAADOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAMAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAACMAAAAAADAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAADOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAADOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAOwAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAAAMAAAAAACAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAACMAAAAAACAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAABMAAAAAABMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAADMAAAAAADMAAAAAACMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAA + version: 6 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: AAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAAAMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAAAMAAAAAACMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADMAAAAAADMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAAAMAAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAABMAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAADMAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAACMAAAAAABMAAAAAABMAAAAAAATwAAAAAAIAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-6: + ind: -3,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAADAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-6: + ind: -2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMAAAAAACMAAAAAADMAAAAAACMAAAAAADMAAAAAABMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAACMAAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAABAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAIAAAAAABOQAAAAAAOQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAC + version: 6 + 3,0: + ind: 3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: AAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAMAAAAAABMAAAAAABMAAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAMAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAIAAAAAABUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA + version: 6 + -4,3: + ind: -4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,2: + ind: -5,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 10000 + linearDamping: 10000 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + angularDamping: 10000 + linearDamping: 10000 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 89: 21,-2 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 85: 18,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 2374: 21,-25 + 2375: 22,-25 + - node: + color: '#FFFF00FF' + id: BotGreyscale + decals: + 304: -23,-39 + 305: -23,-40 + 306: -23,-38 + 307: -21,-39 + 308: -20,-39 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 73: -3,-20 + 74: -2,-20 + 75: -1,-20 + 76: -1,-18 + 77: -1,-17 + 86: 19,-2 + 87: 20,-2 + 314: -22,-39 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 0: 15,-5 + 1037: 15,-4 + 1390: -50,-11 + 1391: -49,-11 + 1392: -48,-11 + 2621: -1,-36 + 2622: -1,-37 + 2623: 0,-37 + 2624: 0,-36 + 2625: 0,-36 + 2626: 1,-36 + 2627: 1,-37 + 2628: 2,-37 + 2629: 2,-36 + - node: + color: '#FFFFFF93' + id: BotLeftGreyscale + decals: + 292: 4,-23 + 293: 3,-23 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 2681: -1,-22 + 2682: -2,-22 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 59: 4,-36 + 60: 4,-37 + 61: 5,-37 + 62: 5,-36 + 63: 6,-36 + 64: 6,-37 + 65: 7,-37 + 66: 7,-36 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 1387: -52,-9 + 1395: -52,-10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Box + decals: + 2263: 5,-26 + 2264: 4,-26 + 2265: 3,-26 + 2266: 2,-26 + 2267: 1,-26 + 2268: 1,-28 + 2269: 2,-28 + 2270: 3,-28 + 2271: 4,-28 + 2272: 5,-28 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Box + decals: + 1990: -52,-9 + - node: + color: '#EFB34196' + id: BoxGreyscale + decals: + 300: -18,-29 + 301: -18,-28 + 302: -18,-35 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 549: -39,34 + 550: -39,35 + 551: -39,36 + 552: -39,37 + 553: -37,25 + 554: -36,25 + 555: -35,25 + 556: -50,32 + 557: -49,32 + 558: -50,37 + 599: -51,37 + 600: -55,31 + 601: -56,31 + 602: -53,31 + 1388: -52,-9 + 1389: -52,-10 + 2329: -57,31 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 53: -1,-32 + 54: -1,-31 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNe + decals: + 2562: -46,-13 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerNe + decals: + 90: -47,-3 + 221: -28,-9 + 229: -32,-5 + 260: -21,-12 + 1006: -28,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 6: -8,4 + 13: -8,8 + 22: -6,23 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNw + decals: + 2563: -48,-13 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerNw + decals: + 160: -54,-3 + 230: -34,-5 + 267: -24,-12 + 1005: -30,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 1: -13,4 + 12: -11,8 + 21: -10,23 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSe + decals: + 2569: -46,-19 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerSe + decals: + 91: -47,-5 + 211: -28,-16 + 261: -21,-17 + 1007: -28,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 11: -8,7 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSw + decals: + 2568: -48,-19 + - node: + color: '#FF0000FF' + id: BrickTileSteelCornerSw + decals: + 159: -54,-5 + 188: -33,-11 + 208: -29,-16 + 262: -24,-17 + 1008: -30,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 10: -11,7 + 987: -7,-30 + 2615: -24,4 + - node: + color: '#FF0000FF' + id: BrickTileSteelInnerNe + decals: + 103: -42,-6 + 104: -42,-2 + 116: -43,0 + 117: -41,0 + 225: -32,-9 + - node: + color: '#FF0000FF' + id: BrickTileSteelInnerNw + decals: + 100: -43,-6 + 115: -41,0 + 183: -34,-9 + - node: + color: '#FF0000FF' + id: BrickTileSteelInnerSe + decals: + 105: -42,-2 + 106: -42,0 + - node: + color: '#FF0000FF' + id: BrickTileSteelInnerSw + decals: + 99: -43,-6 + 185: -33,-10 + 204: -29,-11 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 986: -6,-30 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineE + decals: + 2558: -46,-15 + 2559: -46,-14 + 2566: -46,-16 + 2567: -46,-18 + 2587: -46,-17 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineE + decals: + 92: -47,-4 + 101: -42,-5 + 108: -43,1 + 118: -41,1 + 123: -42,-3 + 124: -42,-1 + 212: -28,-14 + 213: -28,-13 + 214: -28,-12 + 217: -28,-11 + 220: -28,-10 + 226: -32,-8 + 227: -32,-7 + 228: -32,-6 + 268: -21,-13 + 269: -21,-14 + 270: -21,-15 + 271: -21,-16 + 415: 28,4 + 416: 28,5 + 417: 28,6 + 418: 28,7 + 589: -28,-15 + 1003: -28,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 7: -8,3 + 16: -6,21 + 17: -6,22 + - node: + color: '#D4D4D428' + id: BrickTileSteelLineN + decals: + 1385: -48,-13 + 1386: -46,-13 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineN + decals: + 2564: -47,-13 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineN + decals: + 93: -45,-6 + 94: -44,-6 + 102: -41,-6 + 107: -42,0 + 125: -40,0 + 126: -40,-2 + 127: -41,-2 + 128: -48,-3 + 129: -49,-3 + 133: -50,-3 + 134: -44,-9 + 135: -43,-9 + 136: -42,-9 + 137: -39,-9 + 138: -40,-9 + 139: -39,-9 + 140: -37,-9 + 141: -37,-9 + 142: -38,-9 + 143: -37,-9 + 144: -37,-9 + 153: -41,-9 + 154: -51,-3 + 155: -52,-3 + 156: -53,-3 + 162: -47,-9 + 163: -48,-9 + 164: -49,-9 + 165: -50,-9 + 166: -46,-9 + 172: -47,-7 + 173: -36,-9 + 222: -29,-9 + 223: -30,-9 + 224: -31,-9 + 233: -33,-5 + 258: -23,-12 + 259: -22,-12 + 1009: -29,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 3: -12,4 + 4: -11,4 + 5: -10,4 + 8: -10,8 + 9: -9,8 + 23: -7,23 + 24: -8,23 + 25: -9,23 + 2633: -8,-39 + 2634: -7,-39 + 2635: -6,-39 + - node: + color: '#474A4DFF' + id: BrickTileSteelLineS + decals: + 1013: -25,-9 + 1014: -24,-9 + 1015: -23,-9 + 1016: -22,-9 + 1017: -21,-9 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineS + decals: + 2570: -47,-19 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineS + decals: + 95: -45,-6 + 96: -44,-6 + 119: -41,0 + 120: -40,0 + 121: -41,-2 + 122: -40,-2 + 130: -48,-5 + 131: -49,-5 + 132: -50,-5 + 145: -44,-10 + 146: -43,-10 + 147: -41,-10 + 148: -40,-10 + 149: -42,-10 + 150: -39,-10 + 151: -37,-10 + 152: -38,-10 + 157: -52,-5 + 158: -53,-5 + 167: -50,-10 + 168: -49,-10 + 169: -48,-10 + 170: -46,-10 + 171: -47,-8 + 174: -36,-10 + 186: -34,-10 + 192: -32,-11 + 193: -31,-11 + 194: -30,-11 + 272: -22,-17 + 273: -23,-17 + 1010: -29,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 14: -10,7 + 15: -9,7 + 2630: -8,-39 + 2631: -7,-39 + 2632: -6,-39 + - node: + color: '#474A4DFF' + id: BrickTileSteelLineW + decals: + 1011: -25,-9 + 1012: -25,-8 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineW + decals: + 2560: -48,-15 + 2561: -48,-14 + 2565: -48,-16 + 2571: -48,-18 + 2572: -48,-17 + - node: + color: '#FF0000FF' + id: BrickTileSteelLineW + decals: + 97: -43,-7 + 98: -43,-5 + 109: -41,1 + 110: -43,1 + 111: -43,0 + 112: -43,-1 + 113: -43,-2 + 114: -43,-3 + 161: -54,-4 + 178: -34,-8 + 179: -34,-7 + 180: -34,-6 + 196: -29,-12 + 197: -29,-13 + 198: -29,-14 + 263: -24,-16 + 264: -24,-15 + 265: -24,-14 + 266: -24,-13 + 590: -29,-15 + 1004: -30,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 2: -13,3 + 18: -10,20 + 19: -10,21 + 20: -10,22 + 26: -24,6 + 27: -24,7 + 982: -6,-34 + 983: -6,-33 + 984: -6,-32 + 985: -6,-31 + 988: -7,-28 + 989: -7,-29 + 990: -7,-27 + 991: -7,-26 + 992: -7,-25 + 993: -7,-23 + 994: -7,-22 + 995: -7,-21 + 996: -7,-20 + 997: -7,-19 + 998: -7,-18 + 999: -7,-17 + 1000: -7,-16 + 2494: -24,5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 2083: -8,36 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 653: 13,6 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 778: 28,12 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 539: -39,33 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 394: -16,-33 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 2084: -13,36 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 637: 10,15 + 710: 10,6 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 546: -43,34 + 2390: -45,44 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 429: -17,33 + 453: -15,34 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 635: 19,15 + 652: 13,8 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 2383: -39,39 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 454: -6,33 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 651: 15,8 + 801: 19,23 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 2382: -45,39 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndE + decals: + 644: 15,7 + 657: 19,7 + 675: 23,7 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndN + decals: + 650: 14,8 + 654: 18,8 + 655: 22,8 + 709: 15,6 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndS + decals: + 643: 14,6 + 656: 18,6 + 658: 22,6 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndW + decals: + 645: 13,7 + 670: 21,7 + - node: + cleanable: True + color: '#52B4E996' + id: BrickTileWhiteEndW + decals: + 1931: 17,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNe + decals: + 1995: -12,36 + 2087: -9,36 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 649: 14,7 + 673: 22,7 + 703: 13,5 + 704: 12,6 + - node: + cleanable: True + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 1932: 18,7 + - node: + color: '#9FED5896' + id: BrickTileWhiteInnerNe + decals: + 780: 26,12 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 534: -47,32 + 538: -40,33 + 2400: -39,41 + 2401: -44,44 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNe + decals: + 395: -17,-33 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 421: -16,36 + 1996: -9,36 + 2088: -12,36 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 639: 11,15 + 646: 14,7 + 672: 22,7 + 680: 12,6 + 705: 15,5 + - node: + cleanable: True + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 1933: 18,7 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 2402: -44,44 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 430: -17,34 + 452: -15,38 + 1378: -12,39 + 2052: -9,38 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 629: 12,15 + 648: 14,7 + 674: 22,7 + 706: 12,8 + - node: + cleanable: True + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 1934: 18,7 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSe + decals: + 2414: 11,-7 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 2398: -40,39 + 2399: -39,41 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 462: -6,38 + 1377: -9,39 + 2047: -12,38 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 647: 14,7 + 671: 22,7 + 799: 21,23 + - node: + cleanable: True + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 1935: 18,7 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSw + decals: + 2413: 14,-7 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 2397: -40,39 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 380: -20,-45 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 433: -8,32 + 434: -8,33 + 435: -8,34 + 436: -8,35 + 455: -15,35 + 456: -15,37 + 457: -15,36 + 2024: -12,38 + 2041: -12,37 + 2056: -9,37 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 619: 12,10 + 620: 12,11 + 621: 12,12 + 622: 12,13 + 623: 12,14 + 636: 19,16 + 681: 23,10 + 682: 23,11 + 683: 23,12 + 684: 23,14 + 685: 23,15 + 686: 23,16 + 687: 23,17 + 688: 23,18 + 689: 23,19 + 701: 12,7 + 707: 15,4 + 708: 15,5 + 720: 8,12 + 721: 8,11 + 722: 8,10 + 723: 8,9 + 724: 8,8 + 725: 8,7 + 726: 8,6 + 727: 13,18 + 728: 13,19 + 729: 13,20 + 730: 13,21 + 731: 13,22 + 732: 13,23 + 733: 13,24 + 734: 13,25 + 735: 13,26 + 749: 19,18 + 750: 19,19 + 751: 19,20 + 752: 19,21 + - node: + cleanable: True + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2240: 23,13 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 777: 28,11 + 781: 26,13 + 782: 26,14 + 783: 26,15 + 784: 26,16 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 499: -41,25 + 502: -41,29 + 503: -35,29 + 504: -35,28 + 505: -35,27 + 506: -35,26 + 526: -47,37 + 527: -47,36 + 528: -47,35 + 529: -47,34 + 530: -47,33 + 535: -40,35 + 536: -40,37 + 537: -39,32 + 540: -39,31 + 2099: -20,-74 + 2100: -20,-75 + 2101: -20,-76 + 2102: -20,-77 + 2103: -20,-78 + 2104: -20,-79 + 2105: -20,-80 + 2384: -39,40 + 2385: -39,42 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 315: -16,-46 + 316: -16,-45 + 317: -16,-43 + 318: -16,-44 + 319: -16,-42 + 320: -16,-41 + 321: -16,-40 + 322: -16,-39 + 323: -16,-38 + 324: -16,-37 + 325: -16,-36 + 326: -16,-35 + 377: -16,-47 + 396: -17,-32 + 397: -17,-31 + 398: -21,-30 + 399: -21,-29 + 400: -21,-28 + 401: -11,-37 + 402: -11,-38 + 403: -11,-39 + 404: -11,-40 + 405: -11,-41 + - node: + color: '#FF801DFF' + id: BrickTileWhiteLineE + decals: + 2303: 19,10 + 2304: 19,11 + 2305: 19,12 + 2306: 19,13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 419: -18,36 + 420: -17,36 + 424: -14,39 + 425: -13,39 + 426: -7,39 + 427: -6,39 + 1379: -12,39 + 1380: -11,39 + 1381: -10,39 + 1993: -11,36 + 1994: -10,36 + - node: + cleanable: True + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 1298: -8,39 + 1299: -9,39 + - node: + color: '#49FFC5FF' + id: BrickTileWhiteLineN + decals: + 2636: -5.9915333,-39.38071 + 2637: -6.991725,-39.38071 + 2638: -7.983293,-39.38071 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 679: 11,6 + 702: 14,5 + 758: 25,22 + 759: 26,22 + 760: 27,22 + 761: 28,22 + 762: 29,22 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 779: 27,12 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 532: -46,32 + 533: -45,32 + 2391: -43,44 + 2392: -42,44 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 428: -18,33 + 431: -16,34 + 432: -4,33 + 441: -13,41 + 442: -14,41 + 443: -12,41 + 444: -11,41 + 445: -10,41 + 446: -9,41 + 447: -7,41 + 448: -7,38 + 449: -8,38 + 450: -13,38 + 451: -14,38 + 1375: -11,39 + 1376: -10,39 + 1992: -8,41 + - node: + cleanable: True + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 1289: -5,33 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 630: 13,15 + 631: 14,15 + 632: 16,15 + 633: 15,15 + 634: 18,15 + 753: 25,18 + 754: 26,18 + 755: 27,18 + 756: 28,18 + 757: 29,18 + 800: 20,23 + - node: + cleanable: True + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 2241: 17,15 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 2411: 12,-7 + 2412: 13,-7 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 2393: -41,39 + 2394: -42,39 + 2395: -43,39 + 2396: -44,39 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 422: -16,37 + 423: -16,38 + 437: -13,32 + 438: -13,33 + 439: -13,34 + 440: -13,35 + 458: -6,34 + 459: -6,35 + 460: -6,36 + 461: -6,37 + 2028: -9,38 + 2031: -9,37 + 2055: -12,37 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 624: 10,10 + 625: 10,11 + 626: 10,12 + 627: 10,13 + 628: 10,14 + 638: 11,16 + 677: 12,8 + 678: 12,7 + 690: 21,19 + 691: 21,18 + 692: 21,17 + 693: 21,16 + 694: 21,15 + 695: 21,14 + 696: 21,13 + 697: 21,12 + 698: 21,11 + 699: 21,10 + 700: 20,20 + 711: 10,4 + 712: 10,5 + 713: 6,6 + 714: 6,7 + 715: 6,8 + 716: 6,9 + 717: 6,10 + 718: 6,11 + 719: 6,12 + 736: 12,26 + 737: 12,24 + 738: 12,25 + 739: 12,23 + 740: 12,22 + 741: 12,21 + 742: 12,20 + 743: 12,19 + 744: 12,18 + 745: 15,18 + 746: 15,19 + 747: 15,20 + 748: 15,21 + 797: 21,21 + 798: 21,22 + 802: 19,24 + 803: 19,25 + 804: 19,26 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 771: 25,11 + 772: 25,12 + 773: 25,13 + 774: 25,14 + 775: 25,15 + 776: 25,16 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 489: -25,34 + 490: -25,33 + 500: -43,25 + 501: -43,29 + 507: -39,25 + 508: -39,26 + 509: -39,27 + 510: -39,28 + 511: -39,29 + 521: -51,32 + 522: -51,33 + 523: -51,34 + 524: -51,35 + 525: -51,36 + 541: -43,31 + 542: -43,32 + 543: -43,33 + 544: -41,35 + 545: -41,37 + 2106: -23,-80 + 2107: -23,-79 + 2108: -23,-78 + 2109: -23,-77 + 2110: -23,-76 + 2111: -23,-75 + 2112: -23,-74 + 2386: -45,40 + 2387: -45,41 + 2388: -45,42 + 2389: -45,43 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 378: -20,-47 + 379: -20,-46 + 381: -23,-44 + 382: -23,-43 + 383: -24,-41 + 384: -24,-40 + 385: -24,-39 + 386: -24,-38 + 387: -24,-37 + 388: -23,-35 + 389: -23,-34 + 390: -23,-31 + 391: -23,-32 + 392: -23,-30 + 393: -23,-29 + 406: -14,-41 + 407: -14,-40 + 408: -14,-39 + 409: -14,-38 + 410: -14,-37 + - node: + color: '#FF801DFF' + id: BrickTileWhiteLineW + decals: + 2299: 14,13 + 2300: 14,12 + 2301: 14,11 + 2302: 14,10 + - node: + color: '#FFFFFFFF' + id: BushAOne + decals: + 930: 37,-13 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 934: 37,-10 + 949: -27,24 + 955: 35,-13 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 929: 37,-12 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 928: 37,-9 + 953: -45,23 + 954: 35,-12 + 968: -13,-2 + - node: + color: '#FFFFFFFF' + id: BushDOne + decals: + 1350: -59.663837,-5.750451 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 936: 33,-23 + 940: 33,-19 + 941: -17,27 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 935: 34,-23 + - node: + color: '#FFFFFFFF' + id: Busha3 + decals: + 939: 34,-19 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 1347: -58.898212,-5.953576 + 1348: -61.554462,-6.266076 + 1349: -58.741962,-6.875451 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 957: -50,6 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 924: 13,-2 + 925: 10,2 + 933: 37,-11 + 948: -32,24 + 952: -45,22 + 958: -15,-12 + - node: + color: '#FFFFFFFF' + id: Bushc2 + decals: + 956: -50,7 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 938: 35,-19 + 950: -28,24 + 951: -33,24 + 959: -14,-12 + - node: + color: '#FFFFFFFF' + id: Bushd1 + decals: + 969: -14,-2 + - node: + color: '#FFFFFFFF' + id: Bushd3 + decals: + 926: 15,2 + 927: 12,-2 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 944: -17,32 + 947: -33,24 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 905: -2,2 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 904: -2,3 + 967: -15,-2 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 943: -18,32 + 966: -13,-2 + - node: + color: '#FFFFFFFF' + id: Bushg3 + decals: + 937: 32,-19 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 942: -18,27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushj1 + decals: + 2287: -22,4 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 2095: -4.742067,39.22148 + 2096: -15.210269,39.22148 + - node: + color: '#FFFFFFFF' + id: Bushm3 + decals: + 946: -45,9 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 921: 2,-2 + 945: -45,10 + 960: -13,-12 + 961: -32,24 + 970: -15,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bushn1 + decals: + 2288: -20,3 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 2583: -47,-16 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 805: 15,23 + 806: 15,24 + 807: 15,25 + 808: 15,26 + 809: 16,26 + 810: 16,25 + 811: 16,24 + 812: 16,23 + 813: 17,23 + 814: 17,24 + 815: 17,25 + 816: 17,26 + 1942: 17,5 + 1943: 17,4 + 1944: 17,3 + 1945: 18,3 + 1946: 19,5 + 1947: 19,4 + 1948: 19,3 + 1949: 20,3 + 1950: 20,4 + 1951: 20,5 + 1952: 21,5 + 1953: 21,3 + 1954: 22,3 + 1955: 22,5 + 1956: 23,5 + 1957: 23,4 + 1958: 23,3 + - node: + cleanable: True + color: '#52B4E996' + id: CheckerNESW + decals: + 1986: 18,5 + 1987: 18,4 + 1988: 21,4 + 1989: 22,4 + - node: + color: '#9FED5896' + id: CheckerNESW + decals: + 2242: 19,-14 + 2243: 19,-13 + 2244: 19,-12 + 2245: 20,-12 + 2246: 21,-12 + 2247: 22,-12 + - node: + color: '#A4610696' + id: CheckerNESW + decals: + 2407: 10,-4 + 2408: 10,-5 + 2409: 10,-6 + 2410: 10,-7 + 2415: 9,-20 + 2416: 9,-21 + 2417: 9,-22 + 2418: 9,-23 + 2419: 9,-24 + 2420: 9,-25 + 2421: 9,-26 + 2422: 9,-27 + 2423: 9,-28 + 2432: 9,-18 + 2433: 9,-17 + 2434: 9,-16 + 2435: 9,-15 + 2436: 9,-14 + 2437: 9,-13 + 2451: 10,-11 + 2452: 10,-10 + 2453: 10,-9 + 2454: 14,-32 + 2455: 14,-30 + 2456: 14,-29 + 2457: 14,-28 + 2458: 14,-27 + 2459: 14,-26 + 2460: 14,-25 + 2470: 14,-33 + 2485: 4,-3 + 2486: 4,-4 + 2487: 4,-5 + 2597: 14,-34 + 2598: 14,-35 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 215: -24,-3 + 216: -23,-3 + 218: -22,-3 + 219: -21,-3 + 238: -41,-13 + 239: -41,-15 + 240: -41,-16 + 246: -41,-14 + 247: -41,-12 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 2520: -12,-25 + 2521: -11,-25 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 199: -25,-9 + 200: -24,-9 + 201: -23,-9 + 202: -22,-9 + 203: -21,-9 + 205: -25,-8 + 206: -26,-6 + 207: -26,-5 + 209: -26,-4 + 210: -26,-3 + 231: -35,-15 + 232: -35,-14 + 234: -35,-13 + 235: -35,-12 + 245: -35,-16 + - node: + color: '#EFB34196' + id: Delivery + decals: + 327: -28,-32 + 328: -25,-35 + 329: -36,-32 + 330: -39,-35 + 331: -36,-35 + 332: -28,-35 + 333: -28,-39 + 334: -36,-39 + 335: -32,-43 + 336: -32,-35 + 337: -28,-43 + 338: -25,-43 + 339: -28,-46 + 340: -36,-46 + 341: -39,-43 + 342: -36,-43 + - node: + color: '#FFFF00FF' + id: Delivery + decals: + 309: -23,-39 + 310: -23,-38 + 311: -23,-40 + 312: -21,-39 + 313: -20,-39 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 603: -56,40 + 604: -56,41 + 605: -55,41 + 606: -54,41 + 607: -54,40 + 608: -54,39 + 609: -56,39 + 610: -55,39 + 2334: 22,-30 + 2335: 21,-30 + 2336: 21,-31 + 2337: 22,-31 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 2341: 13,-18 + 2342: 13,-17 + 2372: 22,-29 + 2373: 21,-29 + - node: + color: '#DE3A3A96' + id: DeliveryGreyscale + decals: + 241: -39,-16 + 248: -41,-7 + 249: -26,-16 + 250: -26,-15 + 251: -26,-14 + 252: -26,-13 + 253: -26,-12 + 254: -24,-14 + 255: -24,-15 + 256: -24,-16 + 257: -24,-17 + - node: + color: '#DF0000FF' + id: DeliveryGreyscale + decals: + 242: -41,-14 + 243: -41,-12 + 244: -35,-16 + - node: + color: '#EFB34196' + id: DeliveryGreyscale + decals: + 303: -21,-44 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 343: -35,-45 + 344: -34,-45 + 345: -33,-45 + 346: -31,-45 + 347: -30,-45 + 348: -29,-45 + 349: -30,-33 + 350: -29,-33 + 351: -31,-33 + 352: -33,-33 + 353: -34,-33 + 354: -35,-33 + 547: -46,34 + 548: -45,34 + 2338: 17,-30 + 2339: 18,-30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 2343: 14,-18 + 2344: 14,-17 + 2345: 15,-17 + 2346: 15,-18 + 2367: 18,-29 + 2368: 17,-29 + 2376: 16,-30 + 2377: 16,-29 + - node: + cleanable: True + color: '#5D2C0098' + id: Dirt + decals: + 1835: 22,1 + - node: + cleanable: True + color: '#5D2C00D3' + id: Dirt + decals: + 1836: 40,1 + 1837: -25,-3 + 1838: -26,2 + 1839: -32,3 + 1843: -31,5 + 1870: 26,-3 + - node: + cleanable: True + color: '#5D5200FF' + id: Dirt + decals: + 1825: -2,-28 + 1826: -2,-25 + 1827: 4,-24 + 1828: 1,-23 + 1829: -4,-23 + 1830: -4,-22 + 1831: 0,-25 + 1833: 10,-30 + 1834: 24,-9 + - node: + cleanable: True + color: '#792C0079' + id: Dirt + decals: + 1912: 22,16 + - node: + cleanable: True + color: '#792C0082' + id: Dirt + decals: + 1917: 11,11 + 1918: 11,14 + 1919: 19,16 + 1920: 12,18 + 1921: 13,25 + 1922: 13,24 + 1923: 14,5 + 1924: 23,6 + 1925: 19,8 + 1926: 11,5 + 1927: 8,7 + 1928: 6,11 + 1929: 19,6 + - node: + cleanable: True + color: '#792C00B7' + id: Dirt + decals: + 1913: 21,17 + 1914: 16,15 + 1915: 12,15 + 1916: 10,13 + - node: + cleanable: True + color: '#792C00D1' + id: Dirt + decals: + 1871: 25,-4 + 1872: 25,-10 + 1873: 39,-1 + 1874: 30,0 + 1875: 31,0 + 1876: 13,4 + 1877: 14,4 + 1878: 0,-2 + 1879: 20,-29 + 1880: 37,-24 + 1881: -7,-36 + 1882: -8,-37 + 1883: -7,-35 + 1884: -7,-31 + 1892: -14,-19 + 1893: -14,-19 + 1894: -15,-18 + 1895: -17,-21 + 1896: -18,-26 + 1897: -17,-13 + 1898: -17,-4 + 1899: -21,11 + 1900: -32,15 + 1901: -41,15 + 1902: -48,12 + 1903: -46,6 + 1909: 28,13 + 1910: 25,15 + 1911: 26,15 + - node: + cleanable: True + color: '#835432FF' + id: Dirt + decals: + 2253: 26,-17 + 2254: 25,-16 + 2255: 29,-17 + - node: + cleanable: True + color: '#A0521263' + id: Dirt + decals: + 1936: 18,7 + 1937: 18,7 + 1938: 18,6 + 1939: 17,6 + 1940: 17,7 + 1959: -28,10 + 1960: -28,10 + 1961: -28,9 + 1962: -28,9 + 1963: -29,10 + 1964: -28,11 + 1965: -29,11 + 1966: -28,10 + 1967: -28,10 + 1974: -29,13 + 1975: -29,13 + 1976: -29,13 + 1977: -28,14 + 1978: -28,15 + 1979: -30,14 + 1980: -29,12 + 1981: -28,12 + 1982: -29,12 + 1983: -29,12 + 1984: -29,13 + 1985: -29,13 + 1997: 39,-4 + 1998: 38,-4 + 1999: 38,-4 + 2000: 39,-8 + 2001: 39,-8 + 2002: 38,-7 + 2003: 38,-7 + 2004: 39,0 + 2005: 40,-1 + 2006: 40,-1 + 2007: 34,-1 + 2008: 33,-1 + 2009: 35,-1 + 2010: 35,-1 + 2011: 25,1 + 2012: 25,-3 + 2013: 24,-2 + 2014: 24,-3 + 2015: 26,-6 + 2016: 26,-6 + 2017: 29,-16 + 2018: 38,-19 + 2019: 36,-22 + 2020: 31,-23 + 2021: 40,-21 + 2022: 38,-20 + 2023: 40,-13 + 2025: 39,-14 + 2026: 34,-6 + 2027: 35,-6 + 2029: 32,-4 + 2030: 31,-3 + 2032: 31,-3 + 2033: 31,-6 + 2034: 30,-7 + 2035: 29,-7 + 2036: 33,-9 + 2037: 30,-10 + 2038: 28,-10 + 2039: 29,-9 + 2040: 28,-13 + 2042: 30,-13 + 2043: 30,-13 + 2044: 30,-12 + 2045: 30,-12 + 2046: 32,0 + 2048: 28,6 + 2049: 28,6 + 2050: 27,6 + 2051: 27,6 + 2053: 27,3 + 2054: 27,3 + 2057: 12,-7 + 2058: 13,-7 + 2059: 13,-7 + 2060: 12,-7 + 2061: 10,-6 + 2062: 10,-6 + 2063: 14,-6 + 2064: 14,-6 + 2065: 14,-5 + 2066: 12,-6 + 2067: 15,-5 + 2068: 13,-9 + 2069: 12,-9 + 2070: 14,-9 + 2071: 14,-11 + 2072: 14,-11 + 2073: 13,-9 + 2074: 10,-10 + 2075: 10,-10 + 2076: 11,-10 + 2077: 7,-10 + 2078: 7,-10 + 2079: 13,-10 + 2080: 13,-10 + 2081: 7,-18 + 2082: 7,-18 + 2085: 29,-19 + 2086: 29,-19 + 2089: 26,-12 + 2090: 24,-13 + 2091: 24,-13 + 2092: 24,-13 + - node: + cleanable: True + color: '#FF0000B7' + id: Dirt + decals: + 1968: 19,4 + - node: + cleanable: True + color: '#FF0000FF' + id: Dirt + decals: + 2273: -40,-25 + 2274: -40,-24 + 2275: -40,-25 + 2276: -39,-25 + - node: + cleanable: True + color: '#FFFCFFFF' + id: Dirt + decals: + 2189: -15,-75 + 2190: -17,-77 + 2191: -10,-71 + 2192: -9,-78 + 2193: -18,-76 + 2194: -23,-77 + 2195: -12,-74 + 2196: -12,-79 + 2197: -23,-78 + 2198: -12,-81 + 2199: -25,-78 + 2200: -11,-76 + 2201: -16,-67 + 2202: -15,-76 + 2203: -27,-77 + 2204: -23,-75 + 2205: -12,-81 + 2222: -18,-47 + 2223: -11,-37 + 2224: -24,-39 + 2225: -21,-35 + 2226: -15,-38 + 2227: -17,-35 + 2228: -8,-33 + 2229: -19,-29 + 2230: -23,-28 + 2231: -7,-32 + 2232: -4,-28 + - node: + cleanable: True + color: '#FFFFFFF7' + id: Dirt + decals: + 1341: -33,2 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 2639: -8,-40 + 2640: -7,-39 + 2641: -6,-38 + 2642: -2,-40 + 2643: -2,-42 + 2644: 1,-40 + 2645: -1,-45 + 2646: -4,-46 + 2647: -2,-48 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 531: 34,-14 + 1041: 29,-24 + 1042: 39,-18 + 1043: 39,-11 + 1044: 39,-3 + 1045: 40,7 + 1046: 39,12 + 1047: 35,16 + 1048: 33,20 + 1049: 33,23 + 1050: 26,29 + 1051: 22,29 + 1052: 13,28 + 1053: 13,30 + 1054: 19,26 + 1055: 23,24 + 1056: 13,19 + 1057: 23,16 + 1058: 13,11 + 1059: 13,6 + 1060: 11,12 + 1061: 18,11 + 1062: 20,6 + 1063: 7,7 + 1064: 6,3 + 1065: 2,7 + 1066: 4,8 + 1067: 1,6 + 1068: -3,6 + 1069: -4,2 + 1070: -25,-1 + 1071: -43,1 + 1072: -20,0 + 1073: -26,1 + 1074: -37,6 + 1075: -49,5 + 1076: -46,11 + 1077: -41,23 + 1078: -43,29 + 1079: -40,33 + 1080: -31,41 + 1081: -40,46 + 1082: -46,46 + 1083: -50,45 + 1084: -52,45 + 1085: -52,50 + 1287: -60,-1 + 1288: -59,-1 + 1314: -43,0 + 1315: -41,-2 + 1316: -44,-6 + 1317: -42,-10 + 1318: -37,-9 + 1319: -39,-13 + 1320: -41,-16 + 1321: -43,-16 + 1322: -44,-15 + 1323: -43,-15 + 1458: 31,-9 + 1459: 31,-1 + 1461: 17,-2 + 1462: 8,-7 + 1469: -7,-4 + 1476: -8,-10 + 1483: -25,-6 + 1489: -10,3 + 1490: -9,17 + 1491: -10,21 + 1492: -6,27 + 1510: -9,10 + 1691: -28,25 + 1692: -28,31 + 1693: -30,31 + 1694: -32,31 + 1734: -18,-1 + 1735: -8,-8 + 1736: -10,-14 + 1737: 23,-13 + 1738: 33,-20 + 1739: 40,-12 + 1766: -13,43 + 1789: 0,32 + 1790: 3,32 + 1798: -29,13 + 1799: -31,10 + 1800: -37,10 + 1801: -17,10 + 1802: -12,10 + 1803: -20,-25 + 1804: -23,-23 + 1811: -22,-22 + 1814: -10,-23 + 1815: 2,-23 + 1854: -15,13 + 1855: -13,15 + 1856: -13,13 + 1857: -15,10 + 1858: -15,15 + 1859: 35,-17 + 1860: 35,-15 + 1861: 35,-16 + 1862: 35,-16 + 1863: 34,-17 + 1864: 33,-15 + 1865: 34,-15 + 1930: 13,1 + 2530: 12,-20 + 2531: 12,-21 + 2535: 22,-26 + 2536: 21,-25 + 2537: 22,-25 + 2538: 20,-25 + 2539: 18,-25 + 2540: 18,-26 + 2541: 18,-27 + 2551: 17,-23 + 2552: 16,-23 + 2553: 18,-20 + 2575: -48,-17 + 2576: -46,-19 + 2577: -48,-19 + 2608: 9,-44 + 2609: 9,-37 + 2611: 12,-35 + - node: + cleanable: True + color: '#00FF00FF' + id: DirtHeavy + decals: + 1021: -55,-8 + 1022: -52,-4 + - node: + cleanable: True + color: '#5D2C00D3' + id: DirtHeavy + decals: + 1844: -29,7 + 1845: -36,7 + 1846: -35,5 + - node: + cleanable: True + color: '#792C00D1' + id: DirtHeavy + decals: + 1885: -8,-35 + 1886: -6,-32 + 1904: 26,14 + 1905: 28,14 + 1906: 27,13 + 1907: 27,15 + 1908: 27,16 + - node: + cleanable: True + color: '#8354329E' + id: DirtHeavy + decals: + 2261: 24,-15 + - node: + cleanable: True + color: '#835432FF' + id: DirtHeavy + decals: + 2260: 25,-12 + - node: + cleanable: True + color: '#A0521263' + id: DirtHeavy + decals: + 1969: -28,9 + 1971: -28,9 + 1972: -28,9 + 1973: -29,11 + 2093: 25,-15 + - node: + cleanable: True + color: '#FF0000FF' + id: DirtHeavy + decals: + 2277: -39,-24 + 2278: -38,-25 + 2279: -39,-23 + 2280: -39,-23 + 2281: -38,-25 + 2282: -39,-24 + - node: + cleanable: True + color: '#FFFCFFFF' + id: DirtHeavy + decals: + 2206: -15,-79 + 2207: -17,-80 + 2208: -8,-75 + 2209: -19,-79 + 2210: -20,-78 + 2211: -22,-79 + 2212: -24,-75 + 2213: -27,-78 + 2214: -16,-74 + 2215: -10,-79 + 2216: -21,-77 + 2217: -28,-75 + 2218: -29,-77 + 2219: -29,-78 + 2220: -18,-44 + 2221: -13,-40 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 67: -29,10 + 512: 28,-10 + 513: 35,-16 + 514: 33,-17 + 842: 34,-13 + 843: 32,-12 + 867: 28,-13 + 868: 31,-13 + 869: 31,-10 + 870: 29,-11 + 871: 29,-12 + 872: 34,-10 + 873: 35,-9 + 874: 33,-9 + 875: 32,-9 + 876: 32,-10 + 877: 33,-10 + 906: 29,-3 + 907: 28,-4 + 908: 30,-5 + 909: 31,-6 + 910: 32,-6 + 912: 32,-4 + 913: 32,-3 + 914: 32,-2 + 916: 34,-3 + 919: 33,-16 + 920: 32,-16 + 1038: 20,1 + 1039: 23,-9 + 1086: -47,43 + 1087: -48,43 + 1088: -41,35 + 1089: -38,23 + 1090: -42,19 + 1091: -38,15 + 1092: -42,8 + 1093: -37,6 + 1094: -36,0 + 1095: -38,-6 + 1096: -40,-10 + 1097: -38,-16 + 1098: -29,-22 + 1099: -25,-20 + 1100: -23,-15 + 1101: -27,-18 + 1102: -28,-16 + 1103: -13,-18 + 1104: -3,-19 + 1105: -7,-34 + 1106: -16,-44 + 1107: -19,-48 + 1108: -22,-44 + 1109: -33,-46 + 1110: -36,-40 + 1111: -32,-28 + 1250: -49,50 + 1251: -53,45 + 1252: -43,31 + 1253: -41,33 + 1254: -43,24 + 1255: -40,25 + 1256: -50,20 + 1257: -42,19 + 1258: -49,14 + 1259: -51,5 + 1260: -51,6 + 1261: -47,5 + 1262: -44,6 + 1266: -54,-18 + 1267: -53,-18 + 1268: -53,-17 + 1269: -50,-18 + 1270: -50,-18 + 1271: -59,-13 + 1272: -59,-13 + 1273: -60,-13 + 1274: -60,-12 + 1275: -59,-12 + 1290: -18,34 + 1291: -20,34 + 1399: -50,-5 + 1400: -48,-3 + 1401: -47,-5 + 1402: -48,-5 + 1403: -55,-1 + 1404: -57,1 + 1405: -57,0 + 1406: -55,1 + 1407: -57,-2 + 1408: -57,-1 + 1409: -56,-3 + 1410: -56,-5 + 1411: -57,-5 + 1412: -55,-7 + 1413: -57,-7 + 1419: 38,-18 + 1420: 37,-23 + 1421: 30,-23 + 1430: 33,3 + 1431: 26,1 + 1432: 15,-1 + 1435: 11,-4 + 1436: 21,10 + 1437: 11,16 + 1441: 21,19 + 1442: 27,19 + 1445: 21,21 + 1446: 23,22 + 1452: 16,23 + 1453: 12,22 + 1454: 12,21 + 1460: 18,-2 + 1463: 5,-8 + 1464: 5,-11 + 1470: -9,-4 + 1473: -4,-7 + 1474: -9,-9 + 1479: -17,-12 + 1480: -19,-12 + 1481: -19,-3 + 1484: -24,-6 + 1485: -24,-4 + 1488: -11,7 + 1493: -4,27 + 1494: -10,21 + 1495: -11,18 + 1496: -10,15 + 1497: -7,18 + 1499: -8,21 + 1500: -1,19 + 1501: -3,20 + 1509: -9,9 + 1511: -9,10 + 1512: -18,4 + 1517: -22,6 + 1518: -19,6 + 1519: -22,-8 + 1520: 12,-16 + 1556: 21,14 + 1607: -58,1 + 1608: -58,1 + 1609: -60,1 + 1610: -60,1 + 1611: -60,1 + 1612: -60,1 + 1613: -58,-2 + 1614: -58,-2 + 1615: -58,-2 + 1616: -58,-2 + 1617: -58,-2 + 1618: -58,-2 + 1619: -58,-2 + 1620: -58,-3 + 1621: -58,-3 + 1622: -58,-3 + 1623: -57,-4 + 1624: -56,-2 + 1625: -57,-1 + 1626: -57,-8 + 1627: -56,-9 + 1628: -51,10 + 1629: -50,12 + 1630: -50,15 + 1631: -50,16 + 1632: -51,19 + 1633: -51,18 + 1634: -49,20 + 1635: -48,19 + 1636: -47,17 + 1637: -45,17 + 1695: -28,31 + 1696: -38,25 + 1697: -25,24 + 1698: -25,29 + 1699: -23,31 + 1700: -23,35 + 1701: -23,34 + 1702: -15,25 + 1703: -18,25 + 1704: -21,26 + 1705: -15,26 + 1726: -13,5 + 1727: -11,6 + 1741: 40,-20 + 1742: 39,-20 + 1743: 40,-18 + 1767: -8,38 + 1768: -5,36 + 1769: -5,35 + 1770: -9,36 + 1771: -8,35 + 1772: -8,33 + 1773: -12,33 + 1774: -17,34 + 1775: -15,36 + 1776: -15,38 + 1777: -14,38 + 1778: -12,39 + 1779: -13,35 + 1780: -12,36 + 1781: -8,39 + 1782: -6,29 + 1783: -4,31 + 1784: -4,33 + 1785: -4,34 + 1786: -5,33 + 1787: -6,33 + 1788: -1,34 + 1791: 2,32 + 1792: -2,29 + 1793: 0,32 + 1794: -33,35 + 1795: -33,34 + 1796: -33,36 + 1797: -33,38 + 1805: -20,-24 + 1806: -19,-24 + 1807: -19,-21 + 1808: -18,-24 + 1809: -17,-20 + 1810: -22,-26 + 1812: -7,-22 + 1813: -8,-21 + 1840: -32,0 + 2522: -14,-25 + 2525: 10,-27 + 2529: 9,-21 + 2532: 20,-32 + 2533: 19,-33 + 2542: 19,-26 + 2605: 11,-41 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2523: -14,-22 + 2534: 19,-27 + 2543: 20,-26 + 2573: -47,-15 + 2606: 11,-44 + 2610: 11,-37 + - node: + cleanable: True + color: '#5D2C00D3' + id: DirtLight + decals: + 1841: -32,-1 + 1842: -33,5 + - node: + cleanable: True + color: '#792C00D1' + id: DirtLight + decals: + 1887: -8,-36 + 1888: -8,-23 + 1889: -8,-19 + 1890: -12,-18 + 1891: -13,-17 + - node: + cleanable: True + color: '#835432FF' + id: DirtLight + decals: + 2256: 28,-17 + 2258: 27,-17 + - node: + cleanable: True + color: '#A0521263' + id: DirtLight + decals: + 1941: 19,7 + 2094: 25,-15 + - node: + cleanable: True + color: '#FF0000B7' + id: DirtLight + decals: + 1970: 20,6 + - node: + cleanable: True + color: '#FF0000FF' + id: DirtLight + decals: + 1325: -50,-15 + - node: + cleanable: True + color: '#FFFCFFFF' + id: DirtLight + decals: + 2167: -12,-79 + 2168: -11,-78 + 2169: -8,-74 + 2170: -7,-78 + 2171: -8,-79 + 2172: -13,-76 + 2173: -18,-77 + 2174: -14,-73 + 2175: -17,-72 + 2176: -20,-78 + 2177: -22,-78 + 2178: -26,-75 + 2179: -22,-82 + 2180: -16,-82 + 2181: -11,-86 + 2182: -15,-88 + 2183: -20,-79 + 2184: -28,-80 + 2185: -17,-68 + 2186: -17,-65 + 2187: -17,-69 + 2188: -16,-73 + 2233: -17,-46 + 2234: -16,-42 + 2235: -12,-46 + 2236: -20,-46 + 2237: -17,-37 + 2238: -13,-40 + 2239: -21,-36 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 68: -28,11 + 69: -28,12 + 71: -29,11 + 515: 32,-16 + 516: 34,-17 + 519: 33,-16 + 520: 26,-13 + 845: 33,-12 + 846: 32,-13 + 847: 29,-9 + 848: 29,-11 + 849: 29,-12 + 850: 31,-12 + 851: 29,-12 + 852: 30,-11 + 853: 31,-10 + 854: 30,-9 + 855: 30,-9 + 856: 30,-10 + 857: 31,-10 + 858: 31,-9 + 859: 30,-9 + 860: 30,-10 + 861: 29,-9 + 878: 35,-9 + 879: 34,-9 + 880: 31,-9 + 881: 30,-9 + 882: 35,-7 + 883: 32,-7 + 884: 31,-5 + 885: 32,-4 + 886: 29,-4 + 887: 29,-6 + 888: 29,-7 + 889: 33,-4 + 890: 34,-4 + 891: 30,-4 + 892: 29,-5 + 1160: 41,8 + 1161: 39,9 + 1162: 39,13 + 1163: 39,13 + 1164: 36,17 + 1165: 34,19 + 1166: 32,21 + 1167: 34,24 + 1168: 30,22 + 1169: 32,23 + 1170: 44,13 + 1171: 44,12 + 1172: 44,11 + 1173: 54,11 + 1174: 50,6 + 1175: 52,6 + 1176: 55,6 + 1177: 56,8 + 1178: 59,11 + 1179: 55,16 + 1180: 54,14 + 1181: 54,16 + 1182: 45,13 + 1183: 41,13 + 1184: 42,13 + 1185: 36,9 + 1186: 42,16 + 1187: 29,10 + 1188: 36,8 + 1189: 21,6 + 1190: 29,6 + 1191: 14,0 + 1192: 17,-4 + 1193: 22,-2 + 1194: 9,-6 + 1195: 12,-10 + 1196: 16,-8 + 1197: 7,-12 + 1198: 1,-10 + 1199: 6,-20 + 1200: -1,-15 + 1201: -3,-21 + 1202: 11,-19 + 1203: 7,-23 + 1204: 1,-23 + 1205: -1,-30 + 1206: 7,-31 + 1207: -2,-32 + 1208: 0,-42 + 1209: -1,-36 + 1210: -15,-41 + 1211: -18,-36 + 1212: -8,-43 + 1213: -25,-39 + 1214: -18,-44 + 1215: -18,-35 + 1216: -15,-38 + 1217: -25,-31 + 1218: -12,-29 + 1219: -24,-28 + 1220: -35,-22 + 1221: -20,-20 + 1222: -26,-27 + 1223: -28,-20 + 1224: -36,-18 + 1225: -33,-8 + 1226: -29,-16 + 1227: -45,-10 + 1228: -43,-1 + 1229: -36,-8 + 1230: -42,-1 + 1231: -45,2 + 1232: -54,2 + 1233: -42,7 + 1234: -45,21 + 1235: -46,27 + 1236: -38,33 + 1237: -50,36 + 1238: -38,46 + 1239: -36,45 + 1240: -36,44 + 1241: -42,50 + 1242: -44,51 + 1243: -40,57 + 1244: -39,57 + 1245: -46,57 + 1246: -41,60 + 1247: -47,61 + 1248: -44,65 + 1249: -39,65 + 1276: -59,-7 + 1277: -61,-8 + 1278: -58,-3 + 1279: -59,-3 + 1280: -59,-1 + 1281: -59,0 + 1282: -58,-1 + 1283: -59,0 + 1284: -60,0 + 1285: -60,1 + 1286: -59,1 + 1292: -15,35 + 1293: -15,38 + 1294: -4,38 + 1295: -5,38 + 1426: 40,-4 + 1427: 39,1 + 1428: 33,1 + 1429: 34,3 + 1433: 14,-4 + 1434: 11,-5 + 1438: 10,15 + 1439: 23,10 + 1444: 22,22 + 1450: 23,25 + 1451: 17,25 + 1472: -6,-6 + 1475: -7,-10 + 1482: -24,1 + 1486: -25,-5 + 1498: -12,17 + 1506: -7,10 + 1507: -9,9 + 1508: -8,9 + 1513: -22,5 + 1514: -18,6 + 1515: -18,5 + 1516: -21,6 + 1521: 9,-16 + 1522: 9,-14 + 1523: 21,-13 + 1524: 20,-14 + 1525: 28,-19 + 1526: 38,-24 + 1527: 40,-19 + 1528: 37,-16 + 1529: 40,-11 + 1530: 37,-4 + 1531: 37,0 + 1532: 33,1 + 1533: 32,12 + 1534: 31,13 + 1535: 30,13 + 1555: 27,11 + 1557: 7,-11 + 1558: 8,-12 + 1559: 8,-13 + 1560: 8,-11 + 1561: 2,-6 + 1562: 4,-6 + 1563: 1,-7 + 1564: 3,-6 + 1565: 1,-2 + 1566: 1,-1 + 1567: -1,3 + 1568: -4,1 + 1569: -9,0 + 1570: -12,0 + 1571: -16,0 + 1572: -17,-2 + 1573: -18,-3 + 1574: -18,-6 + 1575: -18,-10 + 1576: -18,-12 + 1577: -17,-14 + 1578: -22,-13 + 1579: -22,-13 + 1580: -22,-15 + 1581: -30,-11 + 1582: -32,-9 + 1583: -34,-9 + 1584: -36,-10 + 1585: -37,-10 + 1586: -41,-10 + 1587: -43,-10 + 1588: -45,-10 + 1589: -38,-12 + 1590: -38,-12 + 1591: -38,-14 + 1592: -38,-14 + 1593: -41,-15 + 1594: -45,-11 + 1595: -49,-9 + 1596: -50,-10 + 1597: -51,-15 + 1598: -53,-14 + 1599: -50,-15 + 1600: -53,-13 + 1601: -56,-12 + 1602: -57,-10 + 1603: -55,-9 + 1604: -55,-8 + 1605: -56,-8 + 1606: -55,-9 + 1638: -51,15 + 1639: -51,14 + 1640: -49,13 + 1641: -48,13 + 1642: -47,13 + 1643: -47,16 + 1644: -47,19 + 1645: -48,21 + 1646: -47,23 + 1647: -50,23 + 1648: -50,22 + 1649: -42,13 + 1650: -43,12 + 1651: -43,10 + 1652: -42,11 + 1653: -42,14 + 1654: -42,18 + 1655: -43,19 + 1656: -43,21 + 1657: -43,22 + 1658: -42,22 + 1659: -41,19 + 1660: -41,17 + 1661: -41,16 + 1662: -41,14 + 1663: -41,13 + 1664: -40,27 + 1665: -39,26 + 1666: -39,29 + 1667: -35,27 + 1668: -39,26 + 1669: -40,26 + 1670: -41,33 + 1671: -45,33 + 1672: -48,33 + 1673: -49,34 + 1674: -51,34 + 1675: -51,33 + 1676: -50,39 + 1677: -49,40 + 1678: -48,40 + 1679: -48,40 + 1680: -36,37 + 1681: -37,37 + 1682: -37,37 + 1683: -37,36 + 1684: -37,36 + 1685: -36,36 + 1686: -37,34 + 1687: -37,32 + 1688: -32,25 + 1689: -33,25 + 1690: -33,25 + 1706: -14,27 + 1707: -20,25 + 1708: -14,26 + 1709: -23,25 + 1710: -24,22 + 1711: -23,31 + 1712: -25,31 + 1713: -25,29 + 1715: -23,36 + 1716: -24,33 + 1717: -24,22 + 1718: -24,16 + 1719: -24,15 + 1720: -24,14 + 1721: -26,11 + 1722: -26,11 + 1723: -26,8 + 1728: -10,5 + 1729: -16,4 + 1730: -14,3 + 1731: -14,6 + 1732: -14,6 + 1733: -15,-1 + 1744: 30,-20 + 1745: 28,-20 + 1746: 28,-19 + 1747: 25,-8 + 1748: 25,-8 + 1749: 25,-6 + 1750: 24,-8 + 1751: 24,-6 + 1752: 24,-3 + 1753: 24,-3 + 1754: 26,-6 + 1755: 22,7 + 1756: 14,7 + 1757: 13,8 + 1758: 11,8 + 1759: 12,10 + 1760: 12,10 + 1761: 10,10 + 1762: 10,12 + 1763: 8,11 + 1764: 7,9 + 1765: 6,7 + 1816: -3,-28 + 1817: -5,-28 + 1818: -5,-23 + 1819: -5,-27 + 1820: -3,-29 + 1821: -2,-28 + 1822: 0,-24 + 1823: -1,-23 + 1824: 1,-24 + 2526: 12,-23 + 2527: 9,-20 + 2544: 20,-28 + 2545: 17,-26 + 2546: 16,-31 + 2547: 12,-14 + 2548: 9,-14 + 2549: 4,-14 + 2550: 14,-22 + 2574: -46,-16 + 2607: 11,-43 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 72: -29,12 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 1991: -17,26 + - node: + cleanable: True + color: '#5D2C00D3' + id: DirtMedium + decals: + 1847: -35,7 + 1848: -38,5 + 1849: -42,5 + 1850: -41,10 + 1851: -44,13 + 1852: -41,17 + 1853: -51,11 + - node: + cleanable: True + color: '#8354329E' + id: DirtMedium + decals: + 2262: 25,-15 + - node: + cleanable: True + color: '#835432FF' + id: DirtMedium + decals: + 2257: 27,-16 + 2259: 28,-17 + - node: + cleanable: True + color: '#FF0000FF' + id: DirtMedium + decals: + 1324: -57,-10 + - node: + cleanable: True + color: '#FFFFFFF7' + id: DirtMedium + decals: + 1342: -33,0 + 1343: -34,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 70: -29,9 + 517: 33,-15 + 518: 34,-16 + 559: 34,-16 + 844: 34,-12 + 862: 31,-11 + 863: 31,-10 + 864: 29,-11 + 865: 28,-10 + 866: 28,-12 + 893: 33,-4 + 894: 33,-4 + 895: 34,-5 + 896: 31,-7 + 897: 30,-7 + 898: 28,-7 + 899: 29,-5 + 900: 30,-3 + 901: 29,-5 + 902: 35,-6 + 903: 36,-6 + 1040: 21,-16 + 1112: -18,-19 + 1113: -15,-13 + 1114: -18,-9 + 1115: -17,-3 + 1116: -19,0 + 1117: -5,5 + 1118: -1,25 + 1119: 1,26 + 1120: 2,26 + 1121: 5,29 + 1122: 6,29 + 1123: 9,30 + 1124: 14,30 + 1125: 18,28 + 1126: 20,28 + 1127: 23,28 + 1128: 26,28 + 1129: 29,28 + 1130: 30,27 + 1131: 31,25 + 1132: 31,24 + 1133: 32,22 + 1134: 34,20 + 1135: 33,18 + 1136: 34,18 + 1137: 36,17 + 1138: 37,16 + 1139: 38,15 + 1140: 40,15 + 1141: 40,14 + 1142: 40,13 + 1143: 41,10 + 1144: 40,9 + 1145: 42,7 + 1146: 41,7 + 1147: 41,7 + 1148: 41,6 + 1149: 40,6 + 1150: 40,6 + 1151: 41,6 + 1152: 41,4 + 1153: 41,4 + 1154: 39,5 + 1155: 39,6 + 1156: 39,7 + 1157: 39,7 + 1158: 39,9 + 1159: 39,8 + 1263: -56,-17 + 1264: -57,-17 + 1265: -57,-18 + 1296: -13,38 + 1297: -13,39 + 1300: -25,10 + 1301: -26,6 + 1302: -25,1 + 1303: -16,2 + 1304: -8,6 + 1305: -11,10 + 1306: -14,10 + 1307: -19,11 + 1308: -19,10 + 1309: -13,15 + 1310: -15,14 + 1311: -14,15 + 1312: -14,14 + 1313: -13,14 + 1396: -54,-5 + 1397: -54,-3 + 1398: -50,-3 + 1414: -55,-10 + 1415: -57,-5 + 1422: 38,-22 + 1423: 39,-17 + 1424: 38,-11 + 1425: 40,-9 + 1440: 23,19 + 1443: 25,19 + 1447: 22,21 + 1448: 20,24 + 1449: 20,26 + 1455: 13,21 + 1456: 10,21 + 1457: 12,14 + 1465: 6,-8 + 1466: 6,-6 + 1467: 6,-7 + 1468: -2,-1 + 1471: -6,-4 + 1487: -22,-5 + 1502: -10,10 + 1503: -8,12 + 1504: -7,10 + 1505: -7,10 + 1536: 37,12 + 1537: 30,12 + 1538: 31,12 + 1539: 30,12 + 1540: 26,11 + 1541: 26,14 + 1542: 26,16 + 1543: 22,15 + 1544: 22,18 + 1545: 22,12 + 1546: 17,16 + 1547: 13,16 + 1548: 10,12 + 1549: 8,9 + 1550: 13,19 + 1551: 12,22 + 1552: 13,25 + 1553: 9,25 + 1554: 10,25 + 1740: 40,-10 + 1866: 34,-15 + 1867: 33,-17 + 1868: 25,-5 + 1869: 26,-4 + 2524: -12,-23 + 2528: 12,-28 + 2648: -5,-48 + 2649: -4,-47 + 2650: 1,-46 + 2651: -1,-46 + 2652: -3,-48 + 2653: -3,-40 + 2654: 1,-43 + 2655: -3,-39 + 2656: -6,-40 + 2657: -7,-40 + 2658: -8,-40 + 2659: -6,-38 + 2660: -3,-39 + 2661: 1,-43 + 2662: 1,-39 + 2663: 0,-38 + 2664: -3,-42 + 2665: 2,-44 + 2666: -1,-47 + 2667: -3,-48 + 2668: 0,-50 + 2669: -3,-51 + 2670: -3,-51 + 2671: -4,-50 + 2672: -6,-50 + 2673: -8,-49 + 2674: -9,-48 + 2675: -8,-49 + 2676: -8,-51 + 2677: -8,-52 + 2678: -8,-52 + 2679: 0,-52 + 2680: 1,-51 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 962: -28,24 + 963: -17,32 + 1345: -4,39 + - node: + cleanable: True + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 2289: -20,4 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 915: -2,-3 + 1344: -16,39 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 971: 15,2 + 972: 37,-11 + 973: 33,-19 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 978: 34,-19 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 917: 2,2 + 965: -18,27 + 977: 34,-19 + 2098: -15.033748,27.036722 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 918: 2,3 + 979: 34,-19 + 980: 37,-13 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 974: 34,-23 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 911: -2,-2 + 2097: -16.064997,26.932484 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 964: -17,27 + 975: 34,-23 + 976: 33,-23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 2290: -19,4 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 640: 11,8 + 641: 10,8 + 642: 10,7 + 659: 23,6 + 660: 19,8 + 661: 20,8 + 662: 21,8 + 663: 23,8 + 664: 17,6 + 665: 17,8 + 666: 20,6 + 667: 19,6 + 668: 21,6 + 669: 20,7 + 676: 11,7 + 785: 24,24 + 786: 25,24 + 787: 25,25 + 788: 24,25 + 789: 24,26 + 790: 25,26 + 2291: 26,24 + 2292: 26,26 + 2293: 26,25 + - node: + cleanable: True + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 1326: -31,-1 + 1327: -34,-1 + 1328: -33,-1 + 1329: -31,0 + 1330: -34,0 + 1331: -33,0 + 1332: -34,1 + 1333: -33,1 + 1334: -31,1 + 1335: -31,2 + 1336: -33,2 + 1337: -34,2 + 1338: -34,3 + 1339: -33,3 + 1340: -31,3 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 763: 27,16 + 764: 27,15 + 765: 28,15 + 766: 28,16 + 767: 27,13 + 768: 28,13 + 769: 28,14 + 770: 27,14 + - node: + color: '#D381C996' + id: FullTileOverlayGreyscale + decals: + 1018: -40,28 + 1019: -40,27 + 1020: -40,26 + - node: + color: '#EFB34196' + id: FullTileOverlayGreyscale + decals: + 2127: -26,-80 + 2128: -25,-80 + 2129: -25,-74 + 2130: -26,-74 + 2131: -31,-77 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 1365: -62.547764,-5.606035 + 1418: -50,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassa4 + decals: + 2283: -19,3 + 2284: -21,4 + 2285: -22,3 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 1357: -61.648212,-5.625451 + 1358: -60.616962,-5.625451 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 1351: -61.632587,-7.500451 + 1352: -59.273212,-9.375451 + 1356: -60.866962,-6.812951 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 1374: -62.77488,-9.999852 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Grassd2 + decals: + 2286: -21,3 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 1359: -60.788837,-9.828576 + 1360: -61.304462,-10.078576 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 1353: -61.663837,-9.953576 + 1354: -59.320087,-7.359826 + 1355: -59.523212,-6.828576 + 1366: -63.25089,-6.387285 + 1367: -63.266514,-5.68416 + 1368: -62.735264,-6.262285 + 1369: -63.28214,-7.387285 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 1361: -58.820087,-10.078576 + 1362: -58.773212,-9.578576 + 1363: -58.429462,-9.406701 + 1364: -58.570087,-8.687951 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN + decals: + 2378: -47,-17 + 2379: -48,-17 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 466: -7,27 + 467: -5,27 + 468: -6,27 + 469: -4,27 + 470: -3,27 + 471: -6,31 + 472: -5,31 + 1714: -4,31 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 2332: 12,2 + 2333: 13,2 + 2491: 17,1 + 2492: 19,1 + 2493: 21,1 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 2307: -23,1 + 2308: -13,1 + 2314: -11,1 + 2315: -9,1 + 2316: -7,1 + 2326: -19,1 + 2327: -17,1 + 2328: -15,1 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale + decals: + 2445: 13,-13 + 2467: 15,-25 + 2468: 16,-25 + 2469: 17,-25 + 2481: 5,-3 + 2482: 6,-3 + 2483: 7,-3 + 2484: 8,-3 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 2488: 27,2 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 2506: -14,-24 + 2507: -13,-24 + 2508: -12,-24 + 2509: -11,-24 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 463: -6,29 + 464: -5,29 + 465: -4,29 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 2405: 14,-2 + 2406: 11,-2 + 2438: 6,-14 + 2439: 4,-14 + 2440: 3,-14 + 2442: 7,-14 + 2450: 13,-11 + 2461: 15,-33 + 2462: 16,-33 + 2463: 17,-33 + 2464: 19,-33 + 2465: 20,-33 + 2466: 21,-33 + 2471: 7,-8 + 2472: 6,-8 + 2473: 5,-8 + 2474: 4,-8 + 2475: 3,-8 + 2476: 2,-8 + 2480: 8,-8 + 2616: 5,-1 + 2617: 7,-1 + 2618: 9,-1 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 184: -20,-1 + 189: -24,-1 + 190: -23,-1 + 191: -25,-1 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 283: -3,-29 + 284: -4,-29 + 285: -2,-29 + 286: 0,-29 + 287: -1,-29 + 288: 1,-29 + 289: 3,-29 + 290: 4,-29 + 291: 5,-29 + 1832: 2,-29 + 2495: -15,-20 + 2496: -14,-20 + 2497: -13,-20 + 2498: -12,-20 + 2510: -14,-23 + 2511: -13,-23 + 2512: -12,-23 + 2513: -11,-23 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 + decals: + 476: -21,35 + 1724: -21,33 + 1725: -21,34 + 2612: 23,-5 + 2613: 23,-4 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 2248: 24,-16 + 2249: 24,-15 + 2250: 24,-14 + 2251: 24,-13 + 2252: 24,-12 + 2317: -6,2 + 2318: -6,4 + 2319: -5,8 + 2320: -5,10 + 2321: -5,12 + 2322: -5,14 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 2478: 1,-7 + 2479: 1,-6 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 484: -25,27 + 485: -25,28 + 491: -25,31 + 492: -25,30 + 493: -25,25 + 494: -25,24 + 2132: -18,-79 + 2133: -18,-78 + 2134: -18,-76 + 2135: -18,-75 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 175: -19,-10 + 176: -19,-9 + 177: -19,-8 + 181: -19,-6 + 182: -19,-2 + 195: -19,-3 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 279: -5,-25 + 280: -5,-26 + 281: -5,-27 + 282: -5,-28 + 359: -5,-20 + 360: -5,-19 + 361: -5,-17 + 362: -5,-18 + 2121: -30,-76 + 2122: -30,-75 + 2123: -30,-74 + 2124: -30,-78 + 2125: -30,-79 + 2126: -30,-80 + 2514: -15,-22 + 2515: -15,-25 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 473: -20,34 + 474: -20,35 + 475: -20,33 + 477: -23,33 + 478: -23,34 + 479: -23,32 + 486: -23,35 + 487: -23,36 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 791: 23,21 + 792: 23,22 + 793: 23,23 + 794: 23,24 + 795: 23,25 + 796: 23,26 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 2309: -24,2 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 2424: 12,-25 + 2425: 12,-24 + 2426: 12,-23 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 2136: -15,-75 + 2137: -15,-76 + 2138: -15,-78 + 2139: -15,-79 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 355: -6,-31 + 356: -6,-32 + 357: -6,-33 + 358: -6,-34 + 363: -1,-19 + 364: -7,-17 + 365: -7,-18 + 366: -7,-19 + 367: -7,-20 + 368: -7,-21 + 369: -7,-22 + 370: -7,-23 + 371: -7,-25 + 372: -7,-27 + 373: -7,-28 + 374: -7,-29 + 981: -7,-16 + 2113: -27,-78 + 2114: -27,-79 + 2115: -27,-80 + 2116: -27,-81 + 2117: -27,-76 + 2118: -27,-75 + 2119: -27,-74 + 2120: -27,-73 + 2499: -11,-19 + 2500: -11,-18 + 2501: -11,-17 + 2502: -11,-16 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 2340: 22,-32 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 2369: 18,-31 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 88: 17,-1 + - node: + color: '#EFB34196' + id: MiniTileWhiteCornerNw + decals: + 274: -15,-16 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerNe + decals: + 498: -45,26 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerNw + decals: + 277: -13,-16 + 278: -15,-18 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerSe + decals: + 497: -45,29 + - node: + color: '#D381C996' + id: MiniTileWhiteLineE + decals: + 495: -45,27 + 496: -45,28 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineN + decals: + 276: -14,-16 + - node: + color: '#D381C996' + id: MiniTileWhiteLineW + decals: + 482: -25,21 + 483: -25,22 + - node: + color: '#EFB34196' + id: MiniTileWhiteLineW + decals: + 275: -15,-17 + - node: + color: '#FFFFFFFF' + id: OldConcreteTrimLineN + decals: + 2586: -46,-17 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 569: -50,39 + 570: -50,40 + 571: -50,41 + 572: -33,-13 + 573: -33,-14 + 574: -33,-15 + 575: -33,-15 + 576: -33,-16 + 595: -4,-32 + 596: -4,-34 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 825: 8,17 + 826: 8,18 + 827: 8,22 + 828: 8,21 + 829: 8,20 + 830: 8,19 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 1029: 17,-5 + 1030: 17,-4 + 2313: -6,1 + 2324: -6,6 + - node: + color: '#9FED58FF' + id: QuarterTileOverlayGreyscale + decals: + 1031: 17,-5 + 1032: 17,-4 + 1033: 17,-6 + 1034: 17,-7 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 2446: 14,-13 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 2311: -19,-4 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 480: -3,27 + 566: -47,40 + 567: -47,41 + 568: -47,39 + 577: -31,-16 + 578: -31,-13 + 587: -31,-15 + 588: -31,-14 + 597: -2,-34 + 598: -2,-32 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 820: 10,18 + 821: 10,19 + 822: 10,20 + 823: 10,21 + 824: 10,22 + - node: + color: '#9FED58FF' + id: QuarterTileOverlayGreyscale180 + decals: + 1035: 21,-5 + 1036: 21,-4 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 2428: 12,-27 + 2429: 12,-22 + 2441: 7,-12 + 2444: 8,-11 + 2448: 12,-11 + 2620: 15,-1 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 481: -7,27 + 831: 8,19 + 832: 8,20 + 833: 8,21 + 834: 8,22 + 835: 8,18 + 836: 8,17 + 2614: 23,-3 + - node: + color: '#334E6DFF' + id: QuarterTileOverlayGreyscale270 + decals: + 1023: 17,-7 + 1024: 17,-6 + 1025: 17,-5 + 1026: 17,-4 + - node: + color: '#9C0000FF' + id: QuarterTileOverlayGreyscale270 + decals: + 579: -33,-15 + 580: -33,-16 + 581: -33,-14 + 582: -33,-13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale270 + decals: + 2325: -6,5 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 2449: 14,-11 + 2619: 10,-1 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 560: -50,40 + 561: -50,41 + 562: -50,39 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 187: -19,-1 + 2312: -19,-5 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 593: -4,-32 + 594: -4,-34 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 488: -23,31 + 837: 10,18 + 838: 10,19 + 839: 10,20 + 840: 10,21 + 841: 10,22 + - node: + color: '#334E6DFF' + id: QuarterTileOverlayGreyscale90 + decals: + 1027: 21,-5 + 1028: 21,-4 + - node: + color: '#9C0000FF' + id: QuarterTileOverlayGreyscale90 + decals: + 583: -31,-14 + 584: -31,-13 + 585: -31,-15 + 586: -31,-16 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 2310: -24,1 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 2427: 12,-26 + 2443: 7,-13 + 2447: 12,-13 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 563: -47,41 + 564: -47,40 + 565: -47,39 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 376: -7,-30 + 591: -2,-32 + 592: -2,-34 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 1370: -61.96964,-10.30916 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 1371: -62.90714,-5.93416 + - node: + color: '#FFFFFFFF' + id: Rust + decals: + 1416: -59,-5 + 1417: -58,-5 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 78: 31,-21 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 79: 32,-21 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 80: 33,-21 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 81: 34,-21 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 82: 35,-21 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 84: 36,-21 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 83: 37,-21 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 236: -38,-11 + 237: -39,-11 + 1393: -52,-10 + 1394: -52,-9 + 2295: 25,24 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 2296: 26,25 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 2297: 25,26 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 2298: 24,25 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2330: 11,2 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2323: -6,7 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2489: 25,2 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 2505: -15,-24 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2404: 15,-2 + 2431: 12,-28 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 2503: -11,-20 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 2403: 10,-2 + 2477: 1,-8 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 2504: -15,-23 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2331: 14,2 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2430: 12,-20 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 2490: 28,2 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 375: -6,-30 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 51: -4,-25 + 52: -3,-25 + 2294: 25,25 + 2554: -13,-25 + - node: + color: '#D381C9FF' + id: WarnCornerGreyscaleNW + decals: + 2150: -11,-75 + 2157: -12,-76 + - node: + color: '#D381C9FF' + id: WarnCornerGreyscaleSW + decals: + 2149: -11,-79 + 2158: -12,-78 + - node: + color: '#D381C9FF' + id: WarnCornerSmallGreyscaleNE + decals: + 2163: -10,-75 + - node: + color: '#D381C9FF' + id: WarnCornerSmallGreyscaleNW + decals: + 2164: -10,-75 + 2165: -6,-75 + - node: + color: '#D381C9FF' + id: WarnCornerSmallGreyscaleSE + decals: + 2162: -10,-79 + - node: + color: '#D381C9FF' + id: WarnCornerSmallGreyscaleSW + decals: + 2159: -11,-78 + 2160: -10,-79 + 2161: -6,-79 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 1002: -3,-18 + 2517: -11,-22 + - node: + color: '#D381C9FF' + id: WarnEndGreyscaleN + decals: + 2144: -6,-74 + 2145: -10,-74 + - node: + color: '#D381C9FF' + id: WarnEndGreyscaleS + decals: + 2146: -10,-80 + 2147: -6,-80 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnEndN + decals: + 2348: 15,-11 + 2364: 22,-33 + 2370: 18,-32 + 2590: 15,-6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnEndS + decals: + 2349: 15,-9 + 2589: 15,-7 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 1001: -4,-18 + 2516: -13,-22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnFull + decals: + 2347: 15,-10 + 2350: 15,-13 + 2351: 15,-14 + 2352: 15,-15 + 2353: 14,-15 + 2354: 13,-15 + 2355: 12,-15 + 2356: 11,-18 + 2357: 11,-20 + 2358: 11,-21 + 2359: 11,-22 + 2360: 11,-23 + 2361: 11,-24 + 2362: 11,-25 + 2363: 11,-26 + 2365: 18,-35 + 2366: 22,-35 + 2371: 18,-33 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 2380: -42,41 + - node: + color: '#D381C9FF' + id: WarnLineGreyscaleE + decals: + 2141: -6,-78 + 2142: -6,-77 + 2143: -6,-76 + 2148: -6,-79 + 2166: -6,-75 + - node: + color: '#D381C9FF' + id: WarnLineGreyscaleN + decals: + 2151: -9,-75 + 2152: -8,-75 + 2153: -7,-75 + - node: + color: '#D381C9FF' + id: WarnLineGreyscaleS + decals: + 2154: -9,-79 + 2155: -8,-79 + 2156: -7,-79 + - node: + color: '#D381C9FF' + id: WarnLineGreyscaleW + decals: + 2140: -12,-77 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 2519: -12,-22 + 2555: -48,-16 + 2556: -47,-16 + 2557: -46,-16 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 2381: -43,41 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 1382: 7,-40 + 1383: 6,-40 + 1384: 5,-40 + 2518: -12,-22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 2593: 27,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 817: 19,-6 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 38: -9,-10 + 40: -7,-8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 42: -4,-8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 39: -7,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 45: -7,-8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 2604: 9,-35 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 2603: 9,-30 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 46: -7,-7 + 55: 11,-30 + 56: 11,-31 + 57: 11,-32 + 58: 11,-33 + 411: -1,37 + 412: -1,38 + 413: -1,39 + 414: -1,40 + 611: -58,-4 + 612: -58,-3 + 613: -58,-2 + 614: -58,-2 + 615: -58,-1 + 616: -58,0 + 617: -58,1 + 618: -58,2 + 1372: -61.84464,-9.074785 + 1373: -62.988163,-9.100406 + 2594: 27,4 + 2595: 11,-35 + 2596: 11,-34 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 43: -5,-8 + 44: -6,-8 + 818: 20,-6 + 2591: 26,5 + 2592: 25,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 35: -8,-10 + 36: -7,-10 + 37: -4,-10 + 1346: 21.001646,-5.1484656 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1477: -6,-10 + 1478: -5,-10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 28: -9,-3 + 29: -9,-4 + 30: -9,-5 + 31: -9,-6 + 32: -9,-7 + 33: -9,-8 + 34: -9,-9 + 41: -7,-7 + 47: -14,20 + 48: -14,21 + 49: -14,22 + 50: -14,23 + 819: 19,-7 + 2599: 9,-34 + 2600: 9,-33 + 2601: 9,-32 + 2602: 9,-31 + - node: + color: '#FFFFFFFF' + id: bushsnowa3 + decals: + 922: 2,-3 + 923: -2,2 + 931: 37,-12 + 932: 37,-9 + - node: + angle: 0.8726646259971648 rad + color: '#FFFF0089' + id: end + decals: + 2584: -48,-19 + - node: + cleanable: True + angle: -0.8726646259971648 rad + color: '#00C83AFF' + id: peace + decals: + 2588: -46.181316,-17.267536 + - node: + color: '#EFB34196' + id: radiation + decals: + 294: -14,-33 + 295: -14,-35 + 296: -17,-29 + 297: -19,-29 + 298: -14,-41 + - node: + cleanable: True + color: '#FFFFFFFF' + id: skull + decals: + 2585: -46.264652,-18.779003 + - node: + color: '#FFFFFF93' + id: space + decals: + 299: -20,-47 + - node: + cleanable: True + color: '#0000008B' + id: splatter + decals: + 2578: -47.00404,-18.038906 + 2579: -47.00404,-18.038906 + 2580: -47.00404,-18.038906 + 2581: -46.733208,-18.247383 + 2582: -47.25404,-17.694916 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + -1,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 65535 + 2,-3: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 + 3,-2: + 0: 65535 + 3,-1: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 15 + 1: 65520 + -4,3: + 1: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 65535 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -3,4: + 0: 65535 + -3,5: + 0: 65535 + -2,4: + 0: 65535 + -2,5: + 0: 65535 + -1,4: + 0: 65535 + -1,5: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 65535 + 2,4: + 0: 65535 + 2,5: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + -8,-4: + 0: 65535 + -8,-3: + 0: 65535 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + -4,6: + 0: 65535 + -4,7: + 0: 65535 + -3,6: + 0: 65535 + -3,7: + 0: 65535 + -2,6: + 0: 65535 + -2,7: + 0: 65535 + -1,6: + 0: 65535 + -1,7: + 0: 65535 + 0,6: + 0: 65535 + 0,7: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 65535 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 5,-8: + 0: 65535 + 5,-7: + 0: 65535 + 6,-8: + 0: 65535 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 2,-8: + 0: 65535 + 2,-7: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -8,-8: + 0: 65535 + -8,-7: + 0: 65535 + -7,-8: + 0: 65535 + -7,-7: + 0: 65535 + -6,-8: + 0: 65535 + -6,-7: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -8,6: + 0: 65535 + -8,7: + 0: 65535 + -7,6: + 0: 65535 + -7,7: + 0: 65535 + -6,6: + 0: 65535 + -6,7: + 0: 65535 + -5,6: + 0: 65535 + -5,7: + 0: 65535 + -11,-4: + 0: 65535 + -11,-3: + 0: 65535 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 57343 + 2: 8192 + -10,-1: + 0: 65535 + -9,-4: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -11,0: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 65535 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,0: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -11,4: + 0: 65535 + -11,5: + 0: 65535 + -11,6: + 0: 65535 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 65535 + -9,7: + 0: 65535 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -9,-8: + 0: 65535 + -9,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 32639 + 8,6: + 0: 63479 + 8,7: + 0: 65535 + 7,-8: + 0: 65523 + 7,-7: + 0: 65535 + -12,-4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 65535 + -12,2: + 0: 65535 + -12,3: + 0: 65535 + -12,4: + 0: 65535 + -12,5: + 0: 65535 + -12,6: + 0: 65535 + -12,-6: + 0: 65535 + -12,-5: + 0: 65535 + 8,-8: + 0: 65520 + 8,-7: + 0: 65535 + 9,-8: + 0: 65520 + 9,-7: + 0: 65535 + 9,-6: + 0: 65535 + 9,-5: + 0: 65535 + 10,-8: + 0: 4368 + 10,-7: + 0: 4369 + 10,-6: + 0: 65535 + 10,-5: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 65535 + 9,-1: + 0: 65535 + 10,-4: + 0: 65535 + 10,-3: + 0: 65535 + 10,-2: + 0: 65535 + 10,-1: + 0: 65535 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,2: + 0: 65535 + 9,3: + 0: 65535 + 10,0: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 65535 + 10,3: + 0: 65535 + 9,4: + 0: 49151 + 10,4: + 0: 63 + -14,0: + 0: 40959 + -14,1: + 0: 49145 + -14,2: + 0: 61070 + -14,3: + 0: 52974 + -13,0: + 0: 65535 + -13,1: + 0: 65535 + -13,2: + 0: 65535 + -13,3: + 0: 65535 + -14,-4: + 0: 65535 + -14,-3: + 0: 65535 + -14,-2: + 0: 65535 + -14,-1: + 0: 65535 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 65535 + -14,-6: + 0: 57295 + -14,-5: + 0: 65533 + -13,-6: + 0: 65535 + -13,-5: + 0: 65535 + -14,4: + 0: 61132 + -14,5: + 0: 36590 + -14,6: + 0: 34952 + -13,4: + 0: 65535 + -13,5: + 0: 65535 + -13,6: + 0: 65535 + -6,-9: + 0: 65535 + -5,-9: + 0: 65535 + -4,-9: + 0: 65535 + -3,-9: + 0: 65535 + -2,-9: + 0: 65535 + -1,-9: + 0: 65535 + 0,-9: + 0: 65535 + 1,-9: + 0: 65535 + 2,-9: + 0: 65535 + 3,-9: + 0: 65535 + 4,-9: + 0: 65535 + 5,-9: + 0: 65535 + -12,-7: + 0: 65535 + -11,-7: + 0: 65535 + -10,-7: + 0: 65535 + -14,-7: + 0: 34952 + -13,-7: + 0: 65535 + -6,-10: + 0: 65535 + -5,-10: + 0: 65535 + -4,-10: + 0: 65535 + -3,-10: + 0: 65535 + -2,-10: + 0: 65535 + 3,-11: + 0: 65527 + 3,-10: + 0: 65535 + 4,-11: + 0: 65520 + 4,-10: + 0: 65535 + 5,-11: + 0: 65520 + 5,-10: + 0: 65535 + 6,-9: + 0: 65535 + 7,-9: + 0: 13111 + -12,7: + 0: 65535 + -11,7: + 0: 65535 + -11,-8: + 0: 53198 + -10,-8: + 0: 65535 + -16,0: + 0: 56799 + -16,1: + 0: 8181 + -16,2: + 0: 15 + -15,0: + 0: 65535 + -15,1: + 0: 65521 + -15,2: + 0: 1 + -16,-4: + 0: 40857 + -16,-3: + 0: 65529 + -16,-2: + 0: 65535 + -16,-1: + 0: 56797 + -15,-4: + 0: 65535 + -15,-3: + 0: 65535 + -15,-2: + 0: 65535 + -15,-1: + 0: 65535 + -16,-6: + 0: 62844 + -16,-5: + 0: 49058 + -15,-6: + 0: 24479 + -15,-5: + 0: 65525 + -14,7: + 0: 65416 + -13,7: + 0: 65535 + -8,-12: + 0: 65535 + -8,-11: + 0: 6641 + -8,-10: + 0: 5107 + -8,-9: + 0: 62453 + -7,-12: + 0: 49151 + -7,-11: + 0: 40441 + -7,-10: + 0: 39417 + -7,-9: + 0: 39421 + -6,-12: + 0: 65535 + -6,-11: + 0: 65535 + -5,-12: + 0: 65535 + -5,-11: + 0: 65535 + -4,-12: + 0: 65535 + -4,-11: + 0: 65535 + -3,-12: + 0: 65535 + -3,-11: + 0: 65535 + -2,-12: + 0: 65535 + -2,-11: + 0: 65535 + -1,-12: + 0: 65535 + -1,-11: + 0: 65535 + -1,-10: + 0: 65535 + 0,-12: + 0: 65535 + 0,-11: + 0: 65535 + 0,-10: + 0: 65535 + 1,-12: + 0: 61937 + 3: 14 + 4: 3584 + 1,-11: + 0: 65521 + 5: 14 + 1,-10: + 0: 65535 + 2,-12: + 0: 65535 + 2,-11: + 0: 65535 + 2,-10: + 0: 65535 + 3,-12: + 0: 16383 + 6,-11: + 0: 65520 + 6,-10: + 0: 4095 + 7,-11: + 0: 65296 + 7,-10: + 0: 53247 + -12,8: + 0: 65535 + -12,9: + 0: 65535 + -11,8: + 0: 65535 + -11,9: + 0: 65535 + -11,10: + 0: 65535 + -10,8: + 0: 65535 + -10,9: + 0: 65535 + -10,10: + 0: 65535 + -9,8: + 0: 65535 + -9,9: + 0: 65535 + -9,10: + 0: 65535 + -14,8: + 0: 65535 + -14,9: + 0: 65535 + -13,8: + 0: 65535 + -13,9: + 0: 65535 + -8,8: + 0: 65535 + -8,9: + 0: 65535 + -8,10: + 0: 61439 + -7,8: + 0: 65535 + -7,9: + 0: 65535 + -7,10: + 0: 65535 + -6,8: + 0: 65535 + -6,9: + 0: 65535 + -6,10: + 0: 65535 + -5,8: + 0: 65535 + -5,9: + 0: 65535 + -5,10: + 0: 65535 + -4,8: + 0: 65535 + -4,9: + 0: 65535 + -4,10: + 0: 65535 + -3,8: + 0: 65535 + -3,9: + 0: 65535 + -3,10: + 0: 65535 + -2,8: + 0: 65535 + -2,9: + 0: 65535 + -2,10: + 0: 65535 + -1,8: + 0: 65535 + -1,9: + 0: 65535 + -1,10: + 0: 65535 + 0,8: + 0: 65535 + 0,9: + 0: 65535 + 0,10: + 0: 63487 + 0,-14: + 0: 65522 + 3: 12 + 0,-13: + 0: 65535 + 1,-14: + 0: 65521 + 1,-13: + 0: 61937 + 3: 14 + 6: 3584 + 2,-14: + 0: 12848 + 2,-13: + 0: 62263 + -4,-16: + 0: 57241 + -4,-15: + 0: 49055 + -4,-14: + 0: 40891 + -4,-13: + 0: 64511 + -3,-13: + 0: 65263 + -2,-14: + 0: 64853 + -2,-13: + 0: 65535 + -1,-14: + 0: 63903 + -1,-13: + 0: 65535 + -8,-13: + 0: 65514 + -7,-13: + 0: 65514 + -6,-13: + 0: 65019 + -6,-16: + 0: 63903 + -6,-15: + 0: 64443 + -6,-14: + 0: 63897 + -5,-15: + 0: 52431 + -5,-13: + 0: 65532 + -5,-16: + 0: 52431 + -5,-14: + 0: 53196 + -11,-11: + 0: 61183 + -11,-10: + 0: 61422 + -11,-9: + 0: 65518 + -11,-12: + 0: 61132 + -10,-12: + 0: 16383 + -10,-11: + 0: 14331 + -10,-10: + 0: 13299 + -10,-9: + 0: 13303 + -9,-12: + 0: 65535 + -9,-11: + 0: 4597 + -9,-10: + 0: 7673 + -9,-9: + 0: 61937 + -11,-13: + 0: 49152 + -10,-13: + 0: 65216 + -9,-13: + 0: 65367 + -17,-4: + 0: 22004 + -17,-3: + 0: 56821 + -17,-2: + 0: 60079 + -17,-1: + 0: 11810 + -17,0: + 0: 19554 + -17,1: + 0: 52292 + -17,-5: + 0: 19592 + -17,-6: + 0: 32768 + -4,-17: + 0: 65521 + -3,-17: + 0: 63486 + -2,-17: + 0: 63999 + -1,-18: + 0: 61713 + -1,-17: + 0: 44991 + -8,-20: + 0: 65535 + -8,-19: + 0: 65535 + -8,-18: + 0: 63630 + -7,-18: + 0: 61455 + -6,-18: + 0: 29775 + -6,-17: + 0: 65527 + -5,-18: + 0: 61183 + -5,-17: + 0: 65534 + -10,-20: + 0: 65535 + -10,-19: + 0: 65535 + -9,-20: + 0: 63889 + -9,-19: + 0: 4505 + -9,-18: + 0: 61713 + 0,-22: + 0: 65520 + 0,-21: + 0: 61166 + 0,-18: + 0: 65262 + 0,-20: + 0: 65262 + 0,-19: + 0: 61166 + -4,-22: + 0: 28959 + -3,-22: + 0: 12015 + -2,-22: + 0: 4095 + -1,-22: + 0: 65527 + -9,-22: + 0: 65520 + -9,-21: + 0: 4369 + -8,-22: + 0: 65520 + -7,-22: + 0: 65520 + -6,-22: + 0: 30591 + -5,-22: + 0: 60623 + 0,-16: + 0: 60330 + 0,-15: + 0: 8754 + 1,-16: + 0: 4096 + 1,-15: + 0: 4369 + -3,-16: + 0: 20379 + -3,-15: + 0: 17524 + -3,-14: + 0: 58100 + -2,-16: + 0: 8089 + -2,-15: + 0: 22001 + -1,-16: + 0: 40874 + -1,-15: + 0: 39321 + -8,-16: + 0: 43946 + -8,-15: + 0: 43946 + -8,-14: + 0: 47787 + -7,-16: + 0: 24551 + -7,-15: + 0: 61583 + -9,-16: + 0: 61405 + -9,-14: + 0: 54623 + -9,-15: + 0: 61038 + -4,-20: + 0: 65535 + -4,-19: + 0: 65535 + -4,-18: + 0: 6143 + -3,-20: + 0: 65535 + -3,-19: + 0: 65535 + -3,-18: + 0: 8959 + -2,-20: + 0: 65535 + -2,-19: + 0: 65535 + -2,-18: + 0: 127 + -1,-20: + 0: 63347 + -1,-19: + 0: 13175 + -8,-17: + 0: 47615 + -7,-20: + 0: 65535 + -7,-19: + 0: 65535 + -7,-17: + 0: 57215 + -6,-20: + 0: 65535 + -6,-19: + 0: 65535 + -5,-20: + 0: 65535 + -5,-19: + 0: 65535 + -10,-18: + 0: 52428 + -10,-17: + 0: 204 + -9,-17: + 0: 65503 + 1,-21: + 0: 12288 + 0,-17: + 0: 43775 + 1,-19: + 0: 13107 + 1,-20: + 0: 13107 + -4,-23: + 0: 65280 + -4,-21: + 0: 65527 + -3,-23: + 0: 65280 + -3,-21: + 0: 65522 + -2,-21: + 0: 65392 + -1,-21: + 0: 12561 + -10,-21: + 0: 64716 + -10,-22: + 0: 52416 + -8,-21: + 0: 65160 + -7,-21: + 0: 65280 + -6,-23: + 0: 65280 + -6,-21: + 0: 65348 + -5,-23: + 0: 65280 + -5,-21: + 0: 65534 + -12,-8: + 0: 19592 + 11,2: + 0: 65535 + 11,3: + 0: 45055 + 9,5: + 0: 32671 + -7,-14: + 0: 11810 + -12,-9: + 0: 32768 + 12,2: + 0: 63884 + 12,3: + 0: 65419 + 12,0: + 0: 52224 + 12,1: + 0: 64767 + 13,0: + 0: 64768 + 13,1: + 0: 56799 + 13,2: + 0: 63631 + 13,3: + 0: 56824 + 14,0: + 0: 40704 + 14,1: + 0: 57309 + 14,2: + 0: 63741 + 14,3: + 0: 57288 + 15,0: + 0: 22272 + 15,1: + 0: 30039 + 15,2: + 0: 64709 + 15,3: + 0: 22012 + 12,4: + 0: 52476 + 12,5: + 0: 15 + 13,4: + 0: 40415 + 13,5: + 0: 15 + 14,4: + 0: 56797 + 14,5: + 0: 15 + 15,4: + 0: 21847 + 15,5: + 0: 7 + 11,1: + 0: 40847 + 9,6: + 0: 12917 + 11,4: + 0: 34959 + 11,5: + 0: 8 + -4,11: + 0: 20479 + -3,11: + 0: 24575 + -2,11: + 0: 48127 + 1,8: + 0: 64507 + 1,9: + 0: 30203 + 2,8: + 0: 249 + 3,8: + 0: 11838 + 16,2: + 0: 12848 + 16,3: + 0: 50 + 4,8: + 0: 3999 + 5,8: + 0: 255 + 6,8: + 0: 4031 + 7,8: + 0: 1908 + -16,7: + 0: 40704 + 3: 24576 + -15,7: + 0: 65280 + -12,10: + 0: 65535 + -12,11: + 0: 65535 + -11,11: + 0: 65535 + -10,11: + 0: 65535 + -9,11: + 0: 13119 + -16,8: + 0: 65535 + -16,9: + 0: 65439 + 3: 96 + -16,10: + 0: 231 + -15,8: + 0: 65535 + -15,9: + 0: 65535 + -15,10: + 0: 57309 + -15,11: + 0: 35047 + -14,10: + 0: 65535 + -14,11: + 0: 65501 + -13,10: + 0: 65535 + -13,11: + 0: 65535 + -8,11: + 0: 36523 + -7,11: + 0: 49151 + -6,11: + 0: 20479 + -5,11: + 0: 44859 + -1,11: + 0: 13044 + 0,11: + 0: 251 + 1,10: + 0: 4402 + -4,12: + 0: 246 + -3,12: + 0: 31 + -2,12: + 0: 47 + -7,12: + 0: 234 + -6,12: + 0: 63 + -5,12: + 0: 239 + -12,12: + 0: 56799 + -12,14: + 0: 8191 + -12,15: + 0: 20479 + -12,13: + 0: 17484 + -11,12: + 0: 65535 + -11,13: + 0: 16255 + -11,14: + 0: 12026 + -11,15: + 0: 60410 + -10,12: + 0: 49055 + -10,13: + 0: 44975 + -10,14: + 0: 16383 + -10,15: + 0: 4095 + -9,12: + 0: 15 + -9,13: + 0: 44800 + -9,14: + 0: 35835 + -9,15: + 0: 39931 + -15,12: + 0: 136 + -14,12: + 0: 65535 + -14,13: + 0: 34816 + -14,14: + 0: 34952 + -14,15: + 0: 34952 + -13,12: + 0: 65535 + -13,13: + 0: 36761 + -13,14: + 0: 3838 + -13,15: + 0: 36606 + -12,16: + 0: 45055 + -12,17: + 0: 2191 + -11,16: + 0: 44794 + -11,17: + 0: 4015 + -10,16: + 0: 12287 + -10,17: + 0: 15 + -9,16: + 0: 35835 + -9,17: + 0: 15 + -14,16: + 0: 34952 + -14,17: + 0: 8 + -13,16: + 0: 12030 + -13,17: + 0: 15 + -17,8: + 0: 20068 + -17,9: + 0: 50254 + -17,10: + 0: 8 + -17,7: + 0: 52736 + 2,9: + 0: 240 + 3,9: + 0: 50 + -8,12: + 0: 15 + 4,-12: + 0: 4095 + 5,-12: + 0: 883 + 3: 3212 + 3,-13: + 0: 51200 + 4,-13: + 0: 65392 + 3: 128 + 5,-13: + 0: 4096 + 3: 59184 + 6,-12: + 3: 305 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Edge +- proto: ActionToggleLight + entities: + - uid: 4 + components: + - type: Transform + parent: 3 + - type: InstantAction + container: 3 +- proto: AirAlarm + entities: + - uid: 5 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 10226 + - 7475 + - 7476 + - 7384 + - 7356 + - 7481 + - 7480 + - 10349 + - 10428 + - 10558 + - 10386 + - 10567 + - 10348 + - 10561 + - 10376 + - 10346 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 10426 + - 10309 + - 7450 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 7554 + - 7553 + - 10326 + - 10534 + - 7491 + - 7490 + - 7356 + - 10562 + - 10374 + - 10423 + - 10327 + - 10563 + - 10321 + - 7384 + - 7418 + - 7472 + - 7483 + - type: AtmosDevice + joinedGrid: 2 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 7560 + - 7561 + - 10227 + - 10412 + - 10406 + - 7363 + - 7364 + - 10582 + - type: AtmosDevice + joinedGrid: 2 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 7408 + - 7407 + - 7493 + - 7492 + - 7406 + - 7405 + - 10298 + - 7495 + - 10530 + - 7502 + - 7368 + - type: AtmosDevice + joinedGrid: 2 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 7534 + - 7535 + - 7367 + - 7461 + - 7398 + - 7404 + - 7409 + - 7410 + - 7524 + - 7523 + - 10232 + - 10526 + - 10286 + - 10484 + - 10476 + - 10283 + - type: AtmosDevice + joinedGrid: 2 + - uid: 11 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 7421 + - 7422 + - 10233 + - 10411 + - 10410 + - 10228 + - type: AtmosDevice + joinedGrid: 2 + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 7524 + - 10473 + - 10238 + - 7531 + - 7530 + - 7381 + - 7372 + - 7371 + - 10279 + - 10468 + - 10575 + - 10392 + - 10469 + - 10280 + - type: AtmosDevice + joinedGrid: 2 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 7509 + - 10539 + - 10335 + - 7510 + - type: AtmosDevice + joinedGrid: 2 + - uid: 14 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 7425 + - 7542 + - 10224 + - 7424 + - 7417 + - 10463 + - 7513 + - 10396 + - 10464 + - 7396 + - 7397 + - type: AtmosDevice + joinedGrid: 2 + - uid: 15 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 7504 + - 7503 + - 7484 + - 10243 + - 10565 + - 10330 + - 7498 + - 7478 + - 7477 + - 7501 + - 7500 + - 7427 + - 7428 + - 10578 + - type: AtmosDevice + joinedGrid: 2 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 7562 + - 7471 + - 7482 + - 7414 + - 7415 + - 7472 + - 7418 + - 7475 + - 7476 + - 7477 + - 7478 + - 7360 + - 10495 + - 10297 + - 10299 + - 10529 + - 10300 + - 10496 + - type: AtmosDevice + joinedGrid: 2 + - uid: 17 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 10521 + - 10274 + - 7444 + - 7443 + - 7436 + - 7437 + - 7442 + - type: AtmosDevice + joinedGrid: 2 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 7449 + - 7448 + - 10519 + - 10311 + - 10310 + - 10427 + - 10242 + - type: AtmosDevice + joinedGrid: 2 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 7495 + - 7496 + - 10550 + - 10339 + - 7369 + - 10537 + - 7497 + - 7499 + - 7494 + - type: AtmosDevice + joinedGrid: 2 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 7375 + - 7376 + - 10415 + - 10319 + - 7432 + - 7431 + - 7536 + - 7537 + - 7532 + - 7533 + - 7514 + - 7423 + - 10569 + - 10384 + - 10356 + - 434 + - type: AtmosDevice + joinedGrid: 2 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 10581 + - 10264 + - 7422 + - 7421 + - 10403 + - 10416 + - 7425 + - 7542 + - 7560 + - 7561 + - type: AtmosDevice + joinedGrid: 2 + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 7471 + - 7562 + - 7520 + - 7419 + - 7470 + - 7469 + - 10493 + - 10284 + - 10422 + - 10239 + - type: AtmosDevice + joinedGrid: 2 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 7495 + - 7496 + - 10550 + - 10339 + - 7369 + - type: AtmosDevice + joinedGrid: 2 + - uid: 24 + components: + - type: Transform + pos: -29.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 7502 + - 7407 + - 7408 + - 10320 + - 10528 + - 7501 + - 7500 + - 7365 + - type: AtmosDevice + joinedGrid: 2 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 10345 + - 10556 + - 10380 + - 7554 + - 7553 + - 7552 + - 7551 + - type: AtmosDevice + joinedGrid: 2 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 27 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 7463 + - 7462 + - 10505 + - 10301 + - 10502 + - 7439 + - 7438 + - 10504 + - 10365 + - 10527 + - 10377 + - type: AtmosDevice + joinedGrid: 2 + - uid: 28 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 10414 + - 10230 + - 7424 + - 7417 + - 7513 + - 7358 + - 7357 + - 10419 + - 10281 + - 7389 + - 7395 + - type: AtmosDevice + joinedGrid: 2 + - uid: 29 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 7552 + - 7551 + - 7480 + - 7481 + - 7490 + - 7491 + - 7378 + - 7493 + - 7492 + - type: AtmosDevice + joinedGrid: 2 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 7489 + - 7488 + - 7467 + - 7435 + - 7379 + - 10259 + - 10438 + - 10439 + - 10226 + - type: AtmosDevice + joinedGrid: 2 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 7463 + - 7462 + - 7366 + - 10501 + - 10391 + - 7464 + - 10362 + - 10487 + - 7391 + - 7394 + - type: AtmosDevice + joinedGrid: 2 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 7426 + - 7479 + - 7460 + - 7420 + - 7434 + - 7435 + - 7465 + - 7466 + - 7468 + - 7473 + - 7474 + - 10446 + - 10273 + - 10254 + - 10448 + - type: AtmosDevice + joinedGrid: 2 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 7525 + - 7526 + - 10287 + - 10483 + - 10418 + - 10368 + - 10467 + - 10225 + - 10288 + - 10466 + - type: AtmosDevice + joinedGrid: 2 + - uid: 34 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 7487 + - 7488 + - 7489 + - 10257 + - 10431 + - 10435 + - 10258 + - 10447 + - 10247 + - type: AtmosDevice + joinedGrid: 2 + - uid: 35 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 7459 + - 7458 + - 10285 + - 10478 + - 10477 + - 7460 + - 7534 + - 7535 + - type: AtmosDevice + joinedGrid: 2 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 7512 + - 10333 + - 10546 + - 7511 + - type: AtmosDevice + joinedGrid: 2 + - uid: 37 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 10383 + - 7514 + - 10437 + - 10436 + - 10250 + - 7528 + - 7529 + - 10246 + - 10434 + - 7359 + - type: AtmosDevice + joinedGrid: 2 + - uid: 38 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 39 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 7371 + - 7372 + - 7381 + - 10461 + - 10278 + - type: AtmosDevice + joinedGrid: 2 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 10551 + - 10337 + - 7506 + - 7505 + - 7504 + - 7503 + - 7413 + - 7403 + - 7402 + - 7557 + - 7519 + - 7518 + - 10382 + - type: AtmosDevice + joinedGrid: 2 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 10503 + - 10373 + - 10510 + - 10360 + - 10367 + - 10509 + - 10511 + - 10358 + - 10512 + - 10355 + - 10568 + - 10361 + - 7440 + - 7438 + - 7439 + - 7436 + - 7437 + - 7393 + - 7392 + - type: AtmosDevice + joinedGrid: 2 + - uid: 42 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 7458 + - 7459 + - 7456 + - 7457 + - 10479 + - 10289 + - 7357 + - type: AtmosDevice + joinedGrid: 2 + - uid: 43 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 10485 + - 10291 + - 7457 + - 7456 + - 7520 + - 7521 + - 7556 + - 7518 + - 7519 + - 7383 + - type: AtmosDevice + joinedGrid: 2 + - uid: 44 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 7445 + - 7446 + - 7447 + - 10312 + - 10515 + - 10306 + - 10514 + - 10516 + - 10305 + - 10313 + - 10520 + - 10513 + - 10314 + - 10307 + - 10517 + - 10308 + - type: AtmosDevice + joinedGrid: 2 + - uid: 45 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 10480 + - 7522 + - 7430 + - 7429 + - 7536 + - 7537 + - 7366 + - 7469 + - 7470 + - 10317 + - 10429 + - type: AtmosDevice + joinedGrid: 2 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 7375 + - 7376 + - 10415 + - 10319 + - 7432 + - 7431 + - 7536 + - 7537 + - 433 + - type: AtmosDevice + joinedGrid: 2 + - uid: 47 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 10251 + - 7528 + - 10441 + - 7529 + - 7540 + - 10440 + - 10245 + - type: AtmosDevice + joinedGrid: 2 + - uid: 48 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 10450 + - 7539 + - 7527 + - 10252 + - 10413 + - 10241 + - type: AtmosDevice + joinedGrid: 2 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 10500 + - 10371 + - 10498 + - 10366 + - 10497 + - 7521 + - 7522 + - 10372 + - 10499 + - type: AtmosDevice + joinedGrid: 2 + - uid: 50 + components: + - type: Transform + pos: -15.5,-73.5 + parent: 2 + - type: DeviceList + devices: + - 10399 + - 438 + - 436 + - 435 + - 437 + - 439 + - 7385 + - 7386 + - 7388 + - 7387 + - type: AtmosDevice + joinedGrid: 2 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 7525 + - 7526 + - 7555 + - 7461 + - 7530 + - 7531 + - 10572 + - 10235 + - 10474 + - 10282 + - 10579 + - 10404 + - 7410 + - 7409 + - 7398 + - 7404 + - type: AtmosDevice + joinedGrid: 2 + - uid: 52 + components: + - type: MetaData + name: burn chamber air alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 10583 + - type: AtmosDevice + joinedGrid: 2 + - uid: 53 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 10584 + - 10407 + - 10408 + - 10585 + - 7416 + - 7566 + - 7565 + - 7564 + - 7563 + - 7363 + - 441 + - 442 + - 7364 + - type: AtmosDevice + joinedGrid: 2 +- proto: AirCanister + entities: + - uid: 54 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 55 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 56 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 57 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 58 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 59 + components: + - type: Transform + pos: -14.5,-83.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 60 + components: + - type: Transform + pos: 18.9538,-25.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 62 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 63 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: Airlock + entities: + - uid: 64 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-15.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 71 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 +- proto: AirlockAtmosphericsGlass + entities: + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-38.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 75 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 81 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 +- proto: AirlockBoxerLocked + entities: + - uid: 428 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 98 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 +- proto: AirlockCargoGlass + entities: + - uid: 99 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 101 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 113 + components: + - type: Transform + pos: -34.5,36.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 115 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 117 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 119 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 120 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 +- proto: AirlockCommandGlass + entities: + - uid: 121 + components: + - type: Transform + pos: -24.5,37.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: -22.5,37.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 124 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: -21.5,35.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: -18.5,35.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 132 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,40.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,40.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 138 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 139 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 140 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 143 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,45.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 2 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 +- proto: AirlockEVAGlassLocked + entities: + - uid: 123 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 307 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 164 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 165 + - type: DeviceLinkSource + linkedPorts: + 165: + - DoorStatus: DoorBolt + - uid: 165 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 164 + - type: DeviceLinkSource + linkedPorts: + 164: + - DoorStatus: DoorBolt + - uid: 166 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 167 + - type: DeviceLinkSource + linkedPorts: + 167: + - DoorStatus: DoorBolt + - uid: 167 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 166 + - type: DeviceLinkSource + linkedPorts: + 166: + - DoorStatus: DoorBolt + - uid: 168 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 169 + - 170 + - type: DeviceLinkSource + linkedPorts: + 169: + - DoorStatus: DoorBolt + 170: + - DoorStatus: DoorBolt + - uid: 169 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 168 + - 171 + - type: DeviceLinkSource + linkedPorts: + 168: + - DoorStatus: DoorBolt + 171: + - DoorStatus: DoorBolt + - uid: 170 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 168 + - 171 + - type: DeviceLinkSource + linkedPorts: + 168: + - DoorStatus: DoorBolt + 171: + - DoorStatus: DoorBolt + - uid: 171 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - type: DeviceLinkSink + links: + - 169 + - 170 + - type: DeviceLinkSource + linkedPorts: + 169: + - DoorStatus: DoorBolt + 170: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 172 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - type: DeviceLinkSink + links: + - 174 + - type: DeviceLinkSource + linkedPorts: + 174: + - DoorStatus: DoorBolt + - uid: 173 + components: + - type: Transform + pos: 1.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 176 + - type: DeviceLinkSource + linkedPorts: + 176: + - DoorStatus: DoorBolt + - uid: 174 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - type: DeviceLinkSink + links: + - 172 + - type: DeviceLinkSource + linkedPorts: + 172: + - DoorStatus: DoorBolt + - uid: 175 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - type: DeviceLinkSink + links: + - 176 + - type: DeviceLinkSource + linkedPorts: + 176: + - DoorStatus: DoorBolt + - uid: 176 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - type: DeviceLinkSink + links: + - 173 + - 175 + - type: DeviceLinkSource + linkedPorts: + 173: + - DoorStatus: DoorBolt + 175: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 177 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 +- proto: AirlockExternalGlassEasyPry + entities: + - uid: 179 + components: + - type: Transform + pos: -51.5,19.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -51.5,13.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 41.5,-19.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 189 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 192 + - 202 + - type: DeviceLinkSource + linkedPorts: + 202: + - DoorStatus: DoorBolt + 192: + - DoorStatus: DoorBolt + - uid: 192 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 191 + - 201 + - type: DeviceLinkSource + linkedPorts: + 201: + - DoorStatus: DoorBolt + 191: + - DoorStatus: DoorBolt + - uid: 193 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: -53.5,48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 196 + - type: DeviceLinkSource + linkedPorts: + 196: + - DoorStatus: DoorBolt + - uid: 196 + components: + - type: Transform + pos: -55.5,48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 195 + - type: DeviceLinkSource + linkedPorts: + 195: + - DoorStatus: DoorBolt + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,48.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: -42.5,54.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,52.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,11.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 202 + - 192 + - type: DeviceLinkSource + linkedPorts: + 192: + - DoorStatus: DoorBolt + 202: + - DoorStatus: DoorBolt + - uid: 202 + components: + - type: Transform + pos: 11.5,-44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 191 + - 201 + - type: DeviceLinkSource + linkedPorts: + 201: + - DoorStatus: DoorBolt + 191: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 203 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,11.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,19.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,13.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,21.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,42.5 + parent: 2 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,31.5 + parent: 2 + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-11.5 + parent: 2 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 2 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-19.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 +- proto: AirlockFreezer + entities: + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,41.5 + parent: 2 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 2 +- proto: AirlockFreezerHydroponicsLocked + entities: + - uid: 290 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 222 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,15.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 65 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: -43.5,15.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -48.5,8.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,15.5 + parent: 2 + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-17.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,2.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 288 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 289 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 291 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 +- proto: AirlockKitchenGlassLocked + entities: + - uid: 293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 +- proto: AirlockLawyerLocked + entities: + - uid: 97 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 +- proto: AirlockMailLocked + entities: + - uid: 295 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 296 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 2 + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 +- proto: AirlockMaintBoxerLocked + entities: + - uid: 351 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 300 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,28.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,32.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-23.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-27.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 2 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 2 +- proto: AirlockMaintGlass + entities: + - uid: 317 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 +- proto: AirlockMaintHOPLocked + entities: + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 320 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 321 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 322 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 +- proto: AirlockMaintLawyerLocked + entities: + - uid: 94 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 323 + components: + - type: Transform + pos: -28.5,41.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,11.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,46.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,28.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,34.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,27.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,14.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 +- proto: AirlockMaintReporterLocked + entities: + - uid: 425 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 356 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -43.5,45.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: -37.5,41.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -37.5,24.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 360 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-18.5 + parent: 2 +- proto: AirlockMaintSecurityLawyerLocked + entities: + - uid: 361 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 +- proto: AirlockMaintServiceLocked + entities: + - uid: 427 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 +- proto: AirlockMantisLocked + entities: + - uid: 368 + components: + - type: MetaData + name: mantis' office + - type: Transform + pos: -36.5,35.5 + parent: 2 + - uid: 369 + components: + - type: MetaData + name: mantis' office + - type: Transform + pos: -37.5,32.5 + parent: 2 + - uid: 370 + components: + - type: MetaData + name: mantis' office + - type: Transform + pos: -35.5,30.5 + parent: 2 +- proto: AirlockMedicalGlass + entities: + - uid: 371 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 376 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 2 + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 381 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 +- proto: AirlockMusicianLocked + entities: + - uid: 431 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 389 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 +- proto: AirlockReporterLocked + entities: + - uid: 424 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 390 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 391 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 2 +- proto: AirlockScienceGlass + entities: + - uid: 394 + components: + - type: Transform + pos: -25.5,26.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 396 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -40.5,24.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -33.5,26.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 403 + components: + - type: Transform + pos: -42.5,35.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: -46.5,31.5 + parent: 2 +- proto: AirlockSecurityGlass + entities: + - uid: 406 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -55.5,-5.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 84 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 753 + - uid: 90 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 754 + - uid: 92 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 752 + - uid: 93 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 751 + - uid: 416 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 82 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 95 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 420 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 +- proto: AirlockServiceGlassLocked + entities: + - uid: 422 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 429 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 432 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 433 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: -28.5,-76.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -21.5,-76.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: -4.5,-76.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: -15.5,-81.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-45.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-38.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 443 + components: + - type: Transform + pos: -29.5,30.5 + parent: 2 +- proto: AlwaysPoweredLightPostSmallRed + entities: + - uid: 444 + components: + - type: Transform + pos: -9.5,-87.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -36.5,-71.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: -21.5,-88.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: -36.5,-82.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 2 +- proto: AlwaysPoweredSmallLightMaintenanceRed + entities: + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,3.5 + parent: 2 +- proto: AmeController + entities: + - uid: 453 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 +- proto: AmeJar + entities: + - uid: 454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.616076,-27.316935 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.366076,-27.5202 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -18.490067,-40.1364 + parent: 2 +- proto: AmePartFlatpack + entities: + - uid: 457 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 463 + components: + - type: Transform + pos: -44.434406,43.696514 + parent: 2 +- proto: AnomalyVesselCircuitboard + entities: + - uid: 464 + components: + - type: Transform + pos: -14.321217,-30.478264 + parent: 2 +- proto: APCBasic + entities: + - uid: 465 + components: + - type: MetaData + name: APC (Logi, North) + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 466 + components: + - type: MetaData + name: APC (Eng, Atmos) + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-40.5 + parent: 2 + - uid: 467 + components: + - type: MetaData + name: APC (Hydroponics) + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,8.5 + parent: 2 + - uid: 468 + components: + - type: MetaData + name: APC (Medical Outpost) + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,0.5 + parent: 2 + - uid: 469 + components: + - type: MetaData + name: APC (Sec, West) + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 470 + components: + - type: MetaData + name: APC (AI, North) + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-72.5 + parent: 2 + - uid: 471 + components: + - type: MetaData + name: APC (AI, West) + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-80.5 + parent: 2 + - uid: 472 + components: + - type: MetaData + name: APC (AI, East) + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-76.5 + parent: 2 + - uid: 473 + components: + - type: MetaData + name: APC (Evac, Primary) + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,18.5 + parent: 2 + - uid: 474 + components: + - type: MetaData + name: APC (Kitchen) + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 475 + components: + - type: MetaData + name: APC (Dorms/Cryosleep) + - type: Transform + pos: -35.5,16.5 + parent: 2 + - uid: 476 + components: + - type: MetaData + name: APC (Boxing ring) + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,9.5 + parent: 2 + - uid: 477 + components: + - type: MetaData + name: APC (Med, Virology) + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 + - uid: 478 + components: + - type: MetaData + name: APC (Med, Surgery) + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - uid: 479 + components: + - type: MetaData + name: APC (Med, Genetics) + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 480 + components: + - type: MetaData + name: APC (Kitchen, Alternate) + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 481 + components: + - type: MetaData + name: APC (Epi, West) + - type: Transform + pos: -48.5,38.5 + parent: 2 + - uid: 482 + components: + - type: MetaData + name: APC (Epi, Central) + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 483 + components: + - type: MetaData + name: APC (Epi, Chapel) + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,30.5 + parent: 2 + - uid: 484 + components: + - type: MetaData + name: APC (Reporter/Lawyer) + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,20.5 + parent: 2 + - uid: 485 + components: + - type: MetaData + name: APC (Hall, Central) + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 486 + components: + - type: MetaData + name: APC (Hall, Northeast) + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 487 + components: + - type: MetaData + name: APC (Bar) + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 2 + - uid: 488 + components: + - type: MetaData + name: APC (Bridge, Captain) + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,39.5 + parent: 2 + - uid: 489 + components: + - type: MetaData + name: APC (Sec, East) + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 2 + - uid: 490 + components: + - type: MetaData + name: APC (Central Maintenance) + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 491 + components: + - type: MetaData + name: APC (Med, Chemistry) + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 492 + components: + - type: MetaData + name: APC (HoP office) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 2 + - uid: 493 + components: + - type: MetaData + name: APC (Arrivals) + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 494 + components: + - type: MetaData + name: APC (Hall, East) + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 495 + components: + - type: MetaData + name: APC (Hall, South Central) + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - uid: 496 + components: + - type: MetaData + name: APC (Hall, South) + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-14.5 + parent: 2 + - uid: 497 + components: + - type: MetaData + name: APC (Hall, West) + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 498 + components: + - type: MetaData + name: APC (Bridge) + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,37.5 + parent: 2 + - uid: 499 + components: + - type: MetaData + name: APC (Hall, North) + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,29.5 + parent: 2 + - uid: 500 + components: + - type: MetaData + name: APC (Courtroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,41.5 + parent: 2 + - uid: 501 + components: + - type: MetaData + name: APC (Vault) + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 502 + components: + - type: MetaData + name: APC (Hall, West Central) + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 2 + - uid: 1660 + components: + - type: MetaData + name: APC (Solars, East) + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 11697 + components: + - type: MetaData + name: APC (Solars, North) + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,50.5 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 503 + components: + - type: MetaData + name: APC (Sec, Armory) + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 504 + components: + - type: MetaData + name: APC (Logi, Dock) + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 505 + components: + - type: MetaData + name: APC (Eng, North) + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full + - uid: 506 + components: + - type: MetaData + name: APC (Sec, Perma) + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 507 + components: + - type: MetaData + name: APC (Eng, South) + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-38.5 + parent: 2 + - uid: 508 + components: + - type: MetaData + name: APC (Logi, South) + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 509 + components: + - type: MetaData + name: APC (Disposals) + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + - uid: 510 + components: + - type: MetaData + name: APC (Eng, AME) + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 511 + components: + - type: MetaData + name: APC (Logi, Maintenance) + - type: Transform + pos: 0.5,-11.5 + parent: 2 +- proto: AppleSeeds + entities: + - uid: 512 + components: + - type: Transform + pos: 32.64337,-12.701023 + parent: 2 +- proto: ArtifactAnalyzerMachineCircuitboard + entities: + - uid: 513 + components: + - type: Transform + pos: -14.623301,-30.68674 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 514 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,5.5 + parent: 2 + - uid: 522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,31.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: -54.5,19.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-19.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-11.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 2 + - uid: 531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-24.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-24.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -31.5,42.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 536 + components: + - type: Transform + pos: -61.5,31.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -62.5,37.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -61.5,37.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -62.5,31.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 546 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 574 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 577 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 580 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 583 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 +- proto: AutolatheMachineCircuitboard + entities: + - uid: 586 + components: + - type: Transform + pos: -14.2691345,-30.29063 + parent: 2 +- proto: BalloonSyn + entities: + - uid: 587 + components: + - type: MetaData + desc: A balloon for those who passed boot camp. + name: security balloon + - type: Transform + pos: -17.78467,39.023205 + parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 588 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -21.5,44.5 + parent: 2 +- proto: BarSign + entities: + - uid: 590 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 +- proto: BarSignKlubSkub + entities: + - uid: 591 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 592 + components: + - type: Transform + pos: -25.5,-78.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-73.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -24.5,-78.5 + parent: 2 + - uid: 596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-82.5 + parent: 2 + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-74.5 + parent: 2 + - uid: 598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-73.5 + parent: 2 + - uid: 599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-79.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 2 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,23.5 + parent: 2 +- proto: BeachBall + entities: + - uid: 602 + components: + - type: Transform + pos: -30.748747,16.493372 + parent: 2 +- proto: Beaker + entities: + - uid: 603 + components: + - type: Transform + pos: -28.796272,3.7424812 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 15.66956,20.960335 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -35.777054,27.882532 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -35.620804,27.679266 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 19.67959,20.592115 + parent: 2 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Cryoxadone + Quantity: 50 +- proto: Bed + entities: + - uid: 608 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 626 + components: + - type: MetaData + name: couch + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: -33.5,37.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 +- proto: BedsheetBlack + entities: + - uid: 632 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: -33.5,37.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 634 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 635 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 636 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 637 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 +- proto: BedsheetCosmos + entities: + - uid: 638 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 639 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 5841 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 642 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 +- proto: BedsheetMime + entities: + - uid: 654 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 655 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 661 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 662 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: -58.5,-11.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 +- proto: BedsheetUSA + entities: + - uid: 672 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 +- proto: BiomassReclaimer + entities: + - uid: 673 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 674 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 675 + components: + - type: Transform + pos: -53.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13605 + - uid: 676 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 677 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 678 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-48.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13593 + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-49.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13593 +- proto: BlastDoorOpen + entities: + - uid: 671 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12262 + - uid: 681 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12262 + - uid: 682 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 12262 + - uid: 684 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13594 + - uid: 685 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 686 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 687 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 688 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 689 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 690 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 691 + components: + - type: Transform + pos: -12.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 692 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 693 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 694 + components: + - type: Transform + pos: -11.5,45.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 695 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13594 + - uid: 696 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 + - uid: 697 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 13594 +- proto: BoardGameSpawner + entities: + - uid: 698 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 +- proto: BodyBag_Container + entities: + - uid: 699 + components: + - type: Transform + pos: -35.45156,37.595173 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: Bonfire + entities: + - uid: 700 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 +- proto: BookInspiration + entities: + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.481606,-0.1413793 + parent: 2 +- proto: BookRandom + entities: + - uid: 702 + components: + - type: Transform + pos: -52.64169,-0.29077882 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -52.61044,-0.38452882 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: -52.594814,-0.22827882 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 5.3378663,-39.404938 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 706 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -50.5,30.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -48.5,30.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -49.5,30.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 2 + - uid: 715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,33.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 716 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -17.5,-78.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -14.5,-78.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: -38.5,40.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 721 + components: + - type: Transform + pos: 16.393906,13.819341 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -19.70403,7.0739126 + parent: 2 +- proto: BoxBeanbag + entities: + - uid: 723 + components: + - type: Transform + pos: -25.517311,-14.518888 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 724 + components: + - type: Transform + pos: 28.351997,18.416313 + parent: 2 +- proto: BoxCardboard + entities: + - uid: 725 + components: + - type: Transform + pos: 4.277172,-3.2468963 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 4.558422,-3.5283408 + parent: 2 +- proto: BoxCartridgeCap + entities: + - uid: 727 + components: + - type: Transform + pos: -38.322617,10.103517 + parent: 2 +- proto: BoxFlare + entities: + - uid: 728 + components: + - type: Transform + pos: 9.308822,-45.509903 + parent: 2 +- proto: BoxFolderBase + entities: + - uid: 729 + components: + - type: Transform + pos: -12.023532,-73.5315 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: -22.653774,-78.40514 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -49.575344,27.306631 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 732 + components: + - type: Transform + pos: 8.682952,26.581984 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 733 + components: + - type: Transform + pos: -10.038057,34.838547 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -26.280434,41.61994 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 735 + components: + - type: Transform + pos: -21.186684,41.65119 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 736 + components: + - type: Transform + pos: 8.7060175,-4.32035 + parent: 2 +- proto: BoxingBell + entities: + - uid: 17473 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 737 + components: + - type: Transform + pos: -43.540894,0.6267514 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: -40.613728,-4.5623055 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 739 + components: + - type: Transform + pos: 22.693903,-24.2228 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: -1.2286556,10.361396 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 19.77802,-11.275881 + parent: 2 +- proto: BoxMaintenanceLightbulb + entities: + - uid: 742 + components: + - type: Transform + pos: 22.370987,-24.452126 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -0.9890723,10.705385 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 744 + components: + - type: Transform + pos: 28.507938,12.615709 + parent: 2 +- proto: BoxNitrileGloves + entities: + - uid: 745 + components: + - type: Transform + pos: 8.360393,9.476925 + parent: 2 +- proto: BoxShotgunIncendiary + entities: + - uid: 746 + components: + - type: Transform + pos: -43.32206,0.5062567 + parent: 2 +- proto: BoxShotgunSlug + entities: + - uid: 747 + components: + - type: Transform + pos: -40.363728,-4.3682694 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 748 + components: + - type: Transform + pos: 19.669752,9.553038 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 749 + components: + - type: Transform + pos: -26.289627,-11.244784 + parent: 2 +- proto: BrbSign + entities: + - uid: 750 + components: + - type: Transform + pos: 19.917723,-3.4989886 + parent: 2 +- proto: BrigTimer + entities: + - uid: 751 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - type: SignalTimer + label: CEL-1 + - type: DeviceLinkSource + linkedPorts: + 93: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 752 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - type: SignalTimer + label: CEL-3 + - type: DeviceLinkSource + linkedPorts: + 92: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 753 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - type: SignalTimer + label: CEL-2 + - type: DeviceLinkSource + linkedPorts: + 84: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 754 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - type: SignalTimer + label: CEL-4 + - type: DeviceLinkSource + linkedPorts: + 90: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-15.5 + parent: 2 + - uid: 756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-15.5 + parent: 2 + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-15.5 + parent: 2 + - uid: 758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-13.5 + parent: 2 +- proto: Bucket + entities: + - uid: 760 + components: + - type: Transform + pos: -17.40326,4.298378 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 1.2489537,10.331755 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 33.375,-12.461527 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -62.556114,-6.1310325 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 22.126427,-14.634353 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 1.4052037,10.873797 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 683 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: -43.5,40.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: -43.5,41.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: -19.5,34.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: -17.5,34.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -26.5,28.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: -46.5,25.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -53.5,20.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -27.5,28.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -54.5,37.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -54.5,39.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -54.5,40.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: -46.5,45.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -48.5,38.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: -48.5,37.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: -48.5,36.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: -48.5,39.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: -48.5,40.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: -49.5,36.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -53.5,36.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -55.5,36.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: -55.5,35.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -55.5,33.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: -56.5,33.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: -57.5,33.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: -59.5,33.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: -60.5,33.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: -61.5,33.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: -62.5,33.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: -49.5,35.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -49.5,34.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: -49.5,33.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: -48.5,33.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: -46.5,33.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: -46.5,31.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: -46.5,29.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: -46.5,28.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: -47.5,28.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: -48.5,28.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: -49.5,28.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: -50.5,28.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: -45.5,28.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: -46.5,27.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: -46.5,26.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -37.5,28.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: -38.5,26.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: -31.5,30.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: -29.5,29.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: -29.5,28.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: -32.5,22.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -45.5,18.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: -46.5,18.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: -46.5,19.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: -46.5,20.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: -46.5,23.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: -47.5,22.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: -48.5,22.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -50.5,20.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: -52.5,20.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -50.5,12.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -46.5,15.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -48.5,10.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: -41.5,18.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -41.5,16.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: -41.5,15.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: -41.5,10.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: -35.5,16.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: -37.5,19.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -45.5,6.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -28.5,6.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: 24.5,25.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: 11.5,21.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 14.5,25.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 15.5,25.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: 7.5,30.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: 6.5,30.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: -37.5,24.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: -5.5,22.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -22.5,29.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: -21.5,29.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: -23.5,29.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -23.5,28.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -23.5,26.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: -23.5,24.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: -23.5,22.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: -23.5,21.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -22.5,26.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: -21.5,26.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -23.5,30.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -23.5,31.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: -23.5,32.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -23.5,33.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -23.5,34.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -23.5,35.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -23.5,36.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: -39.5,36.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: -39.5,37.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: -39.5,39.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -39.5,40.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: -39.5,41.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -39.5,42.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: -39.5,43.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -39.5,44.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -40.5,42.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -41.5,42.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: -42.5,42.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -43.5,42.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -43.5,43.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: -43.5,46.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: -43.5,47.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: -44.5,46.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -45.5,46.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: -46.5,46.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: -47.5,46.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -48.5,46.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -49.5,46.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -50.5,46.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: -51.5,46.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: -51.5,47.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: -42.5,47.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: -42.5,48.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: -42.5,49.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: -42.5,50.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -42.5,51.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: -42.5,52.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -42.5,53.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: -42.5,54.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: -42.5,55.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: -42.5,56.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -42.5,57.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: -42.5,58.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -42.5,59.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: -42.5,60.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -42.5,61.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: -42.5,62.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -42.5,63.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -42.5,64.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -42.5,65.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -42.5,66.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -42.5,67.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -42.5,68.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: -42.5,69.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -41.5,47.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -40.5,47.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -39.5,47.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: -38.5,47.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: -37.5,47.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: -36.5,47.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -35.5,47.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: -35.5,46.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: -35.5,45.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: -35.5,44.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: -33.5,36.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -34.5,36.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: -35.5,36.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: -36.5,36.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: -36.5,37.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: -33.5,40.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: -24.5,41.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: -27.5,41.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: -23.5,40.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: -23.5,39.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: -23.5,38.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: -15.5,38.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -15.5,37.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: -15.5,36.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: -12.5,35.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: -11.5,35.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: -7.5,39.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: -7.5,43.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: -9.5,43.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: -12.5,43.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 37.5,-22.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: -9.5,-85.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -29.5,-79.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: -29.5,-78.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: -29.5,-77.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: -29.5,-80.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: -29.5,-76.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: -29.5,-75.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: -29.5,-74.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: -29.5,-73.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: -28.5,-76.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: -27.5,-76.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: -26.5,-76.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: -26.5,-75.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: -26.5,-74.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: -26.5,-73.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: -26.5,-77.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: -26.5,-78.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: -26.5,-79.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: -24.5,-76.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: -25.5,-76.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: -23.5,-76.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: -22.5,-76.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: -21.5,-76.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: -20.5,-76.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: -19.5,-76.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: -2.5,-76.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: -20.5,-75.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: -20.5,-73.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: -20.5,-78.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: -20.5,-79.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: -20.5,-77.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: -21.5,5.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: -3.5,-76.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: -4.5,-76.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: -12.5,-76.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: -11.5,-76.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: -10.5,-76.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: -10.5,-75.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: -10.5,-74.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -6.5,-74.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: -5.5,-74.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: -5.5,-76.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: -5.5,-77.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: -7.5,-78.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: -8.5,-78.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: -9.5,-78.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: -10.5,-78.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: -11.5,-78.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: -11.5,-77.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: -18.5,-72.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: -16.5,-75.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: -16.5,-77.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: -16.5,-78.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: -16.5,-79.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: -16.5,-80.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: -16.5,-81.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: -16.5,-82.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: -16.5,-83.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: -16.5,-84.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: -16.5,-85.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: -16.5,-86.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: -10.5,-86.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: -10.5,-85.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: -8.5,-85.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: -7.5,-85.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: -6.5,-85.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: -5.5,-85.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: -4.5,-85.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: -3.5,-85.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: -3.5,-84.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: -2.5,-84.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: -1.5,-84.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: -0.5,-84.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 0.5,-84.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 1.5,-84.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 1.5,-83.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 1.5,-82.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 1.5,-81.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 1.5,-80.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: 1.5,-79.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 1.5,-78.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 1.5,-77.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 1.5,-76.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 1.5,-75.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 1.5,-74.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 1.5,-73.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 1.5,-72.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 1.5,-71.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 1.5,-70.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 1.5,-69.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 1.5,-68.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: -0.5,-68.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: -2.5,-68.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: -3.5,-68.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: -35.5,-69.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: -10.5,-66.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: -12.5,-66.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: -13.5,-66.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: -14.5,-66.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: -17.5,-66.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: -27.5,-68.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: -28.5,-68.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: -29.5,-68.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: -33.5,-68.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: -34.5,-68.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: -35.5,-70.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: -35.5,-71.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: -35.5,-72.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: -35.5,-73.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: -35.5,-74.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: -35.5,-75.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: -35.5,-76.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: -35.5,-77.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: -35.5,-78.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: -35.5,-79.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: -35.5,-80.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: -35.5,-81.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: -35.5,-82.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: -35.5,-83.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: -35.5,-84.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: -34.5,-84.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: -33.5,-84.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: -32.5,-84.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: -31.5,-84.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: -30.5,-84.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: -29.5,-84.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: -28.5,-84.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: -27.5,-84.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: -26.5,-84.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: -25.5,-84.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: -24.5,-84.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: -23.5,-84.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: -22.5,-84.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: -21.5,-84.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: -21.5,-85.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: -21.5,-86.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: -21.5,-87.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: -33.5,-60.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: -16.5,-67.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: -16.5,-68.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: -33.5,-67.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: -33.5,-66.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: -33.5,-62.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: -33.5,-57.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: -33.5,-53.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 1.5,-67.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 1.5,-66.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 1.5,-65.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 1.5,-64.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 1.5,-62.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 1.5,-61.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 1.5,-59.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: -39.5,-40.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: -39.5,-38.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: -16.5,-62.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: -12.5,39.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: -35.5,28.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -35.5,29.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: -29.5,30.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: -29.5,31.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: -16.5,-57.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: -16.5,-56.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: -16.5,-55.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: -16.5,-54.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -16.5,-53.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: -16.5,-52.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: -35.5,30.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: -46.5,43.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: -47.5,43.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: -16.5,-61.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: -28.5,31.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: -30.5,31.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: -24.5,34.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: -28.5,34.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: -12.5,42.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: -62.5,34.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: -62.5,35.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: -62.5,36.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: -16.5,-65.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: -44.5,36.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: -42.5,36.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: -42.5,35.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: -35.5,32.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: -35.5,33.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: -47.5,40.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 11.5,-46.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 12.5,-46.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: -1.5,-47.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 1.5,-52.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: -2.5,-51.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: -41.5,50.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + pos: 20.5,-47.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: -40.5,50.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: -39.5,50.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 17430 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 2 + - uid: 17431 + components: + - type: Transform + pos: 20.5,-49.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 3016 + components: + - type: Transform + pos: -18.445934,-34.611988 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: -48.395123,32.474678 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: -48.582623,32.67273 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: -11.594626,-24.636341 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 3020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.609608,-13.161642 + parent: 2 + - uid: 3021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.88972664,26.43372 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: 11.112434,29.7345 + parent: 2 + - uid: 3023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.286758,28.64075 + parent: 2 + - uid: 3024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.7004,15.541313 + parent: 2 + - uid: 3025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.44294,-13.2971525 + parent: 2 +- proto: CableHV + entities: + - uid: 3027 + components: + - type: Transform + pos: -44.5,57.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: -48.5,58.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: -47.5,58.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: -42.5,68.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: -44.5,58.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: -46.5,58.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: -42.5,67.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: -40.5,56.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: -39.5,56.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: -40.5,61.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: -41.5,61.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: -36.5,60.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: -40.5,62.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: -37.5,58.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: -35.5,58.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: -36.5,56.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: -37.5,60.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: -35.5,56.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: -39.5,56.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: -38.5,60.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: -40.5,57.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: -41.5,57.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: -42.5,58.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: -35.5,60.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: -42.5,57.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: -42.5,56.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: -42.5,55.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: -42.5,54.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: -42.5,53.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: -42.5,51.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: -39.5,62.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: -36.5,58.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: -45.5,58.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 3133 + components: + - type: Transform + pos: -39.5,-38.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 52.5,5.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 60.5,4.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: -29.5,35.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: -30.5,40.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: -29.5,40.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: -29.5,34.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: -42.5,49.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: -49.5,60.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: -44.5,49.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: -43.5,51.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: -44.5,50.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: -42.5,48.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: -44.5,51.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: -43.5,49.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: -42.5,52.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: -42.5,66.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: -42.5,66.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: -44.5,66.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: -45.5,66.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -47.5,66.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: -44.5,65.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: -43.5,65.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: -42.5,65.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -40.5,66.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: -39.5,66.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: -38.5,66.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: -37.5,66.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: -40.5,65.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: -36.5,64.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: -37.5,64.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: -35.5,64.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: -42.5,62.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: -42.5,61.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: -42.5,60.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: -45.5,60.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: -46.5,60.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: -47.5,60.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: -48.5,60.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: -29.5,39.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: -29.5,37.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: -29.5,36.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: -29.5,38.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: -21.5,17.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: -42.5,47.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: -47.5,44.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: -46.5,45.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: -46.5,46.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: -45.5,46.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: -44.5,46.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: -43.5,46.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: -42.5,46.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: -41.5,46.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: -40.5,46.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: -39.5,46.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: -38.5,46.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: -37.5,46.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: -36.5,46.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: -36.5,45.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: -36.5,44.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: -36.5,43.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: -36.5,42.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: -36.5,41.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: -33.5,40.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: -34.5,40.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: -34.5,36.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: -30.5,31.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: -29.5,31.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: -29.5,30.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: -29.5,29.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: -29.5,28.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: -28.5,34.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: -26.5,34.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -24.5,34.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: -23.5,34.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: -22.5,34.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: -10.5,30.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: 6.5,29.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: 10.5,29.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 3.5,14.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: -36.5,36.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: -33.5,36.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: -35.5,36.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: -36.5,37.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: -32.5,40.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: -18.5,-75.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: -17.5,-75.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: -18.5,-77.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: -16.5,-65.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: -16.5,-67.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: -16.5,-68.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -16.5,-75.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: -16.5,-77.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: -16.5,-78.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: -16.5,-79.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -16.5,-80.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -15.5,-80.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: -14.5,-80.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: -14.5,-81.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: -14.5,-82.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: -40.5,-33.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: -40.5,-42.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: -36.5,-47.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: -13.5,-82.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + pos: -17.5,-77.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + pos: -13.5,-81.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + pos: -18.5,-71.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 2 + - uid: 17436 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 3789 + components: + - type: Transform + pos: -18.524075,-34.377613 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: -10.552959,-24.292353 + parent: 2 +- proto: CableHVStack1 + entities: + - uid: 3791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.34298,14.683756 + parent: 2 + - uid: 3792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.502434,7.3422384 + parent: 2 + - uid: 3793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.76011,8.709426 + parent: 2 + - uid: 3794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.60476,4.3734884 + parent: 2 + - uid: 3795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.04197,11.697707 + parent: 2 + - uid: 3796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.40011,7.6742697 + parent: 2 + - uid: 3797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.02577,18.472818 + parent: 2 + - uid: 3798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.16713,57.640255 + parent: 2 + - uid: 3799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.10015,61.878536 + parent: 2 + - uid: 3800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.394104,61.116817 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: -36.089542,60.436928 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: -46.93643,65.10828 + parent: 2 + - uid: 3803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.632244,65.98718 + parent: 2 + - uid: 3804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.683334,64.776245 + parent: 2 + - uid: 3805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.858845,66.04578 + parent: 2 + - uid: 3806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.84024,60.710365 + parent: 2 + - uid: 3807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.2421,61.823647 + parent: 2 + - uid: 3808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.066284,58.220463 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: -34.95652,56.404057 + parent: 2 + - uid: 3810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.461636,57.654057 + parent: 2 + - uid: 3811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.447212,57.614994 + parent: 2 + - uid: 3812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.33405,-34.31843 + parent: 2 + - uid: 3813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.345215,-37.189526 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: -31.521027,-42.931713 + parent: 2 + - uid: 3815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.176376,-45.539135 + parent: 2 + - uid: 3816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.7587,-40.002026 + parent: 2 + - uid: 3817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.34847,-33.351635 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: -34.011726,-31.300854 + parent: 2 + - uid: 3819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.213585,-34.34773 + parent: 2 + - uid: 3820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.97683,-38.156322 + parent: 2 + - uid: 3821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.88892,-42.66804 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: -25.625198,-46.212963 + parent: 2 + - uid: 3823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.85543,-45.832104 + parent: 2 + - uid: 3824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.478298,34.047295 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: -30.648613,41.426968 + parent: 2 + - uid: 3826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.1075325,29.80727 + parent: 2 + - uid: 3827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.544165,30.27602 + parent: 2 +- proto: CableHVStack10 + entities: + - uid: 3828 + components: + - type: Transform + pos: 45.414303,9.464138 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: -44.48516,49.352608 + parent: 2 +- proto: CableMV + entities: + - uid: 61 + components: + - type: Transform + pos: -42.5,50.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: -42.5,47.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: -42.5,48.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -26.5,-45.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: -27.5,-45.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: -64.5,-8.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: -17.5,-76.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -11.5,39.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: -33.5,36.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: -47.5,44.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: -22.5,34.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: -46.5,45.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: -46.5,46.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: -45.5,46.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: -44.5,46.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: -43.5,46.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: -42.5,46.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: -41.5,46.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: -40.5,46.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: -39.5,46.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: -38.5,46.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: -37.5,46.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: -36.5,46.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: -36.5,46.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: -36.5,45.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: -36.5,44.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: -36.5,43.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: -36.5,42.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: -36.5,41.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: -39.5,40.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: -39.5,39.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: -39.5,37.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: -39.5,36.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: -40.5,34.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: -42.5,34.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: -48.5,37.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: -42.5,33.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: -45.5,33.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: -46.5,33.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: -47.5,34.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: -47.5,35.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: -47.5,36.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: -47.5,37.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: -48.5,38.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: -21.5,17.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: -23.5,17.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: -35.5,16.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: -15.5,17.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: -43.5,45.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: -43.5,44.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: -43.5,43.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: -43.5,42.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: -43.5,41.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: -43.5,40.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: -42.5,40.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: -40.5,40.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: -36.5,37.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: -41.5,15.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: -43.5,15.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: -44.5,15.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: -45.5,17.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: -45.5,18.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: -17.5,33.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: -16.5,34.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: -14.5,35.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: -14.5,36.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: -14.5,37.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: -14.5,38.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: -13.5,38.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: -12.5,38.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: -2.5,38.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: -5.5,30.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: -8.5,30.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: -10.5,30.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -46.5,-16.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: -39.5,50.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: -35.5,36.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: -34.5,36.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: -36.5,36.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: -65.5,-9.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + pos: -63.5,-15.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: -63.5,-17.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: -64.5,-17.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: -65.5,-17.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: -65.5,-16.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: -65.5,-15.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: -67.5,-11.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: -67.5,-13.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: -66.5,-1.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: -66.5,0.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: -61.5,-23.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: -65.5,5.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: -65.5,-1.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -63.5,2.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: -64.5,2.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: -55.5,-5.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: -55.5,-16.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: -56.5,-21.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: -59.5,-20.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: -63.5,-20.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -64.5,-19.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: -64.5,-18.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: -63.5,-22.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: -61.5,-22.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: -59.5,-23.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: -58.5,-23.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: -57.5,-23.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: -55.5,-23.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -54.5,-23.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: -52.5,-20.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -59.5,-22.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -56.5,-22.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -53.5,-22.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: -53.5,-20.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -54.5,-21.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: -50.5,-21.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: -50.5,-22.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: -52.5,-22.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: -50.5,-23.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: -45.5,-23.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: -44.5,-23.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: -49.5,-21.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: -15.5,-80.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: -16.5,-80.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: -16.5,-79.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: -16.5,-78.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: -16.5,-77.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: -16.5,-75.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: -16.5,-74.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: -16.5,-72.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: -18.5,-72.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: -11.5,-75.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: -14.5,-80.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: -15.5,-76.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: -14.5,-76.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: -12.5,-76.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: -11.5,-76.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: -11.5,-74.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: -10.5,-74.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: -7.5,-74.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: -6.5,-74.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: -5.5,-74.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: -4.5,-74.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: -4.5,-76.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: -3.5,-76.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: -2.5,-76.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: -18.5,-76.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: -19.5,-76.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -20.5,-76.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: -21.5,-76.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: -22.5,-76.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: -23.5,-76.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: -24.5,-76.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: -25.5,-76.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: -26.5,-76.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: -27.5,-76.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: -28.5,-76.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: -29.5,-76.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: -29.5,-77.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: -29.5,-78.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: -29.5,-79.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: -29.5,-80.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: -21.5,29.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: -22.5,35.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: -22.5,36.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: -22.5,37.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: -22.5,38.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: -22.5,39.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -19.5,41.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: -63.5,-9.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: -36.5,-82.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: -36.5,-71.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: -7.5,-87.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: -67.5,-9.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -7.5,39.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: -16.5,-70.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: -16.5,-68.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -16.5,-67.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: -16.5,-65.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: -16.5,-64.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: -19.5,-64.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: -20.5,-64.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -21.5,-64.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: -22.5,-64.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: -22.5,-65.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -26.5,-65.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: -26.5,-66.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: -27.5,-66.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -28.5,-66.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: -29.5,-66.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: -30.5,-66.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: -31.5,-66.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: -32.5,-66.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: -33.5,-66.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: -33.5,-67.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: -34.5,-67.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: -35.5,-67.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: -35.5,-66.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: -36.5,-66.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: -37.5,-66.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: -37.5,-67.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -37.5,-69.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -37.5,-70.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: -37.5,-71.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: -37.5,-72.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: -38.5,-72.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: -39.5,-72.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: -39.5,-73.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: -39.5,-74.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: -39.5,-75.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -39.5,-76.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: -39.5,-77.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -39.5,-78.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: -39.5,-79.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: -39.5,-80.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: -38.5,-80.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: -37.5,-80.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: -37.5,-81.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: -37.5,-82.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: -37.5,-83.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: -37.5,-84.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: -37.5,-85.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: -37.5,-86.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: -36.5,-86.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: -35.5,-86.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: -34.5,-86.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: -33.5,-86.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: -32.5,-86.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: -31.5,-86.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -30.5,-86.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: -29.5,-86.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: -28.5,-86.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: -27.5,-86.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: -26.5,-86.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: -25.5,-86.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: -24.5,-86.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: -23.5,-86.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: -23.5,-87.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -23.5,-88.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: -23.5,-89.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: -22.5,-89.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: -21.5,-89.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: -20.5,-89.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: -19.5,-89.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: -18.5,-89.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: -17.5,-89.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: -16.5,-89.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: -14.5,-89.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: -13.5,-89.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: -12.5,-89.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: -11.5,-89.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: -10.5,-89.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: -9.5,-89.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: -8.5,-89.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: -8.5,-88.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: -8.5,-87.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: -6.5,-87.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: -5.5,-87.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: -4.5,-87.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: -3.5,-87.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: -2.5,-87.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: -1.5,-87.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: 3.5,-85.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: -1.5,-86.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: -0.5,-86.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: 0.5,-86.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: 1.5,-86.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: 2.5,-86.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + pos: 3.5,-81.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: 3.5,-80.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: 4.5,-80.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: 5.5,-80.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: 5.5,-79.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 5.5,-77.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 5.5,-76.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: 5.5,-74.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: 5.5,-73.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: 3.5,-71.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: 3.5,-70.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: 3.5,-69.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: 2.5,-66.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: 1.5,-66.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: -0.5,-66.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: -3.5,-65.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: -9.5,-64.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: -11.5,-64.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: -12.5,-64.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: -13.5,-64.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: -14.5,-64.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: -9.5,-87.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: -21.5,-88.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: -12.5,39.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 11654 + components: + - type: Transform + pos: -41.5,50.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + pos: -40.5,50.5 + parent: 2 + - uid: 13916 + components: + - type: Transform + pos: -42.5,49.5 + parent: 2 + - uid: 17442 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 17445 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 17448 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 17450 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 17452 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 17457 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 17459 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 4996 + components: + - type: Transform + pos: -18.641283,-34.260426 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: -11.407126,-24.44871 + parent: 2 +- proto: CableMVStack1 + entities: + - uid: 4998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.319168,-39.269604 + parent: 2 + - uid: 4999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.461956,-41.789135 + parent: 2 + - uid: 5000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.268005,-38.3614 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: -33.513584,-42.462963 + parent: 2 + - uid: 5002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.40754,-37.365307 + parent: 2 + - uid: 5003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.594513,-35.63679 + parent: 2 +- proto: CableTerminal + entities: + - uid: 5004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,11.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-25.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-25.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-44.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -44.5,51.5 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 5010 + components: + - type: Transform + pos: -52.073597,-6.269678 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: -59.584892,-16.591707 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 5012 + components: + - type: Transform + pos: -11.667542,-24.240232 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 5014 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: CargoRequestComputerCircuitboard + entities: + - uid: 5015 + components: + - type: Transform + pos: -14.633717,-29.633926 + parent: 2 +- proto: CargoTelepadMachineCircuitboard + entities: + - uid: 5016 + components: + - type: Transform + pos: -14.289967,-29.37333 + parent: 2 +- proto: Carpet + entities: + - uid: 5017 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,1.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,0.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,1.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 5036 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -24.5,44.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -24.5,42.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: -23.5,43.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: -23.5,42.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,31.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,32.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,31.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,31.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: -35.5,33.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: -35.5,34.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 5065 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: -26.5,40.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -25.5,40.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 5071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,27.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: -31.5,38.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,30.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,26.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,30.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,30.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,26.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: -27.5,29.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,30.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,29.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,29.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,27.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,36.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,36.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,27.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 5090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,26.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,27.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,28.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,28.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,27.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,26.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,25.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,25.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 5098 + components: + - type: Transform + pos: -28.5,28.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,27.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,27.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: -29.5,28.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: -30.5,28.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 5107 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 +- proto: CarrotSeeds + entities: + - uid: 5117 + components: + - type: Transform + pos: 32.31128,-12.466648 + parent: 2 +- proto: CartridgeRocket + entities: + - uid: 5118 + components: + - type: Transform + pos: -41.510567,1.3497348 + parent: 2 +- proto: Catwalk + entities: + - uid: 1672 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-40.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -52.5,36.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: -54.5,37.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,17.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -21.5,17.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,16.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,17.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,16.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,17.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,17.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,14.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,13.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: -17.5,19.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-34.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,20.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: -31.5,41.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: -53.5,35.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + pos: -56.5,35.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: -57.5,35.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: -52.5,35.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: -55.5,35.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: -53.5,33.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: -55.5,32.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,46.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: -42.5,53.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: -42.5,51.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: -42.5,50.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + pos: -42.5,49.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: -42.5,55.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: -42.5,56.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: -42.5,57.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: -42.5,58.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: -42.5,59.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: -42.5,61.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: -42.5,63.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: -42.5,65.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: -42.5,66.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: -42.5,67.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: -39.5,65.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: -38.5,65.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: -37.5,65.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: -36.5,65.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: -35.5,65.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: -34.5,65.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: -43.5,65.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: -44.5,65.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: -45.5,65.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -46.5,65.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: -47.5,65.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: -48.5,65.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: -49.5,65.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: -50.5,65.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: -43.5,61.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: -44.5,61.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: -45.5,61.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: -46.5,61.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: -47.5,61.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: -48.5,61.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: -49.5,61.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: -50.5,61.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: -40.5,61.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: -39.5,61.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: -38.5,61.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: -37.5,61.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: -36.5,61.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: -35.5,61.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: -34.5,61.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: -34.5,57.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: -35.5,57.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: -38.5,57.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: -39.5,57.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: -40.5,57.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + pos: -41.5,57.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: -46.5,57.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: -47.5,57.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: -48.5,57.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: -49.5,57.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: -50.5,57.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: 55.5,16.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: 55.5,13.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: 51.5,14.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: 59.5,9.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: 59.5,6.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 59.5,5.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: 59.5,4.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,40.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,46.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,46.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,46.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,46.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,46.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,46.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,46.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,46.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,46.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,46.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,47.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,45.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,44.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,43.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,42.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,41.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,40.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,40.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,40.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,40.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,40.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,40.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,39.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,38.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,37.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,36.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,35.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,34.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,34.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,34.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,34.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,34.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,29.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,30.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,31.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,29.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,29.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,29.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,29.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,29.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,29.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,29.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,30.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,30.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,30.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,30.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,30.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,30.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,27.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,26.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,26.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,26.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,26.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,25.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,20.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,18.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,17.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,3.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,4.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,7.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,10.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,11.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,11.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,12.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,13.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,14.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,15.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,15.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,15.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,15.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,15.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,17.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,18.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,18.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,18.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,20.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,21.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,23.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,24.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,25.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,26.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,27.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,27.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,27.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,29.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,29.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,29.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,29.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,29.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,29.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,29.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,29.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,29.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,29.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,29.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,29.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,29.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,29.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,28.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,27.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,28.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,28.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-33.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-33.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-33.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-29.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-27.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-34.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-34.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-37.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-38.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-39.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-40.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-41.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-42.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-43.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-44.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-45.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-46.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-44.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-44.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-44.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-35.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-32.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-32.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-33.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-30.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-33.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,23.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,22.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: -0.5,25.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -53.5,21.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: 11.5,-46.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: 12.5,-46.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-39.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-53.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-38.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-42.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-53.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-53.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-51.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-49.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-47.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-51.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-51.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-51.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-48.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: -32.5,22.5 + parent: 2 + - uid: 11787 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 2 + - uid: 17432 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + pos: 20.5,-47.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 2 +- proto: CellRechargerCircuitboard + entities: + - uid: 5730 + components: + - type: Transform + pos: -10.3003845,-26.329548 + parent: 2 +- proto: Chair + entities: + - uid: 5731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,4.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-2.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-40.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-4.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-4.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-1.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-0.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-3.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,40.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-22.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-22.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,39.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,39.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,39.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,39.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,13.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,12.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,11.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,10.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,21.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,22.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,23.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,20.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,19.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,39.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,39.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,38.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,38.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,38.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,38.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,38.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,38.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-9.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: -37.5,47.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,49.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: -49.5,50.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: -50.5,50.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: -51.5,50.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,48.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,47.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,47.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,48.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,49.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,46.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,46.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,46.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-19.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,0.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 5415 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.415972,-10.23035 + parent: 2 + - uid: 5817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.747646,-13.674477 + parent: 2 + - uid: 5818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: -13.583773,-4.5641017 + parent: 2 + - uid: 5820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.67909,-12.40797 + parent: 2 + - uid: 5821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.36659,-13.455574 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: 10.666075,-30.613314 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: 3.211309,-6.6789384 + parent: 2 + - uid: 5826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.543688,-20.216572 + parent: 2 + - uid: 5827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.728575,-31.144934 + parent: 2 + - uid: 5828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.353575,-32.12478 + parent: 2 + - uid: 5829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.80179,18.20842 + parent: 2 + - uid: 5831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.6138735,28.666597 + parent: 2 + - uid: 5832 + components: + - type: Transform + rot: 0.16572801669570403 rad + pos: -61.542484,-6.996279 + parent: 2 + - uid: 5833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.085514,-8.287038 + parent: 2 + - uid: 5834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.495026,-14.251597 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: 15.68679,29.406694 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: 6.4115915,23.493132 + parent: 2 + - uid: 5838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.557425,21.731491 + parent: 2 + - uid: 14359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,5.5 + parent: 2 + - uid: 14713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 14714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,10.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,9.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - uid: 17472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,5.5 + parent: 2 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 5839 + components: + - type: Transform + pos: 25.525442,5.5289335 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 5840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.453184,-4.092387 + parent: 2 + - uid: 5842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.60216,-33.817013 + parent: 2 + - uid: 5843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.595509,-5.7275686 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: -19.652205,22.521683 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: -13.658073,21.511776 + parent: 2 + - uid: 5846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.142384,-6.126006 + parent: 2 + - uid: 5848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5383797,-17.353676 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 6.9758797,-15.414829 + parent: 2 + - uid: 5851 + components: + - type: Transform + rot: 1.2265667478230338 rad + pos: -36.25269,-6.3051906 + parent: 2 + - uid: 5852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-74.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: -12.5,-78.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-73.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-74.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: -21.5,-78.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-78.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.365059,-7.3702555 + parent: 2 + - uid: 5864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,32.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,33.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,33.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,34.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,34.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,32.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.38911,-5.868959 + parent: 2 + - uid: 5872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,33.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.64448,-8.406829 + parent: 2 + - uid: 5875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-50.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-50.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-50.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 5879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.077522,2.7313628 + parent: 2 + - uid: 5880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.266788,20.770468 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: -2.6649227,-32.512672 + parent: 2 + - uid: 5882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.200975,-29.84575 + parent: 2 + - uid: 5883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,10.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,26.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + rot: 0.638550877571106 rad + pos: -10.009502,35.599583 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: -48.5,41.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,22.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,43.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,41.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,43.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.578865,29.158278 + parent: 2 + - uid: 5894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-39.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 5895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.6117735,-10.606748 + parent: 2 + - uid: 5898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.3305235,-10.335726 + parent: 2 + - uid: 5899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-3.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.679546,9.418754 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: -20.752462,10.336058 + parent: 2 + - uid: 5902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-3.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,22.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,23.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,26.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,25.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,31.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,40.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,40.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,40.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,40.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,25.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,27.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,26.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: -49.5,28.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,25.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,26.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,27.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: -44.5,26.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: -48.5,28.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-14.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,10.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 5936 + components: + - type: Transform + pos: 15.2492895,28.416422 + parent: 2 +- proto: chem_master + entities: + - uid: 5937 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: -27.5,3.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 5935 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 +- proto: ChemicalPayload + entities: + - uid: 5941 + components: + - type: Transform + pos: 9.617371,21.476503 + parent: 2 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 5942 + components: + - type: Transform + pos: -28.317106,3.867569 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: -28.192106,3.76333 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 5944 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 +- proto: Cigar + entities: + - uid: 5945 + components: + - type: Transform + pos: -10.435092,-2.2350075 + parent: 2 +- proto: Cigarette + entities: + - uid: 5946 + components: + - type: Transform + pos: -1.2400136,-9.542189 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 5947 + components: + - type: Transform + pos: -49.604855,-0.48506254 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: -49.667355,-0.45381254 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: -49.854855,-0.36006254 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: -32.787483,14.005925 + parent: 2 + - uid: 5953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.797047,13.286675 + parent: 2 + - uid: 5954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.8962636,-10.230166 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: -0.2712636,-9.312862 + parent: 2 + - uid: 5956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.2504303,-7.697158 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: -1.104597,-8.155809 + parent: 2 + - uid: 5958 + components: + - type: Transform + pos: 14.1451235,28.426847 + parent: 2 + - uid: 5959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.551373,28.770836 + parent: 2 +- proto: CigarSpent + entities: + - uid: 5960 + components: + - type: Transform + pos: -49.68298,-0.5319376 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: -6.1678247,-7.392461 + parent: 2 +- proto: CigPackBlack + entities: + - uid: 5962 + components: + - type: Transform + pos: -13.670089,-38.21763 + parent: 2 +- proto: CigPackBlue + entities: + - uid: 5963 + components: + - type: Transform + pos: 15.7701235,28.416422 + parent: 2 +- proto: CigPackGreen + entities: + - uid: 5964 + components: + - type: Transform + pos: -33.656166,13.587164 + parent: 2 +- proto: CigPackRed + entities: + - uid: 5965 + components: + - type: Transform + pos: -6.2785864,-10.556837 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 5966 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 +- proto: CircuitImprinterMachineCircuitboard + entities: + - uid: 5967 + components: + - type: Transform + pos: -14.560801,-29.289936 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 6245 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 +- proto: CloningPod + entities: + - uid: 5968 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6138 +- proto: ClosetBombFilled + entities: + - uid: 5970 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: -49.5,37.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 5975 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: -52.5,20.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: 18.211266,-25.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 5997 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 6008 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 6009 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 6010 + components: + - type: Transform + pos: -50.5,34.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -50.5,35.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 6012 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 6014 + components: + - type: Transform + pos: 18.211266,-26.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: -35.5,47.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6023 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 1119 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 +- proto: ClosetToolFilled + entities: + - uid: 6029 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: 18.211266,-24.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 +- proto: ClosetWallEmergency + entities: + - uid: 6032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,12.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 6033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,45.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 6034 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,46.5 + parent: 2 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 6037 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 +- proto: ClosetWallOrange + entities: + - uid: 6039 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 6041 + components: + - type: Transform + pos: 29.527794,18.740719 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: 17.485447,26.751778 + parent: 2 +- proto: ClothingBeltBandolier + entities: + - uid: 6043 + components: + - type: Transform + pos: -44.28039,-6.7017746 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: -44.72831,-6.409906 + parent: 2 +- proto: ClothingBeltCeremonial + entities: + - uid: 6045 + components: + - type: Transform + pos: 1.4949155,20.411163 + parent: 2 +- proto: ClothingBeltChampion + entities: + - uid: 6046 + components: + - type: Transform + pos: 1.0714827,18.494755 + parent: 2 +- proto: ClothingBeltMartialBlack + entities: + - uid: 6047 + components: + - type: Transform + pos: 30.517687,16.270493 + parent: 2 +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 6048 + components: + - type: Transform + pos: -49.576385,43.535995 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 6049 + components: + - type: Transform + pos: 23.567316,26.744034 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: -38.63154,18.250366 + parent: 2 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 6051 + components: + - type: Transform + pos: 16.420506,13.364536 + parent: 2 +- proto: ClothingEyesGlassesOutlawGlasses + entities: + - uid: 6052 + components: + - type: MetaData + name: silly glasses + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.67021,-16.227297 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 5695 + components: + - type: Transform + pos: -8.356562,-39.588528 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 6054 + components: + - type: Transform + pos: -40.541256,39.437683 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: 28.882524,18.45939 + parent: 2 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 6056 + components: + - type: Transform + pos: -63.287838,-6.2306004 + parent: 2 +- proto: ClothingHeadAreopagite + entities: + - uid: 6057 + components: + - type: Transform + pos: -48.492077,26.412785 + parent: 2 +- proto: ClothingHeadCourierFlipped + entities: + - uid: 6058 + components: + - type: Transform + pos: 8.2997675,-4.4767094 + parent: 2 +- proto: ClothingHeadHatBeretCap + entities: + - uid: 6059 + components: + - type: Transform + pos: -10.056755,35.562653 + parent: 2 +- proto: ClothingHeadHatBeretCmo + entities: + - uid: 6060 + components: + - type: Transform + pos: -8.585127,34.42984 + parent: 2 +- proto: ClothingHeadHatBeretEngineering + entities: + - uid: 6061 + components: + - type: Transform + pos: -11.463266,32.41284 + parent: 2 +- proto: ClothingHeadHatBeretHoS + entities: + - uid: 6062 + components: + - type: Transform + pos: -11.463266,34.41682 + parent: 2 +- proto: ClothingHeadHatBeretMysta + entities: + - uid: 6063 + components: + - type: Transform + pos: -11.372104,33.375153 + parent: 2 +- proto: ClothingHeadHatCone + entities: + - uid: 6064 + components: + - type: Transform + pos: -8.767582,-19.624268 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: -8.288415,-19.624268 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: -8.496748,-19.290703 + parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 6067 + components: + - type: Transform + pos: -34.621883,32.745262 + parent: 2 +- proto: ClothingHeadHatHopcap + entities: + - uid: 6068 + components: + - type: Transform + pos: -8.5721035,33.414215 + parent: 2 +- proto: ClothingHeadHatJesterAlt + entities: + - uid: 6069 + components: + - type: Transform + pos: -52.468784,47.862778 + parent: 2 +- proto: ClothingHeadHatPaper + entities: + - uid: 6070 + components: + - type: Transform + pos: 4.4031324,-2.8545325 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: -33.23254,13.700514 + parent: 2 +- proto: ClothingHeadHatSombrero + entities: + - uid: 6072 + components: + - type: Transform + pos: 1.7666821,-2.5246186 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 6073 + components: + - type: Transform + pos: 23.457123,-19.327557 + parent: 2 +- proto: ClothingHeadHatWizardFake + entities: + - uid: 6074 + components: + - type: Transform + pos: -48.488728,27.811165 + parent: 2 +- proto: ClothingHeadHelmetAncient + entities: + - uid: 6075 + components: + - type: Transform + pos: -45.559616,65.48788 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 6076 + components: + - type: Transform + pos: -40.537624,1.7286271 + parent: 2 +- proto: ClothingHeadHelmetTemplar + entities: + - uid: 6077 + components: + - type: Transform + pos: -49.4264,27.869759 + parent: 2 +- proto: ClothingMaskClown + entities: + - uid: 6078 + components: + - type: Transform + pos: -42.499344,1.6973771 + parent: 2 +- proto: ClothingMaskSterile + entities: + - uid: 6079 + components: + - type: Transform + pos: 28.401783,14.799805 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: 28.577597,16.44043 + parent: 2 +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 6081 + components: + - type: Transform + pos: 9.051177,-32.178223 + parent: 2 +- proto: ClothingOuterApronChef + entities: + - uid: 6083 + components: + - type: Transform + pos: -36.57301,-24.390759 + parent: 2 +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 6084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.028408,61.378693 + parent: 2 +- proto: ClothingOuterWinterMed + entities: + - uid: 6085 + components: + - type: Transform + pos: 17.701422,21.768103 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: 17.378506,21.51793 + parent: 2 +- proto: ClothingShoesBling + entities: + - uid: 6087 + components: + - type: Transform + pos: -60.347687,-3.4251437 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 6088 + components: + - type: Transform + pos: -20.697605,-21.704687 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: -20.70455,-25.651873 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: -20.31566,-25.554583 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: -20.64205,-25.373901 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -20.287882,-21.551802 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -20.655937,-21.371122 + parent: 2 +- proto: ClothingShoesBootsWork + entities: + - uid: 6095 + components: + - type: Transform + pos: -36.84664,17.434761 + parent: 2 +- proto: ClothingShoesGaloshes + entities: + - uid: 6096 + components: + - type: Transform + pos: 0.6865115,9.316086 + parent: 2 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 6097 + components: + - type: Transform + pos: 39.612816,19.54828 + parent: 2 +- proto: ClothingShoesSlippers + entities: + - uid: 6098 + components: + - type: Transform + pos: 19.471035,24.516733 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: 19.700201,24.339525 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: 19.346035,24.693937 + parent: 2 +- proto: ClothingUnderSocksCoder + entities: + - uid: 6101 + components: + - type: Transform + pos: 3.2979054,-16.180712 + parent: 2 +- proto: ClothingUniformJumpsuitSuitBrownAlt + entities: + - uid: 6102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.71352,48.250168 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: -50.49964,46.379307 + parent: 2 +- proto: ClothingUniformMartialGi + entities: + - uid: 6104 + components: + - type: Transform + pos: 30.303776,16.804146 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: 30.460026,16.564396 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: 30.616276,16.824993 + parent: 2 +- proto: ClothingUniformMNKGymBra + entities: + - uid: 6107 + components: + - type: Transform + pos: -38.27737,18.636051 + parent: 2 +- proto: ClothingUniformRat + entities: + - uid: 6109 + components: + - type: Transform + pos: -50.45654,26.608307 + parent: 2 +- proto: CombatKnife + entities: + - uid: 6110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.43691832,23.500238 + parent: 2 +- proto: ComfyChair + entities: + - uid: 6111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-75.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-77.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-77.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-75.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - uid: 6123 + components: + - type: MetaData + desc: It looks comfy, your honor. + name: your honor's comfy chair + - type: Transform + pos: -23.5,44.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,39.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,36.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: -31.5,38.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 6130 + components: + - type: Transform + pos: -14.633717,-28.65408 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 6131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-51.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 6133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11830: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerBroken + entities: + - uid: 6134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-70.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 6135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 6136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 +- proto: ComputerCloningConsole + entities: + - uid: 6138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11768: + - MedicalScannerSender: MedicalScannerReceiver + 5968: + - CloningPodSender: CloningPodReceiver +- proto: ComputerComms + entities: + - uid: 6139 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,37.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 6141 + components: + - type: Transform + pos: -21.5,-73.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 6144 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,41.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 6146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,41.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,37.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 6153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,20.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 6154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,41.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 6155 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 6157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,43.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-46.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 6159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,40.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,42.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 6162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-34.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 6163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-34.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 6164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-79.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-81.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,10.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: -41.5,51.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 6169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-79.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,43.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,33.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 6174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,42.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 6178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,41.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 6180 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 6181 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 6183 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 6186 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14707 + - uid: 6187 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14707 + - uid: 6188 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14707 + - uid: 6189 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14707 + - uid: 6190 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14703 + - uid: 6191 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14703 + - uid: 6192 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14703 + - uid: 6193 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14703 + - uid: 6194 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14707 + - uid: 6195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14707 + - uid: 6197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14706 + - uid: 6198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14706 + - uid: 6199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14706 + - uid: 6200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14705 + - uid: 6201 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6203 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6204 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6205 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6207 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6208 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6209 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6210 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6211 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6212 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6213 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6215 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14704 + - uid: 6216 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-34.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13609 + - uid: 6218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14707 + - uid: 6219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14707 +- proto: CornSeeds + entities: + - uid: 6220 + components: + - type: Transform + pos: 32.565235,-12.427586 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 6221 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 +- proto: CrateChemistryS + entities: + - uid: 6223 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 +- proto: CrateEmergencyInflatablewall + entities: + - uid: 6224 + components: + - type: Transform + pos: 19.3288,-24.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 6225 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 6230 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 +- proto: CrateEngineeringSingularityCollector + entities: + - uid: 6231 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 6237 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 +- proto: CrateEngineeringSingularityEmitter + entities: + - uid: 6247 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 +- proto: CrateEngineeringSolar + entities: + - uid: 6251 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: -40.5,49.5 + parent: 2 +- proto: CrateEngineeringToolbox + entities: + - uid: 6253 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 6254 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 6260 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 +- proto: CrateFunBoxing + entities: + - uid: 6261 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 2921 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 +- proto: CrateHydroponics + entities: + - uid: 6264 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 +- proto: CrateHydroSecure + entities: + - uid: 6265 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 +- proto: CrateMaterialGlass + entities: + - uid: 6266 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: -41.5,49.5 + parent: 2 +- proto: CrateMedicalScrubs + entities: + - uid: 6268 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 6269 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateNPCCow + entities: + - uid: 6270 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 +- proto: CrateNPCHamster + entities: + - uid: 6271 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 +- proto: CrateScience + entities: + - uid: 6272 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 +- proto: CrateScienceSecure + entities: + - uid: 6273 + components: + - type: Transform + pos: -40.5,37.5 + parent: 2 +- proto: CrateSecurityNonlethal + entities: + - uid: 6274 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 +- proto: CrateSecurityRiot + entities: + - uid: 6275 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 +- proto: CrayonWhite + entities: + - uid: 6276 + components: + - type: Transform + pos: 12.680383,-31.937042 + parent: 2 +- proto: CrayonYellow + entities: + - uid: 6277 + components: + - type: Transform + pos: 12.352258,-32.062134 + parent: 2 +- proto: Crematorium + entities: + - uid: 6278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,38.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 6279 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: CriminalRecordsComputerCircuitboard + entities: + - uid: 6280 + components: + - type: Transform + pos: -14.342051,-28.424751 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 6281 + components: + - type: Transform + pos: 4.5887365,-10.48069 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 7653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,18.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,20.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,18.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,20.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerPrisoner + entities: + - uid: 17467 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 6282 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 6283 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 6284 + components: + - type: Transform + pos: -41.983334,41.682137 + parent: 2 +- proto: d6Dice + entities: + - uid: 6285 + components: + - type: Transform + pos: -36.346603,-12.981798 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 7137 + components: + - type: Transform + pos: -15.5,-76.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 6108 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 9647 + components: + - type: Transform + pos: -41.5,43.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 11506 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 12731 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 11490 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 7154 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 17466 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 11488 + components: + - type: Transform + pos: -18.5,7.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 10634 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 16896 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 10620 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 14038 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 12874 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 7166 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 11492 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 10619 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 10627 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 +- proto: DefaultStationBeaconCommand + entities: + - uid: 10615 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 10614 + components: + - type: Transform + pos: -23.5,40.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 10629 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 13469 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 625 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 6119 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 7300 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 641 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 11507 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 13454 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 10612 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 16385 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 10624 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 10560 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 11495 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 16362 + components: + - type: Transform + pos: -47.5,29.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 9645 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 +- proto: DefaultStationBeaconMedical + entities: + - uid: 10630 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 10633 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 11509 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 10623 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 10622 + components: + - type: Transform + pos: -48.5,40.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 10375 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 7183 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 11489 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 16361 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 9646 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 9530 + components: + - type: Transform + pos: -41.5,50.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 10621 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 11511 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 10631 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 11515 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 11510 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 6286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,2.5 + parent: 2 +- proto: DeployableBarrier + entities: + - uid: 6289 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 6292 + components: + - type: Transform + pos: -33.34242,29.657118 + parent: 2 + - type: Anchorable + - uid: 6293 + components: + - type: Transform + pos: -22.62739,-6.2531323 + parent: 2 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6294 + components: + - type: Transform + pos: -10.555967,8.660141 + parent: 2 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6295 + components: + - type: Transform + pos: 14.373379,9.564 + parent: 2 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6296 + components: + - type: Transform + pos: 18.722757,-2.328849 + parent: 2 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6297 + components: + - type: Transform + pos: 13.527524,-7.3327374 + parent: 2 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6298 + components: + - type: Transform + pos: -9.677367,-16.180046 + parent: 2 + - type: Anchorable + missingComponents: + - Item + - Pullable +- proto: DiceBag + entities: + - uid: 6299 + components: + - type: Transform + pos: -49.01911,27.04921 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 6300 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 +- proto: DisgustingSweptSoup + entities: + - uid: 6301 + components: + - type: Transform + pos: -63.024055,-8.147281 + parent: 2 +- proto: DisposalBend + entities: + - uid: 6302 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,0.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,1.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,3.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-0.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-14.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,40.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,0.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-21.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-22.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-10.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-18.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-33.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-32.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: -16.5,-71.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-76.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-0.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,5.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,25.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,39.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,43.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,43.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: -24.5,38.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,38.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,15.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,25.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,6.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,34.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,26.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,22.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,29.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,29.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,34.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,33.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,34.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: -39.5,40.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-37.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 6369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-22.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-33.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,26.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: -39.5,36.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 6393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,0.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,0.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,0.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-33.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: -24.5,36.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 3026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,17.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,17.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,3.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-7.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-8.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-9.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-10.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-11.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-12.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-13.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-14.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,6.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,5.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-21.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 13.5,25.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 13.5,23.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,21.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,16.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,20.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,19.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,18.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,17.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-19.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-18.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-21.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-21.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-21.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-21.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-21.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-21.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-20.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-19.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-18.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-17.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-16.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-15.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-14.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-13.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-12.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-11.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-10.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-8.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-7.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-5.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-4.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-3.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-2.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-1.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-21.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-14.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-12.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-11.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-9.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-8.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,2.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,0.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,0.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-8.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-9.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-11.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-30.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-31.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-32.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-33.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-33.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-31.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-29.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-28.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-34.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-36.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-72.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-73.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-74.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-75.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-77.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-76.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-76.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-78.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-79.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-80.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-81.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-82.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-83.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-84.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-85.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-86.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-13.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-14.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-6.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,5.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,7.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,10.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,12.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,13.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,25.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,25.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,26.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,27.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,28.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,29.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,30.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,31.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,32.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,34.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,36.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,35.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,35.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,35.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,40.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,41.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,42.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,38.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,38.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,38.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,39.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,39.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,39.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,39.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,39.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,0.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,2.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,8.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,14.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,16.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,19.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,22.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,24.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,26.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,27.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,28.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,29.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,31.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,32.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,33.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,34.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,35.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,38.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,37.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,15.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,15.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,15.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,15.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,15.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,15.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,15.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,15.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,15.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,15.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,15.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,15.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,15.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,14.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,15.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,15.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,15.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,15.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,15.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,15.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,15.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,15.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,15.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: -50.5,20.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: -50.5,19.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: -50.5,18.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -50.5,16.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,25.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,25.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,25.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,25.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,25.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,25.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,6.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,6.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,6.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,6.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,6.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,6.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,6.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,6.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,6.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,6.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,6.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,6.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,6.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,6.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,6.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,6.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,26.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,26.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,26.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,26.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,26.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,26.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,26.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,22.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,22.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,22.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,28.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,27.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,26.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,25.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,24.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,23.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,29.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,27.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,28.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,29.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,31.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,32.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,33.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,33.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,33.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,33.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,33.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,33.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,33.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,33.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,33.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,33.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,33.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,33.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,33.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,33.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,33.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: -57.5,32.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,35.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,34.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: -39.5,37.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: -39.5,39.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,40.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,40.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,40.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,40.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,36.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,36.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,38.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 6985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-10.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-14.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-22.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,37.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: -44.5,41.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-19.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-71.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: -19.5,-75.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-88.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,35.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,37.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,5.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,25.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,31.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,36.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,17.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-40.5 + parent: 2 + - uid: 14748 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 7038 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: -40.5,36.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: -11.5,44.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: -27.5,37.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + pos: -12.5,36.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: -19.5,-75.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + pos: -57.5,31.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + pos: -44.5,41.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + pos: -25.5,17.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: -23.5,36.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 7089 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 +- proto: DogBed + entities: + - uid: 7092 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: -48.5,39.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 7102 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: -22.5,-74.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 +- proto: Dresser + entities: + - uid: 7105 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 14152 + components: + - type: Transform + pos: -1.5,40.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 11519 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 12115 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 5823 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 11520 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 12261 + components: + - type: Transform + pos: -46.5,41.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 631 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 7110 + components: + - type: Transform + pos: -1.7504303,-9.396182 + parent: 2 + - uid: 7111 + components: + - type: Transform + pos: -1.229597,-9.07304 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 7114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5212636,-11.241214 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: -1.8545971,-11.282908 + parent: 2 +- proto: DrinkCafeLatte + entities: + - uid: 7116 + components: + - type: Transform + pos: -20.679987,-2.1549442 + parent: 2 +- proto: DrinkChangelingStingCan + entities: + - uid: 7117 + components: + - type: Transform + pos: -30.521725,-23.399918 + parent: 2 +- proto: DrinkCoffee + entities: + - uid: 7118 + components: + - type: Transform + pos: -20.620462,-14.877153 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: -20.682962,-7.126827 + parent: 2 + - uid: 7120 + components: + - type: Transform + pos: -9.650637,1.9549263 + parent: 2 +- proto: DrinkColaCan + entities: + - uid: 7121 + components: + - type: Transform + pos: 3.5747638,-7.359473 + parent: 2 +- proto: DrinkDetFlask + entities: + - uid: 7122 + components: + - type: Transform + pos: -34.904297,32.002953 + parent: 2 +- proto: DrinkDrGibbCan + entities: + - uid: 7123 + components: + - type: Transform + pos: 8.70818,6.552321 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: 5.7441163,-39.113068 + parent: 2 +- proto: DrinkEnergyDrinkCan + entities: + - uid: 7125 + components: + - type: Transform + pos: -2.6950586,-15.133556 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: 4.202278,-2.2945619 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: 4.296028,-2.4926157 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: 4.4731116,-2.2632902 + parent: 2 + - uid: 7129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.6918616,-2.6177022 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 7131 + components: + - type: MetaData + desc: An all time classic, mild cocktail. + name: gin and tonic glass + - type: Transform + pos: -6.615975,-7.247586 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: GinTonic + Quantity: 30 + - type: TransformableContainer + transformed: True + currentReagent: + metamorphicChangeColor: True + id: GinTonic + flavor: gintonic + flavorMinimum: 0.1 + slippery: False + viscosity: 0 + worksOnTheDead: False + metabolisms: + Drink: + effects: + - !type:SatiateThirst + shouldLog: False + logImpact: Low + factor: 2 + probability: 1 + conditions: null + - !type:AdjustReagent + shouldLog: False + logImpact: Low + probability: 1 + conditions: null + amount: 0.15 + group: null + reagent: Ethanol + metabolismRate: 0.5 + reactiveEffects: + Flammable: + effects: + - !type:FlammableReaction + logImpact: Medium + shouldLog: True + probability: 1 + conditions: null + multiplier: 0.05 + methods: + - Touch + tileReactions: + - !type:FlammableTileReaction + temperatureMultiplier: 1.35 + plantMetabolism: + - !type:PlantAdjustNutrition + shouldLog: False + logImpact: Low + prob: 1 + amount: 0.25 + probability: 1 + conditions: null + - !type:PlantAdjustWater + shouldLog: False + logImpact: Low + prob: 1 + amount: 0.7 + probability: 1 + conditions: null + pricePerUnit: 0 + footstepSound: !type:SoundCollectionSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 20 + busName: Master + pitch: 1 + volume: 0 + attenuation: LinearDistanceClamped + collection: FootstepWater + name: reagent-name-gin-tonic + metamorphicFillBaseName: null + group: Drinks + parent: + - BaseAlcohol + abstract: False + desc: reagent-desc-gin-tonic + physicalDesc: reagent-physical-desc-strong-smelling + color: '#004166FF' + specificHeat: 1 + boilingPoint: null + meltingPoint: null + metamorphicSprite: + sprite: Objects/Consumable/Drinks/gintonicglass.rsi + state: icon + metamorphicMaxFillLevels: 0 + recognizable: False + - uid: 7132 + components: + - type: MetaData + desc: Whiskey, mixed with cola. Surprisingly refreshing. + name: whiskey cola glass + - type: Transform + pos: -10.289259,-2.5268764 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: WhiskeyCola + Quantity: 30 + - type: TransformableContainer + transformed: True + currentReagent: + metamorphicChangeColor: True + id: WhiskeyCola + flavor: whiskeycola + flavorMinimum: 0.1 + slippery: False + viscosity: 0 + worksOnTheDead: False + metabolisms: + Drink: + effects: + - !type:SatiateThirst + shouldLog: False + logImpact: Low + factor: 2 + probability: 1 + conditions: null + - !type:AdjustReagent + shouldLog: False + logImpact: Low + probability: 1 + conditions: null + amount: 0.15 + group: null + reagent: Ethanol + metabolismRate: 0.5 + reactiveEffects: + Flammable: + effects: + - !type:FlammableReaction + logImpact: Medium + shouldLog: True + probability: 1 + conditions: null + multiplier: 0.05 + methods: + - Touch + tileReactions: + - !type:FlammableTileReaction + temperatureMultiplier: 1.35 + plantMetabolism: + - !type:PlantAdjustNutrition + shouldLog: False + logImpact: Low + prob: 1 + amount: 0.25 + probability: 1 + conditions: null + - !type:PlantAdjustWater + shouldLog: False + logImpact: Low + prob: 1 + amount: 0.7 + probability: 1 + conditions: null + pricePerUnit: 0 + footstepSound: !type:SoundCollectionSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 20 + busName: Master + pitch: 1 + volume: 0 + attenuation: LinearDistanceClamped + collection: FootstepWater + name: reagent-name-whiskey-cola + metamorphicFillBaseName: null + group: Drinks + parent: + - BaseAlcohol + abstract: False + desc: reagent-desc-whiskey-cola + physicalDesc: reagent-physical-desc-bubbly + color: '#3E1B00FF' + specificHeat: 1 + boilingPoint: null + meltingPoint: null + metamorphicSprite: + sprite: Objects/Consumable/Drinks/whiskeycolaglass.rsi + state: icon + metamorphicMaxFillLevels: 0 + recognizable: False +- proto: DrinkGoldenCup + entities: + - uid: 7133 + components: + - type: Transform + pos: 0.75259066,18.887726 + parent: 2 +- proto: DrinkGrapeCan + entities: + - uid: 7134 + components: + - type: Transform + pos: 8.374847,6.5835924 + parent: 2 +- proto: DrinkIcedTeaCan + entities: + - uid: 7135 + components: + - type: Transform + pos: 8.249847,6.802495 + parent: 2 + - uid: 7136 + components: + - type: Transform + pos: 3.0435138,-7.2239623 + parent: 2 +- proto: DrinkManlyDorfGlass + entities: + - uid: 7138 + components: + - type: Transform + pos: 10.738677,-31.104563 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: 10.305383,-31.436697 + parent: 2 +- proto: DrinkMugBlack + entities: + - uid: 7140 + components: + - type: Transform + pos: -9.319299,32.83632 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: Coffee + Quantity: 20 +- proto: DrinkMugBlue + entities: + - uid: 7141 + components: + - type: Transform + pos: -9.272424,34.712624 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: DoctorsDelight + Quantity: 20 +- proto: DrinkMugGreen + entities: + - uid: 7142 + components: + - type: Transform + pos: -9.397424,33.790108 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: SoyLatte + Quantity: 20 +- proto: DrinkMugMetal + entities: + - uid: 7143 + components: + - type: Transform + pos: -58.624435,-3.4879594 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: -58.76118,-3.1559281 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: -59.26182,2.693884 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: -59.428486,2.4645584 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: -59.657654,2.6521893 + parent: 2 + - uid: 7148 + components: + - type: Transform + pos: -10.700483,32.45439 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: Coffee + Quantity: 20 +- proto: DrinkMugMoebius + entities: + - uid: 7149 + components: + - type: Transform + pos: -10.709924,33.602478 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: SpaceDrugs + Quantity: 5 + - data: null + ReagentId: IcedCoffee + Quantity: 15 +- proto: DrinkMugOne + entities: + - uid: 7150 + components: + - type: Transform + pos: -10.616174,34.75953 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: IcedCoffee + Quantity: 20 +- proto: DrinkMugRed + entities: + - uid: 7151 + components: + - type: Transform + pos: -10.700483,34.07939 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: IrishCoffee + Quantity: 20 +- proto: DrinkRumBottleFull + entities: + - uid: 17463 + components: + - type: Transform + pos: 2.7259212,34.95999 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 7157 + components: + - type: Transform + pos: -5.1731544,-7.5824575 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: -4.975238,-7.363556 + parent: 2 + - uid: 17464 + components: + - type: Transform + pos: 2.3092546,34.876602 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: 2.4967546,34.574306 + parent: 2 +- proto: DrinkSilencerGlass + entities: + - uid: 7159 + components: + - type: Transform + pos: -35.32141,11.850042 + parent: 2 +- proto: DrinkSingulo + entities: + - uid: 7160 + components: + - type: Transform + pos: -10.513839,-40.031387 + parent: 2 +- proto: DrinkSodaWaterCan + entities: + - uid: 7161 + components: + - type: Transform + pos: 8.686324,-31.392466 + parent: 2 +- proto: DrinkSoyLatte + entities: + - uid: 7162 + components: + - type: Transform + pos: 20.79814,-5.199406 + parent: 2 +- proto: DrinkSpaceMountainWindCan + entities: + - uid: 7163 + components: + - type: Transform + pos: -7.7122755,19.819637 + parent: 2 +- proto: DrinkSpaceUpCan + entities: + - uid: 7164 + components: + - type: Transform + pos: 8.577665,6.831503 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 7167 + components: + - type: Transform + pos: -20.323587,-14.877153 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: -20.198587,-15.033403 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: -20.386087,-15.127153 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: -20.245462,-15.345903 + parent: 2 +- proto: DrinkWaterCup + entities: + - uid: 7171 + components: + - type: Transform + pos: -38.694744,31.552332 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: -38.340576,31.594028 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -38.517662,31.698267 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: -38.475994,31.479364 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: -25.372353,-4.2691045 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -25.684853,-4.1909795 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: -25.653603,-4.4722295 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: -25.356728,-4.5034795 + parent: 2 +- proto: DrinkWhiskeyGlass + entities: + - uid: 7179 + components: + - type: Transform + pos: -34.792107,34.534798 + parent: 2 +- proto: DrinkWineGlass + entities: + - uid: 7180 + components: + - type: Transform + pos: 21.29036,32.63575 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: 21.79023,32.68312 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: -13.151632,-9.295929 + parent: 2 +- proto: Dropper + entities: + - uid: 7184 + components: + - type: Transform + pos: -28.348356,3.377645 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -19.54627,6.510217 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: 15.466989,20.498625 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: -35.433304,27.757446 + parent: 2 +- proto: ElectricGuitarInstrument + entities: + - uid: 7188 + components: + - type: Transform + pos: -54.45359,-13.424999 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 7189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,31.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-34.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,12.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-36.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,39.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,10.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,32.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,31.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -50.5,50.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-22.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: -10.5,39.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,41.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,8.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,37.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,16.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-7.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,15.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: -29.5,32.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,40.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-76.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: -15.5,-74.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-76.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-75.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-83.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 +- proto: Emitter + entities: + - uid: 7254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-42.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-34.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-45.5 + parent: 2 +- proto: EncryptionKeyCargo + entities: + - uid: 7261 + components: + - type: Transform + parent: 7260 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 7264 + components: + - type: Transform + parent: 7263 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 7266 + components: + - type: Transform + parent: 7265 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 7268 + components: + - type: Transform + parent: 7267 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 7271 + components: + - type: Transform + parent: 7270 + - type: Physics + canCollide: False +- proto: EncryptionKeyRobo + entities: + - uid: 7269 + components: + - type: Transform + parent: 7267 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 7273 + components: + - type: Transform + parent: 7272 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 7275 + components: + - type: Transform + parent: 7274 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 7262 + components: + - type: Transform + parent: 7260 + - type: Physics + canCollide: False +- proto: EpinephrineChemistryBottle + entities: + - uid: 7276 + components: + - type: Transform + pos: 20.344051,5.533956 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 7277 + components: + - type: Transform + pos: -44.5,39.5 + parent: 2 +- proto: ExplosivesSignMed + entities: + - uid: 7278 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 7283 + components: + - type: Transform + pos: 2.6238086,-9.236151 + parent: 2 +- proto: ExtinguisherCabinet + entities: + - uid: 7284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,22.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 7285 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: -21.5,37.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: -50.5,31.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-38.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 7308 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - type: FaxMachine + name: cargo + - uid: 7309 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - type: FaxMachine + name: lawyer's office + - uid: 7310 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - type: FaxMachine + name: head of personnel + - uid: 7311 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - type: FaxMachine + name: security + - uid: 7312 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - type: FaxMachine + name: bridge + - uid: 7313 + components: + - type: Transform + pos: -19.5,-74.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - type: FaxMachine + name: reporter's office + - uid: 7695 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - type: FaxMachine + name: chief engineer + - uid: 17424 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - type: FaxMachine + name: engineering +- proto: FaxMachineCaptain + entities: + - uid: 7315 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - type: FaxMachine + name: captain's office +- proto: FenceMetalCorner + entities: + - uid: 7316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 2 +- proto: FenceMetalGate + entities: + - uid: 7317 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 7318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-26.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 2 +- proto: filingCabinet + entities: + - uid: 7323 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 7324 + components: + - type: Transform + pos: 14.259292,-34.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 7330 + components: + - type: Transform + pos: 4.748836,-15.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 4.248836,-15.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: -22.5,-77.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 7336 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 7156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 7443 + - 7444 + - 7445 + - 7446 + - 7447 + - 7449 + - 7448 + - 7453 + - 7452 + - 7451 + - 7454 + - 7455 + - 7450 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7337 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 7394 + - 7391 + - 7464 + - 7462 + - 7463 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 7422 + - 7421 + - 7425 + - 7542 + - 7561 + - 7560 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7339 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 7487 + - 7488 + - 7489 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 7489 + - 7488 + - 7467 + - 7435 + - 7379 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 7535 + - 7534 + - 7367 + - 7461 + - 7404 + - 7398 + - 7409 + - 7410 + - 7524 + - 7523 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 7382 + - 7525 + - 7526 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7343 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 7356 + - 7481 + - 7480 + - 7384 + - 7475 + - 7476 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 7551 + - 7552 + - 7553 + - 7554 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 7396 + - 7397 + - 7395 + - 7389 + - 7460 + - 7534 + - 7535 + - 7459 + - 7458 + - 7358 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 7524 + - 7523 + - 7372 + - 7371 + - 7531 + - 7530 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7347 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 7438 + - 7439 + - 7440 + - 7437 + - 7436 + - 7393 + - 7392 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 434 + - 7529 + - 7533 + - 7532 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 7426 + - 7479 + - 7460 + - 7435 + - 7465 + - 7466 + - 7468 + - 7473 + - 7474 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7351 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 7371 + - 7372 + - 7381 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 7357 + - 7457 + - 7456 + - 7459 + - 7458 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7353 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 7566 + - 7565 + - 7564 + - 7563 + - 7363 + - 7364 + - 7416 + - 441 + - 442 + - type: AtmosDevice + joinedGrid: 2 +- proto: FireAxeCabinetFilled + entities: + - uid: 7354 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 +- proto: Firelock + entities: + - uid: 7356 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: -35.5,42.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: -36.5,42.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: -35.5,30.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: -37.5,32.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: -18.5,-76.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: -16.5,-79.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,22.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 7390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,5.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-7.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,28.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,27.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,29.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,28.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-51.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 7417 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-26.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: -21.5,35.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7444 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7445 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7446 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7447 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7448 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7449 + components: + - type: Transform + pos: -55.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7450 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7451 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7452 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7453 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7454 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7455 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7156 + - uid: 7456 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-8.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-6.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-6.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,5.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,14.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,15.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,15.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,14.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,8.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,8.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,24.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,24.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,31.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,33.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: -51.5,36.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: -25.5,26.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: -33.5,26.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: -11.5,26.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: -11.5,25.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: -22.5,37.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -24.5,37.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,17.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,15.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,8.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,8.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 7567 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: 10.5,27.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -33.5,38.5 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 7571 + components: + - type: Transform + pos: -0.81021476,10.196323 + parent: 2 +- proto: Floodlight + entities: + - uid: 7572 + components: + - type: Transform + pos: -30.2877,-10.496739 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -30.704367,-10.475892 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 22.724634,-25.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: -1.6349056,10.465635 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: -8.722752,-20.562252 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: -8.264419,-20.572676 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: 4.249159,-5.478261 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 4.7387424,-5.488684 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: 31.762112,28.453157 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: -28.682898,18.498981 + parent: 2 +- proto: FloorDrain + entities: + - uid: 7582 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7583 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7584 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7585 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7586 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7587 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7588 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7589 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7591 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7592 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7593 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 7594 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorWaterEntity + entities: + - uid: 7595 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 +- proto: FoamBlade + entities: + - uid: 7599 + components: + - type: Transform + pos: -30.443775,-23.511929 + parent: 2 +- proto: FoodApple + entities: + - uid: 7600 + components: + - type: Transform + pos: -22.372084,6.141997 + parent: 2 +- proto: FoodBakedWaffleSoy + entities: + - uid: 7601 + components: + - type: Transform + pos: 20.464806,-5.5433955 + parent: 2 +- proto: FoodBoritoPie + entities: + - uid: 7602 + components: + - type: Transform + pos: -60.37967,-1.3542025 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 7603 + components: + - type: Transform + pos: -10.054111,32.930138 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: -20.417337,-14.549028 + parent: 2 +- proto: FoodBoxNugget + entities: + - uid: 7605 + components: + - type: Transform + pos: -8.693767,4.45767 + parent: 2 +- proto: FoodBoxPizzaFilled + entities: + - uid: 7606 + components: + - type: Transform + pos: -3.538867,-7.2398877 + parent: 2 +- proto: FoodBurgerClown + entities: + - uid: 7607 + components: + - type: Transform + pos: -35.033707,11.511257 + parent: 2 +- proto: FoodCarrot + entities: + - uid: 7608 + components: + - type: Transform + pos: -15.333906,14.554829 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: -15.490156,14.606949 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: -15.677656,14.669493 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 7611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,9.5 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 3734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 +- proto: FoodCondimentBottleBBQ + entities: + - uid: 7613 + components: + - type: Transform + pos: -8.74585,4.93717 + parent: 2 +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 7614 + components: + - type: Transform + pos: -11.386693,4.9844956 + parent: 2 +- proto: FoodCondimentPacketHotsauce + entities: + - uid: 7615 + components: + - type: Transform + pos: -13.750666,-9.525864 + parent: 2 +- proto: FoodCondimentPacketKetchup + entities: + - uid: 7616 + components: + - type: Transform + pos: -8.091682,19.548225 + parent: 2 +- proto: FoodCorn + entities: + - uid: 7617 + components: + - type: Transform + pos: -15.57349,15.722307 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: -15.375573,15.607644 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: -15.656822,15.503405 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: -15.302656,15.367894 + parent: 2 +- proto: FoodDonutCaramel + entities: + - uid: 7621 + components: + - type: Transform + pos: -20.372719,-2.4756277 + parent: 2 +- proto: FoodDonutJellySlugcat + entities: + - uid: 7622 + components: + - type: Transform + pos: 2.5049953,35.55643 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: 11.517811,6.4848995 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: 8.443369,26.925972 + parent: 2 +- proto: FoodDonutSpaceman + entities: + - uid: 7625 + components: + - type: Transform + pos: -10.241611,34.587536 + parent: 2 +- proto: FoodLollipop + entities: + - uid: 7626 + components: + - type: Transform + pos: 12.074322,6.534174 + parent: 2 +- proto: FoodMealCornedbeef + entities: + - uid: 7627 + components: + - type: Transform + pos: -51.488167,-0.36223078 + parent: 2 +- proto: FoodMealFriesCheesy + entities: + - uid: 7628 + components: + - type: Transform + pos: -8.591682,19.777552 + parent: 2 +- proto: FoodMealNachos + entities: + - uid: 7629 + components: + - type: Transform + pos: -11.58461,4.5779634 + parent: 2 +- proto: FoodMealRibs + entities: + - uid: 7630 + components: + - type: Transform + pos: -61.46964,-8.387285 + parent: 2 +- proto: FoodMealSoftTaco + entities: + - uid: 7631 + components: + - type: Transform + pos: -11.366393,4.2297497 + parent: 2 +- proto: FoodMeat + entities: + - uid: 7632 + components: + - type: Transform + pos: -13.626667,11.3615885 + parent: 2 + - uid: 7633 + components: + - type: Transform + pos: -13.387084,11.538795 + parent: 2 +- proto: FoodMeatBacon + entities: + - uid: 7634 + components: + - type: Transform + pos: -13.65891,13.412291 + parent: 2 + - uid: 7635 + components: + - type: Transform + pos: -13.523493,13.6520405 + parent: 2 +- proto: FoodMeatBearCooked + entities: + - uid: 7636 + components: + - type: MetaData + desc: What's brown and sticky and OH GOD WHAT THE- + name: poop + - type: Transform + pos: -51.488995,-6.2917495 + parent: 2 + - type: SolutionContainerManager + solutions: + food: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 10 + name: null + reagents: + - data: null + ReagentId: Lexorin + Quantity: 4 + - data: null + ReagentId: Toxin + Quantity: 6 + - type: Hairball + missingComponents: + - SliceableFood +- proto: FoodMeatChicken + entities: + - uid: 7637 + components: + - type: Transform + pos: -13.62076,14.650166 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: -13.454093,14.462536 + parent: 2 +- proto: FoodMeatChickenFried + entities: + - uid: 7639 + components: + - type: Transform + pos: -63.54857,-9.081 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: -62.954815,-9.471625 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: -62.50169,-8.971625 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -8.297933,4.686996 + parent: 2 +- proto: FoodMeatCooked + entities: + - uid: 7643 + components: + - type: Transform + pos: -13.479757,-9.217804 + parent: 2 +- proto: FoodMothChiliCabbageWrap + entities: + - uid: 7645 + components: + - type: Transform + pos: 29.592472,-7.415272 + parent: 2 +- proto: FoodMothGreenLasagne + entities: + - uid: 7646 + components: + - type: Transform + pos: -19.499077,21.71364 + parent: 2 +- proto: FoodOnion + entities: + - uid: 7647 + components: + - type: Transform + pos: -15.719322,11.656984 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: -15.29224,11.688255 + parent: 2 +- proto: FoodOrange + entities: + - uid: 7649 + components: + - type: Transform + pos: -22.6325,5.6103783 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 7650 + components: + - type: Transform + pos: -34.60266,11.521688 + parent: 2 + - uid: 7651 + components: + - type: Transform + pos: -34.25891,11.709319 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 7652 + components: + - type: Transform + pos: -13.479757,-9.170929 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: 29.595211,-7.3157077 + parent: 2 +- proto: FoodPlateTin + entities: + - uid: 7656 + components: + - type: Transform + pos: -49.729855,-0.5163126 + parent: 2 +- proto: FoodPotato + entities: + - uid: 7657 + components: + - type: Transform + pos: -15.281823,11.354691 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: -15.469323,11.448505 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: -15.719322,11.30257 + parent: 2 +- proto: FoodPSB + entities: + - uid: 7660 + components: + - type: Transform + pos: -47.577477,43.695927 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: -47.389977,43.43533 + parent: 2 +- proto: FoodSaladWatermelonFruitBowl + entities: + - uid: 7662 + components: + - type: Transform + pos: -16.36061,5.4444323 + parent: 2 +- proto: FoodSnackChips + entities: + - uid: 7663 + components: + - type: Transform + pos: -40.52819,51.500805 + parent: 2 +- proto: FoodSnackPopcorn + entities: + - uid: 7664 + components: + - type: Transform + pos: 37.339508,3.5884066 + parent: 2 +- proto: FoodSoupBungo + entities: + - uid: 7665 + components: + - type: Transform + pos: 34.49436,-2.317297 + parent: 2 +- proto: FoodSoupStew + entities: + - uid: 7666 + components: + - type: Transform + pos: -35.444843,-5.5133715 + parent: 2 +- proto: FoodTartMime + entities: + - uid: 7667 + components: + - type: Transform + pos: -35.587036,11.55296 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 7668 + components: + - type: Transform + pos: 40.696686,13.195562 + parent: 2 +- proto: FoodTinPeachesMaint + entities: + - uid: 7670 + components: + - type: Transform + pos: 6.489133,-21.393927 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: 23.429745,29.51601 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 5.418648,4.430817 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -36.142467,0.62692785 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: -29.5934,-2.1855721 + parent: 2 +- proto: FoodTomato + entities: + - uid: 7675 + components: + - type: Transform + pos: -15.219323,12.480472 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: -15.344323,12.657679 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: -15.688072,12.74107 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: -15.708906,12.480472 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: -15.500572,12.522167 + parent: 2 +- proto: Football + entities: + - uid: 7680 + components: + - type: Transform + pos: 1.7270865,2.275586 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 7681 + components: + - type: Transform + pos: -58.25037,-3.1736562 + parent: 2 +- proto: FuelDispenser + entities: + - uid: 12841 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 7682 + components: + - type: Transform + pos: 19.619722,21.18556 + parent: 2 +- proto: GasFilter + entities: + - uid: 7683 + components: + - type: MetaData + name: waste gas filter + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7684 + components: + - type: MetaData + name: waste gas filter + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7685 + components: + - type: Transform + pos: -56.5,36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7686 + components: + - type: Transform + pos: -56.5,32.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasFilterFlipped + entities: + - uid: 7687 + components: + - type: MetaData + name: oxygen filter + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-44.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7688 + components: + - type: MetaData + name: nitrogen filter + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7689 + components: + - type: MetaData + name: plasma filter + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7690 + components: + - type: MetaData + name: carbon dioxide filter + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7691 + components: + - type: MetaData + name: burn chamber filter + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 6053 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasMinerNitrogenStation + entities: + - uid: 7692 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasMinerOxygen + entities: + - uid: 7693 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasMixer + entities: + - uid: 7696 + components: + - type: MetaData + name: air mixer + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-43.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasMixerFlipped + entities: + - uid: 7698 + components: + - type: MetaData + name: oxygen burn mixer + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 7699 + components: + - type: MetaData + name: plasma mixer + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-49.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' +- proto: GasOutletInjector + entities: + - uid: 7700 + components: + - type: Transform + pos: -61.5,37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,31.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7702 + components: + - type: Transform + pos: -54.5,39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 7707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-49.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-51.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 17426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-41.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' +- proto: GasPassiveGate + entities: + - uid: 7704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' +- proto: GasPassiveVent + entities: + - uid: 7708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-41.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7713 + components: + - type: Transform + pos: -55.5,39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7714 + components: + - type: Transform + pos: -62.5,37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,31.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 7717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-51.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#CB00F5FF' + - uid: 7721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 7722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-53.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 7725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-53.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' +- proto: GasPipeBend + entities: + - uid: 7726 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 7727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 7728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7729 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7732 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7737 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7742 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 7744 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7747 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7748 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 7749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 7750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 7751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,33.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,37.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,36.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,33.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,32.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,31.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,31.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,34.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + pos: -53.5,34.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7766 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7767 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7768 + components: + - type: Transform + pos: -39.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7769 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7770 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7774 + components: + - type: Transform + pos: -27.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7780 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7782 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7784 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7785 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7787 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7790 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7791 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7806 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7808 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7809 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7813 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7814 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7815 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7818 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7820 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7825 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7829 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7834 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#00AABBFF' + - uid: 7848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#00AABBFF' + - uid: 7849 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7850 + components: + - type: Transform + pos: -42.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7854 + components: + - type: Transform + pos: -36.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7856 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7859 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 7861 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7869 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7870 + components: + - type: Transform + pos: -46.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7873 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7875 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7883 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7885 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7887 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7890 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7899 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7901 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7908 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7912 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7913 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7914 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7915 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 7917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 7918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' +- proto: GasPipeFourway + entities: + - uid: 7920 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 7921 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7922 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 7923 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7924 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7925 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7926 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7927 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7928 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7929 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7930 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7931 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7932 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7933 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7934 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7935 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7936 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7937 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7938 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7939 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7940 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7941 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7942 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7943 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7944 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7945 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7946 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7947 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7948 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7949 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7950 + components: + - type: Transform + pos: -24.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7951 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7952 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7953 + components: + - type: Transform + pos: -36.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7954 + components: + - type: Transform + pos: -24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7955 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7956 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7957 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7958 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7959 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7960 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7961 + components: + - type: Transform + pos: -16.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' +- proto: GasPipeStraight + entities: + - uid: 3691 + components: + - type: Transform + pos: -16.5,-54.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#CB00F5FF' + - uid: 7974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7976 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7977 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 7978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 7979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 7980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 7982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7983 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7994 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 7995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7996 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7997 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 7998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 7999 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8001 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8002 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8004 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8008 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8010 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8011 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8012 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8013 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8018 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8026 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8031 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8032 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8034 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8035 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,31.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8044 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8045 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8046 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8047 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8048 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8049 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8050 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8055 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8056 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#CB00F5FF' + - uid: 8063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 8068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8073 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8075 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8078 + components: + - type: Transform + pos: -56.5,33.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8081 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8083 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8084 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8087 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8088 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8089 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8090 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8097 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8098 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8100 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,38.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,37.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,35.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,33.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,33.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,33.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8110 + components: + - type: Transform + pos: -54.5,37.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,36.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,36.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,36.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,34.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,34.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,34.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,34.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,36.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: -62.5,36.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,32.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,32.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,32.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,32.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,35.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,34.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,31.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,34.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,33.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8140 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8141 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 8146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8155 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8164 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8165 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8166 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8171 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8172 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 8174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#CB00F5FF' + - uid: 8175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 8177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8179 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8180 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8181 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8182 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8183 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8184 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8185 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8186 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8187 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8188 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8197 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8198 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8211 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8212 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8213 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8214 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8215 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8245 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8249 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8250 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8251 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8252 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8253 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8275 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8276 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8277 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8279 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8280 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8281 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8282 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8283 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8299 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8300 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8301 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8302 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8326 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8327 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8328 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8329 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8330 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8331 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8332 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8333 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8338 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8339 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8358 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8388 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8389 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8390 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8391 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8392 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8393 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8394 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8395 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8396 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8436 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8437 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8438 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8439 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8440 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8446 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8461 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8462 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8463 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8471 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8472 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8473 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8477 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8478 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8479 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8480 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8512 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8513 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8514 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8517 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8537 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8538 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8555 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8556 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8567 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8568 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8587 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8588 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8589 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8590 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8591 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8592 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8593 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8596 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8597 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8601 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8604 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8605 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8606 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8607 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8608 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8609 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8610 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8611 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8612 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8616 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8625 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8630 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8637 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8638 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8639 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8655 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8656 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8657 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8658 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8660 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8661 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8662 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8663 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8664 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8671 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8672 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8674 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8685 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8686 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8687 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8688 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8689 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8690 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8709 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8710 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8711 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8712 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8713 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8722 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8723 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8724 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8725 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8727 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8736 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8737 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8738 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8739 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8744 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8745 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8746 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8747 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8748 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8759 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8760 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8761 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8779 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8805 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8806 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8807 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8808 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8809 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8810 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8811 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8812 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8813 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8814 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8815 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8816 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8817 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#00AABBFF' + - uid: 8841 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8843 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8844 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8845 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8846 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8847 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8856 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8857 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8858 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8859 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8860 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8864 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8865 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8866 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8867 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8884 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8885 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8886 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8887 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8890 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8893 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8894 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8895 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8896 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8897 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8898 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8899 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8900 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8901 + components: + - type: Transform + pos: -25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8902 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8903 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8904 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8905 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8906 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8907 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8908 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8920 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8921 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8922 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8925 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8926 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8927 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8928 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8929 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8930 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8931 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8932 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8938 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8939 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8973 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8974 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8975 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8976 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8977 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8978 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8979 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8988 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 8998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 8999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9002 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9003 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9004 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9005 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9006 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9007 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9008 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9009 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9010 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9015 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9016 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9018 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9019 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9020 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9021 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9022 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9024 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9025 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9026 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9027 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9028 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9048 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9049 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9050 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9051 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9066 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9067 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9069 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9070 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9071 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9072 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9075 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9077 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9082 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9085 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9093 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9094 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9095 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9096 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9097 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9098 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9099 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9100 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9101 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9102 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9103 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9104 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9134 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9135 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9136 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9137 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9138 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9139 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9140 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9141 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9168 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9181 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9184 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9185 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9188 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9202 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9220 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9221 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9222 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9223 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9240 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9251 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9252 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9253 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9254 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9255 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9256 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9257 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9261 + components: + - type: Transform + pos: -36.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9262 + components: + - type: Transform + pos: -36.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9263 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9264 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9265 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9266 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9267 + components: + - type: Transform + pos: 0.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9268 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9278 + components: + - type: Transform + pos: -43.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9284 + components: + - type: Transform + pos: -46.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9285 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9286 + components: + - type: Transform + pos: -46.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9287 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9294 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9295 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9296 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9297 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9298 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9299 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9300 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9301 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9302 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9303 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9304 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9305 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9306 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9308 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9309 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9310 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9311 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9312 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9313 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9377 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9378 + components: + - type: Transform + pos: -11.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9379 + components: + - type: Transform + pos: -11.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9380 + components: + - type: Transform + pos: -11.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9381 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9382 + components: + - type: Transform + pos: -11.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9383 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9384 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9385 + components: + - type: Transform + pos: -8.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9386 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9387 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9388 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9389 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9402 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9426 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9433 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9434 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9435 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9436 + components: + - type: Transform + pos: -3.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9437 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9438 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9439 + components: + - type: Transform + pos: -5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9440 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9441 + components: + - type: Transform + pos: -5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9442 + components: + - type: Transform + pos: -5.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9443 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9444 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9452 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9458 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9460 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9468 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9469 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9470 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9471 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9472 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9473 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9474 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9475 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9476 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9477 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9478 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9479 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9480 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9481 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9482 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9483 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9484 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9485 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9486 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9498 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9499 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9500 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9501 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9502 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9503 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9504 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9505 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9506 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9509 + components: + - type: Transform + pos: -48.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9516 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9525 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9526 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9527 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9531 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9532 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9533 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9534 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9535 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9536 + components: + - type: Transform + pos: -40.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9548 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9549 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9572 + components: + - type: Transform + pos: -37.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9575 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9576 + components: + - type: Transform + pos: -19.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 9578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9583 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9604 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9609 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9610 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9612 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9623 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9628 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9629 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9630 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9633 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9634 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9636 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9637 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9639 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9640 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9641 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9642 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9663 + components: + - type: Transform + pos: -27.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9681 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9682 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9683 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9684 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9685 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9691 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9692 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9706 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9707 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9708 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9709 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9710 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9711 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9713 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9714 + components: + - type: Transform + pos: -46.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9715 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9728 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9729 + components: + - type: Transform + pos: -16.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9730 + components: + - type: Transform + pos: -16.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9731 + components: + - type: Transform + pos: -16.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9732 + components: + - type: Transform + pos: -16.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9766 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9767 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9768 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9769 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9770 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9771 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9772 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9773 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9796 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9797 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9798 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9799 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 9803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 9811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 9812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9816 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9817 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 9819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 9820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 9822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9825 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#CB00F5FF' + - uid: 9827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#CB00F5FF' + - uid: 9829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 9832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 9833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#CB00F5FF' + - uid: 9834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 9835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9837 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' +- proto: GasPipeTJunction + entities: + - uid: 9838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9840 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 9842 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 9845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 9846 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9853 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9854 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9858 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9864 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 9868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 9869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9872 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9873 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9877 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9879 + components: + - type: Transform + pos: -55.5,34.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,33.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9885 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,36.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9901 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9905 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9907 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9910 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9920 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9924 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9925 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9928 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9929 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9932 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9935 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9941 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9946 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9947 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9950 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9957 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9972 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9975 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9977 + components: + - type: Transform + pos: 12.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 9985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9994 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9996 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 9998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 9999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10001 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10005 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10009 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10010 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10013 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10017 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10023 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10025 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10026 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10028 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10030 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10031 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#00AABBFF' + - uid: 10033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10035 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10039 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10040 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10057 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10060 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10061 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10062 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10063 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10070 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10073 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10075 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10089 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10091 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10093 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10094 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10095 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10097 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10102 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10108 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10119 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10121 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10128 + components: + - type: Transform + pos: -47.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10129 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10130 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10137 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10138 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10140 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10143 + components: + - type: Transform + pos: -43.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10145 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10147 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10149 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10152 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10153 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10161 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 10166 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 10167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 10169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 10173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#00008BFF' +- proto: GasPort + entities: + - uid: 10174 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 10175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 10178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 10179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10182 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 10183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 10185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 10186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10188 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10189 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-49.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' +- proto: GasPressurePump + entities: + - uid: 10191 + components: + - type: MetaData + name: air output pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 10192 + components: + - type: MetaData + name: plasma pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-49.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#CB00F5FF' + - uid: 10193 + components: + - type: MetaData + name: oxygen input pump + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-44.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 10194 + components: + - type: MetaData + name: plasma input pump + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 10195 + components: + - type: MetaData + name: waste input pump + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-50.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 10196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10197 + components: + - type: MetaData + name: waste pump + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10198 + components: + - type: MetaData + name: distribution pump + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-37.5 + parent: 2 + - type: GasPressurePump + targetPressure: 200 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 10199 + components: + - type: MetaData + name: cryogenics air pump + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,19.5 + parent: 2 + - type: GasPressurePump + targetPressure: 80 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - uid: 10200 + components: + - type: MetaData + name: oxygen pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10202 + components: + - type: MetaData + name: nitrogen pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#EE4B2BFF' + - uid: 10203 + components: + - type: MetaData + name: CO2 pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#808080FF' + - uid: 10204 + components: + - type: MetaData + name: CO2 input pump + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 10205 + components: + - type: MetaData + name: burn chamber input pump + - type: Transform + pos: -6.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10206 + components: + - type: MetaData + name: burn chamber output pump + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10207 + components: + - type: MetaData + name: air input pump + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-41.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 10208 + components: + - type: MetaData + name: nitrogen input pump + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 10209 + components: + - type: MetaData + name: waste output pump + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-51.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' +- proto: GasRecycler + entities: + - uid: 10210 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasRecyclerMachineCircuitboard + entities: + - uid: 10211 + components: + - type: Transform + pos: -11.321217,-26.350395 + parent: 2 +- proto: GasThermoMachineFreezer + entities: + - uid: 10212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#00FFFFFF' + - type: AtmosDevice + joinedGrid: 2 + - uid: 10213 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 10214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#00AABBFF' + - type: AtmosDevice + joinedGrid: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 10215 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: GasValve + entities: + - uid: 10216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-44.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-44.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10218 + components: + - type: MetaData + name: oxygen burn chamber valve + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10219 + components: + - type: MetaData + name: waste space valve + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-40.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 10220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,37.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - uid: 10221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,34.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosDevice + joinedGrid: 2 + - uid: 10222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-51.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' +- proto: GasVentPump + entities: + - uid: 10223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10226 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10227 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-32.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10233 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10235 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,38.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10240 + components: + - type: Transform + pos: -46.5,39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10241 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 10243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,27.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-75.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10246 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-25.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10254 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10255 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10257 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10260 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10261 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10262 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,41.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10271 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10272 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10276 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10295 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00AABBFF' + - uid: 10297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10298 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10300 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10303 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#34EB43FF' + - uid: 10316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10318 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,25.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10321 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10322 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10325 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10328 + components: + - type: Transform + pos: -52.5,37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10329 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10331 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10334 + components: + - type: Transform + pos: -11.5,43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,26.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,32.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10339 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10347 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10350 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,50.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,47.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10361 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10364 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10369 + components: + - type: Transform + pos: -20.5,34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,31.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10374 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10376 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10379 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10380 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-44.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10385 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10386 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10388 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10394 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-81.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-72.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10399 + components: + - type: Transform + pos: -17.5,-74.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10400 + components: + - type: Transform + pos: -11.5,-74.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10407 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 10408 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' +- proto: GasVentScrubber + entities: + - uid: 10409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,41.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-32.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-27.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10420 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10423 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10424 + components: + - type: Transform + pos: -40.5,42.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10427 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10430 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10434 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-1.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10442 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10446 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10448 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10449 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10453 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10455 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10457 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10458 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,28.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10465 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,25.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10468 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10470 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10471 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10476 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10479 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10482 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10484 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10485 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10490 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10493 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10495 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10505 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10506 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-5.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10508 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-15.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10515 + components: + - type: Transform + pos: -58.5,-12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10517 + components: + - type: Transform + pos: -52.5,-12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10518 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10519 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-23.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10527 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,25.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,26.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,27.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10534 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10535 + components: + - type: Transform + pos: -35.5,32.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10537 + components: + - type: Transform + pos: -49.5,34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,37.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10540 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10542 + components: + - type: Transform + pos: -24.5,40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10543 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10544 + components: + - type: Transform + pos: -15.5,35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10545 + components: + - type: Transform + pos: -19.5,35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,34.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10547 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10548 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10549 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10550 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10551 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10554 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,2.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10556 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10558 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,22.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10561 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,11.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,26.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,10.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,29.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10572 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10573 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#ADD8E6FF' + - uid: 10574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-9.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-21.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,32.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,26.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10579 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,16.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-38.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#FF5349FF' + - uid: 10583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-48.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' + - uid: 10585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-38.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#800080FF' +- proto: GasVolumePump + entities: + - uid: 10586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-46.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10587 + components: + - type: MetaData + name: burn chamber waste pump + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-40.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' + - uid: 10588 + components: + - type: MetaData + name: air tank pump + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 10589 + components: + - type: MetaData + name: air tank pump + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#00008BFF' + - uid: 10590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-50.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - type: AtmosPipeColor + color: '#66FF00FF' +- proto: Gauze + entities: + - uid: 10591 + components: + - type: Transform + pos: 20.348022,3.509109 + parent: 2 + - uid: 10592 + components: + - type: Transform + pos: 20.566772,3.743648 + parent: 2 +- proto: Gauze1 + entities: + - uid: 10593 + components: + - type: Transform + pos: -36.244873,-24.761852 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 10594 + components: + - type: Transform + pos: -48.71885,34.98339 + parent: 2 + - uid: 10595 + components: + - type: Transform + pos: -20.634808,-28.440205 + parent: 2 + - uid: 10596 + components: + - type: Transform + pos: -20.301476,-28.461052 + parent: 2 +- proto: GeneratorBasic + entities: + - uid: 10597 + components: + - type: Transform + pos: -44.5,51.5 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 773 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: -18.5,-71.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: -18.5,-75.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: -18.5,-77.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: -13.5,-82.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + pos: -13.5,-81.5 + parent: 2 +- proto: Girder + entities: + - uid: 10598 + components: + - type: Transform + pos: -43.5,55.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 7098 + components: + - type: Transform + pos: -1.5,37.5 + parent: 2 +- proto: GlimmerProber + entities: + - uid: 10599 + components: + - type: Transform + pos: -43.5,37.5 + parent: 2 +- proto: GlowstickBase + entities: + - uid: 10600 + components: + - type: Transform + pos: -38.59463,10.682609 + parent: 2 +- proto: GlowstickBlue + entities: + - uid: 10601 + components: + - type: Transform + pos: -13.526116,-7.38401 + parent: 2 + - uid: 10602 + components: + - type: Transform + pos: -13.338616,-7.43613 + parent: 2 + - uid: 10603 + components: + - type: Transform + pos: -38.73005,10.703458 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: 21.420904,13.627912 + parent: 2 + - uid: 10605 + components: + - type: Transform + pos: 21.639654,13.523672 + parent: 2 +- proto: GlowstickPurple + entities: + - uid: 10606 + components: + - type: Transform + pos: -38.4488,10.672186 + parent: 2 +- proto: GlowstickRed + entities: + - uid: 10607 + components: + - type: Transform + pos: -38.302967,10.63049 + parent: 2 +- proto: GlowstickYellow + entities: + - uid: 10608 + components: + - type: Transform + pos: -2.033538,-15.379829 + parent: 2 + - uid: 10609 + components: + - type: Transform + pos: -2.0525565,-15.607401 + parent: 2 + - uid: 10610 + components: + - type: Transform + pos: -38.18838,10.578371 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 10611 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 +- proto: Grille + entities: + - uid: 5822 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - uid: 10613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-52.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-48.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-49.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-28.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,50.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 10685 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + pos: -30.5,4.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 10699 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + pos: -58.5,34.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 10734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: -52.5,62.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,6.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-47.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 10751 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 10753 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-38.5 + parent: 2 + - uid: 10755 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 10756 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - uid: 10757 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 10758 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 2 + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-34.5 + parent: 2 + - uid: 10763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-33.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-47.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 10767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-47.5 + parent: 2 + - uid: 10768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-47.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-44.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-47.5 + parent: 2 + - uid: 10773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-47.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-47.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-32.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 10780 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 2 + - uid: 10787 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 10788 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 10796 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-28.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-37.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-28.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-28.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 2 + - uid: 10812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-14.5 + parent: 2 + - uid: 10813 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 10815 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 10816 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 10817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-4.5 + parent: 2 + - uid: 10819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-33.5 + parent: 2 + - uid: 10820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-15.5 + parent: 2 + - uid: 10821 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 10822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-18.5 + parent: 2 + - uid: 10823 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 10824 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 10825 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 10826 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 10827 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 10828 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 10829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 + - uid: 10830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - uid: 10832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-14.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-17.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-16.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-17.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-19.5 + parent: 2 + - uid: 10837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-20.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-21.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-22.5 + parent: 2 + - uid: 10840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-22.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-22.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-23.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-23.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-23.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-23.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-23.5 + parent: 2 + - uid: 10848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-23.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-22.5 + parent: 2 + - uid: 10850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-22.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-22.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 10854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-23.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-23.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-23.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + pos: -32.5,61.5 + parent: 2 + - uid: 10859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-23.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-21.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-21.5 + parent: 2 + - uid: 10863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 2 + - uid: 10864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-21.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 2 + - uid: 10866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-21.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-20.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-20.5 + parent: 2 + - uid: 10869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-20.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-20.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-21.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-21.5 + parent: 2 + - uid: 10873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-21.5 + parent: 2 + - uid: 10874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-21.5 + parent: 2 + - uid: 10875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-22.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-21.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-21.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-21.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-22.5 + parent: 2 + - uid: 10880 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 10881 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 10882 + components: + - type: Transform + pos: -65.5,5.5 + parent: 2 + - uid: 10883 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 10884 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 10885 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 10886 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 10889 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 10890 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 10891 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 10892 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 10893 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 10894 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 10895 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 10896 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 10898 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 10901 + components: + - type: Transform + pos: -62.5,5.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + pos: -64.5,2.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + pos: -63.5,2.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + pos: -66.5,0.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: -65.5,-4.5 + parent: 2 + - uid: 10912 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 10913 + components: + - type: Transform + pos: -63.5,-0.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + pos: -63.5,1.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: -64.5,-1.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: -65.5,-1.5 + parent: 2 + - uid: 10918 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 10919 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 + - uid: 10920 + components: + - type: Transform + pos: -64.5,-14.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + pos: -65.5,-9.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + pos: -67.5,-11.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + pos: -67.5,-13.5 + parent: 2 + - uid: 10928 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 10931 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 10932 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 10933 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 10934 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 10935 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 10936 + components: + - type: Transform + pos: -63.5,-17.5 + parent: 2 + - uid: 10937 + components: + - type: Transform + pos: -63.5,-15.5 + parent: 2 + - uid: 10938 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 10939 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 10941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - uid: 10942 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 10943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 2 + - uid: 10944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,26.5 + parent: 2 + - uid: 10945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,31.5 + parent: 2 + - uid: 10946 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 10947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,25.5 + parent: 2 + - uid: 10948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,30.5 + parent: 2 + - uid: 10949 + components: + - type: Transform + pos: -23.5,-75.5 + parent: 2 + - uid: 10950 + components: + - type: Transform + pos: -24.5,-75.5 + parent: 2 + - uid: 10951 + components: + - type: Transform + pos: -25.5,-75.5 + parent: 2 + - uid: 10952 + components: + - type: Transform + pos: -23.5,-77.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + pos: -24.5,-77.5 + parent: 2 + - uid: 10954 + components: + - type: Transform + pos: -25.5,-77.5 + parent: 2 + - uid: 10955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,31.5 + parent: 2 + - uid: 10956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 2 + - uid: 10957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,48.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 10959 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 10960 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 10962 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 10963 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 10964 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 10965 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 10966 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 10967 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 10968 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 10969 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 10971 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 10972 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 10973 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 10977 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 10978 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 10979 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 10980 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 10981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,24.5 + parent: 2 + - uid: 10982 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 10983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - uid: 10984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-86.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-86.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-86.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-86.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-86.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-86.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-86.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-86.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-86.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-88.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-89.5 + parent: 2 + - uid: 10995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-89.5 + parent: 2 + - uid: 10996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-89.5 + parent: 2 + - uid: 10997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-89.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-89.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-89.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-89.5 + parent: 2 + - uid: 11001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-89.5 + parent: 2 + - uid: 11002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-89.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-88.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-87.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-87.5 + parent: 2 + - uid: 11007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-87.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-87.5 + parent: 2 + - uid: 11009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-86.5 + parent: 2 + - uid: 11010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-86.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-87.5 + parent: 2 + - uid: 11012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-86.5 + parent: 2 + - uid: 11013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-86.5 + parent: 2 + - uid: 11014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-85.5 + parent: 2 + - uid: 11015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-81.5 + parent: 2 + - uid: 11016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-80.5 + parent: 2 + - uid: 11017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-80.5 + parent: 2 + - uid: 11018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-79.5 + parent: 2 + - uid: 11019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-78.5 + parent: 2 + - uid: 11020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-75.5 + parent: 2 + - uid: 11021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-74.5 + parent: 2 + - uid: 11022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-73.5 + parent: 2 + - uid: 11023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-72.5 + parent: 2 + - uid: 11024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-70.5 + parent: 2 + - uid: 11025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-71.5 + parent: 2 + - uid: 11026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-69.5 + parent: 2 + - uid: 11027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-67.5 + parent: 2 + - uid: 11028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-66.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-66.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-65.5 + parent: 2 + - uid: 11031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-65.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-65.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-64.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-64.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-64.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-64.5 + parent: 2 + - uid: 11037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-64.5 + parent: 2 + - uid: 11038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-64.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-64.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-64.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-64.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-64.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-64.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-64.5 + parent: 2 + - uid: 11045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-64.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-65.5 + parent: 2 + - uid: 11047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-65.5 + parent: 2 + - uid: 11048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-65.5 + parent: 2 + - uid: 11049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-66.5 + parent: 2 + - uid: 11050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-66.5 + parent: 2 + - uid: 11051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-66.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-66.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-66.5 + parent: 2 + - uid: 11054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-66.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-66.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-67.5 + parent: 2 + - uid: 11057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-67.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-67.5 + parent: 2 + - uid: 11059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-66.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-66.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-67.5 + parent: 2 + - uid: 11062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-68.5 + parent: 2 + - uid: 11063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-69.5 + parent: 2 + - uid: 11064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-70.5 + parent: 2 + - uid: 11065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-71.5 + parent: 2 + - uid: 11066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-72.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-75.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-76.5 + parent: 2 + - uid: 11069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-77.5 + parent: 2 + - uid: 11070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-79.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-81.5 + parent: 2 + - uid: 11072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-83.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-85.5 + parent: 2 + - uid: 11074 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 2 + - uid: 11075 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 11076 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 11077 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,34.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 11081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - uid: 11082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 11083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,34.5 + parent: 2 + - uid: 11084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,34.5 + parent: 2 + - uid: 11085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 + - uid: 11087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 11088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-2.5 + parent: 2 + - uid: 11093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-10.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 2 + - uid: 11102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 + - uid: 11103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-21.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-22.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 11108 + components: + - type: Transform + pos: 42.5,-23.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 2 + - uid: 11110 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,33.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 11118 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 11119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 11121 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 11122 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: 46.5,9.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 11125 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 11128 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,27.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,37.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: 58.5,2.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + pos: 59.5,2.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 11141 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: 62.5,7.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: 62.5,8.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 11146 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 11148 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 11152 + components: + - type: Transform + pos: 62.5,16.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + pos: 62.5,17.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: 62.5,18.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + pos: 62.5,19.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: 62.5,20.5 + parent: 2 + - uid: 11157 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 11158 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 11160 + components: + - type: Transform + pos: 58.5,20.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 11163 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 11173 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: -23.5,37.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,25.5 + parent: 2 + - uid: 11183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,24.5 + parent: 2 + - uid: 11184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,23.5 + parent: 2 + - uid: 11185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,22.5 + parent: 2 + - uid: 11186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - uid: 11187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - uid: 11188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 11190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + pos: -65.5,31.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-25.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 11199 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 11200 + components: + - type: Transform + pos: -53.5,2.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 11205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,43.5 + parent: 2 + - uid: 11206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,44.5 + parent: 2 + - uid: 11207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,44.5 + parent: 2 + - uid: 11208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,44.5 + parent: 2 + - uid: 11209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,45.5 + parent: 2 + - uid: 11210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,45.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,45.5 + parent: 2 + - uid: 11212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,45.5 + parent: 2 + - uid: 11213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,45.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,44.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,44.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,44.5 + parent: 2 + - uid: 11218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,43.5 + parent: 2 + - uid: 11219 + components: + - type: Transform + pos: -28.5,43.5 + parent: 2 + - uid: 11220 + components: + - type: Transform + pos: -26.5,45.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 11223 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 11225 + components: + - type: Transform + pos: -27.5,44.5 + parent: 2 + - uid: 11226 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: -26.5,44.5 + parent: 2 + - uid: 11228 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 11230 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 + - uid: 11232 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - uid: 11233 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 11235 + components: + - type: Transform + pos: -45.5,37.5 + parent: 2 + - uid: 11236 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 11237 + components: + - type: Transform + pos: -65.5,36.5 + parent: 2 + - uid: 11238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-65.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + pos: -41.5,37.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 11241 + components: + - type: Transform + pos: -51.5,27.5 + parent: 2 + - uid: 11242 + components: + - type: Transform + pos: -51.5,26.5 + parent: 2 + - uid: 11243 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 + - uid: 11244 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + pos: -41.5,36.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + pos: 6.5,38.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + pos: 2.5,45.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + pos: -2.5,45.5 + parent: 2 + - uid: 11257 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 11259 + components: + - type: Transform + pos: -5.5,48.5 + parent: 2 + - uid: 11260 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 11262 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 11264 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + pos: -16.5,49.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + pos: -17.5,49.5 + parent: 2 + - uid: 11267 + components: + - type: Transform + pos: -23.5,49.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + pos: -24.5,49.5 + parent: 2 + - uid: 11269 + components: + - type: Transform + pos: -25.5,49.5 + parent: 2 + - uid: 11270 + components: + - type: Transform + pos: -26.5,48.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + pos: -26.5,47.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + pos: -27.5,47.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + pos: -28.5,46.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + pos: -19.5,48.5 + parent: 2 + - uid: 11275 + components: + - type: Transform + pos: -20.5,48.5 + parent: 2 + - uid: 11276 + components: + - type: Transform + pos: -22.5,48.5 + parent: 2 + - uid: 11277 + components: + - type: Transform + pos: -21.5,48.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,49.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 2 + - uid: 11280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,49.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 11282 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 11283 + components: + - type: Transform + pos: 7.5,36.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,45.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,45.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-60.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-59.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-58.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 2 + - uid: 11290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-54.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-54.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-54.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + pos: -34.5,-57.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 2 + - uid: 11305 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 + - uid: 11306 + components: + - type: Transform + pos: -37.5,68.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + pos: -38.5,68.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + pos: -54.5,42.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + pos: -55.5,42.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + pos: -53.5,42.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + pos: -56.5,39.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + pos: -52.5,39.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + pos: -52.5,41.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + pos: -52.5,40.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + pos: -56.5,41.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: -56.5,40.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + pos: -36.5,68.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + pos: -50.5,39.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + pos: -50.5,40.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + pos: -40.5,69.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + pos: -32.5,65.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,6.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + pos: -32.5,59.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + pos: -35.5,68.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + pos: -58.5,32.5 + parent: 2 + - uid: 11327 + components: + - type: Transform + pos: -60.5,37.5 + parent: 2 + - uid: 11328 + components: + - type: Transform + pos: -52.5,63.5 + parent: 2 + - uid: 11329 + components: + - type: Transform + pos: -60.5,31.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + pos: -49.5,54.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + pos: -52.5,67.5 + parent: 2 + - uid: 11332 + components: + - type: Transform + pos: -32.5,57.5 + parent: 2 + - uid: 11333 + components: + - type: Transform + pos: -52.5,66.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: -32.5,67.5 + parent: 2 + - uid: 11335 + components: + - type: Transform + pos: -35.5,54.5 + parent: 2 + - uid: 11336 + components: + - type: Transform + pos: -52.5,55.5 + parent: 2 + - uid: 11337 + components: + - type: Transform + pos: -32.5,56.5 + parent: 2 + - uid: 11338 + components: + - type: Transform + pos: -52.5,56.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + pos: -52.5,58.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + pos: -60.5,36.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + pos: -61.5,36.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + pos: -62.5,36.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + pos: -60.5,32.5 + parent: 2 + - uid: 11345 + components: + - type: Transform + pos: -61.5,32.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 11347 + components: + - type: Transform + pos: -58.5,35.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + pos: -58.5,36.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: -58.5,37.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + pos: -32.5,58.5 + parent: 2 + - uid: 11351 + components: + - type: Transform + pos: -44.5,69.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + pos: -32.5,58.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: -36.5,54.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: -52.5,57.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + pos: -50.5,54.5 + parent: 2 + - uid: 11357 + components: + - type: Transform + pos: -41.5,70.5 + parent: 2 + - uid: 11358 + components: + - type: Transform + pos: -38.5,54.5 + parent: 2 + - uid: 11359 + components: + - type: Transform + pos: -34.5,54.5 + parent: 2 + - uid: 11360 + components: + - type: Transform + pos: -32.5,64.5 + parent: 2 + - uid: 11361 + components: + - type: Transform + pos: -47.5,68.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + pos: -32.5,66.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + pos: -52.5,59.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + pos: -52.5,64.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + pos: -52.5,65.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + pos: -51.5,68.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + pos: -45.5,68.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + pos: -51.5,35.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: -50.5,68.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,42.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,43.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 11380 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 11381 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: -52.5,17.5 + parent: 2 + - uid: 11385 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + pos: -54.5,20.5 + parent: 2 + - uid: 11387 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,24.5 + parent: 2 + - uid: 11389 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 11390 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 11391 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 11392 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 11393 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 11394 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - uid: 11395 + components: + - type: Transform + pos: -58.5,3.5 + parent: 2 + - uid: 11397 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 11399 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 11400 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 11401 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 11403 + components: + - type: Transform + pos: -25.5,28.5 + parent: 2 + - uid: 11404 + components: + - type: Transform + pos: -64.5,-8.5 + parent: 2 + - uid: 11405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 2 + - uid: 11406 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + pos: -25.5,29.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-34.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,37.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: -67.5,-9.5 + parent: 2 + - uid: 11430 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 11432 + components: + - type: Transform + pos: -62.5,41.5 + parent: 2 + - uid: 11433 + components: + - type: Transform + pos: -65.5,35.5 + parent: 2 + - uid: 11434 + components: + - type: Transform + pos: -65.5,33.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: -66.5,34.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + pos: -65.5,32.5 + parent: 2 + - uid: 11437 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 2 + - uid: 11438 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 11439 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 2 + - uid: 11440 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 11442 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 11445 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 + - uid: 11447 + components: + - type: Transform + pos: -40.5,52.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: -41.5,52.5 + parent: 2 + - uid: 11449 + components: + - type: Transform + pos: -41.5,53.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + pos: -41.5,54.5 + parent: 2 + - uid: 11451 + components: + - type: Transform + pos: -43.5,54.5 + parent: 2 + - uid: 11452 + components: + - type: Transform + pos: -43.5,53.5 + parent: 2 + - uid: 11453 + components: + - type: Transform + pos: -43.5,52.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + pos: -44.5,52.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 11466 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 11467 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 11471 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 11474 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 11475 + components: + - type: Transform + pos: 13.5,35.5 + parent: 2 + - uid: 11476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,48.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + pos: -34.5,44.5 + parent: 2 + - uid: 11478 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 11479 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 11481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,48.5 + parent: 2 + - uid: 11482 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 11484 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 11485 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 11486 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 11487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-49.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-51.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-48.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-50.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 2 + - uid: 11503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 11522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-48.5 + parent: 2 + - uid: 11523 + components: + - type: Transform + pos: -53.5,-22.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 11530 + components: + - type: Transform + pos: 3.5,-82.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 11533 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 2 + - uid: 11535 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 + - uid: 11536 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 11538 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 11539 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + pos: -25.5,-86.5 + parent: 2 + - uid: 11546 + components: + - type: Transform + pos: -24.5,-86.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + pos: -9.5,-89.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + pos: -19.5,-89.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 2 + - uid: 11550 + components: + - type: Transform + pos: 5.5,-77.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: 3.5,-68.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + pos: -2.5,-87.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: -38.5,-80.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + pos: -45.5,-24.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + pos: -39.5,-73.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: -45.5,-25.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 11559 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 11561 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 11563 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 11566 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + pos: 62.5,6.5 + parent: 2 + - uid: 11568 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 11569 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 11573 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 + - uid: 11576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,37.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + pos: -0.5,45.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,47.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,37.5 + parent: 2 + - uid: 11580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,48.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,48.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - uid: 11586 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 11587 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 2 + - uid: 11588 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 11589 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 2 + - uid: 11590 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 11591 + components: + - type: Transform + pos: -35.5,-52.5 + parent: 2 + - uid: 11592 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 11593 + components: + - type: Transform + pos: -35.5,-65.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + pos: -45.5,54.5 + parent: 2 + - uid: 11595 + components: + - type: Transform + pos: -49.5,68.5 + parent: 2 + - uid: 11596 + components: + - type: Transform + pos: -32.5,62.5 + parent: 2 + - uid: 11597 + components: + - type: Transform + pos: -32.5,63.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + pos: -52.5,60.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + pos: -32.5,55.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + pos: -48.5,68.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + pos: -37.5,54.5 + parent: 2 + - uid: 11602 + components: + - type: Transform + pos: -40.5,68.5 + parent: 2 + - uid: 11603 + components: + - type: Transform + pos: -32.5,60.5 + parent: 2 + - uid: 11604 + components: + - type: Transform + pos: -34.5,68.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + pos: -43.5,70.5 + parent: 2 + - uid: 11606 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 + - uid: 11607 + components: + - type: Transform + pos: -56.5,45.5 + parent: 2 + - uid: 11608 + components: + - type: Transform + pos: -59.5,44.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + pos: -59.5,41.5 + parent: 2 + - uid: 11610 + components: + - type: Transform + pos: -57.5,45.5 + parent: 2 + - uid: 11611 + components: + - type: Transform + pos: -58.5,44.5 + parent: 2 + - uid: 11612 + components: + - type: Transform + pos: -59.5,40.5 + parent: 2 + - uid: 11613 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - uid: 11614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,36.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + pos: -64.5,39.5 + parent: 2 + - uid: 11616 + components: + - type: Transform + pos: -63.5,40.5 + parent: 2 + - uid: 11617 + components: + - type: Transform + pos: -61.5,41.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + pos: -60.5,41.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + pos: -65.5,38.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + pos: -65.5,37.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + pos: -65.5,34.5 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: -31.5,48.5 + parent: 2 + - uid: 11623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,48.5 + parent: 2 + - uid: 11624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,48.5 + parent: 2 + - uid: 11625 + components: + - type: Transform + pos: -28.5,48.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 11626 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 11627 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 11628 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 11629 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 11630 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 +- proto: HandLabeler + entities: + - uid: 11631 + components: + - type: Transform + pos: 4.671028,-3.138898 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: 16.646406,11.096404 + parent: 2 + - uid: 11633 + components: + - type: Transform + pos: 19.420631,21.73208 + parent: 2 + - uid: 11634 + components: + - type: Transform + pos: 12.324071,-10.753526 + parent: 2 +- proto: HatSpawner + entities: + - uid: 11635 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 11636 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 11637 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 11638 + components: + - type: Transform + pos: -16.5,-62.5 + parent: 2 + - uid: 11639 + components: + - type: Transform + pos: -16.5,-65.5 + parent: 2 + - uid: 11640 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 11641 + components: + - type: Transform + pos: -16.5,-73.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + pos: -23.5,-76.5 + parent: 2 + - uid: 11643 + components: + - type: Transform + pos: -18.5,-76.5 + parent: 2 + - uid: 11644 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + pos: -25.5,-76.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + pos: -16.5,-79.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: -16.5,-84.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 11649 + components: + - type: Transform + pos: -2.214195,-30.719608 + parent: 2 +- proto: HoloprojectorEngineering + entities: + - uid: 11650 + components: + - type: Transform + pos: 26.690435,-21.281763 + parent: 2 + - uid: 11651 + components: + - type: Transform + pos: -2.596038,-15.598579 + parent: 2 + - uid: 11652 + components: + - type: Transform + pos: -2.283538,-15.239204 + parent: 2 +- proto: HoloprojectorSecurity + entities: + - uid: 11653 + components: + - type: Transform + pos: -26.45485,-11.639819 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 11656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - uid: 11657 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 + - uid: 11659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,9.5 + parent: 2 + - uid: 11660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 11665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 2 + - uid: 11666 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,26.5 + parent: 2 + - uid: 11670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,31.5 + parent: 2 + - uid: 11672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 +- proto: HotplateMachineCircuitboard + entities: + - uid: 11673 + components: + - type: Transform + pos: -14.571217,-26.652689 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 11674 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 11675 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 11676 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 2 + - uid: 11677 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + pos: -60.5,-9.5 + parent: 2 + - uid: 11680 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 11682 + components: + - type: Transform + pos: -58.898293,-6.196193 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 11683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.378174,-12.47862 + parent: 2 + - uid: 11684 + components: + - type: Transform + pos: -58.492043,-5.866701 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 11685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.63213,-12.732526 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: -58.382668,-9.429201 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 11687 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 11688 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 +- proto: HydroponicsTrayMachineCircuitboard + entities: + - uid: 14065 + components: + - type: Transform + pos: -20.702688,9.770643 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 11695 + components: + - type: Transform + pos: -14.627064,-28.345179 + parent: 2 +- proto: Igniter + entities: + - uid: 11696 + components: + - type: Transform + pos: -7.4670944,-48.448364 + parent: 2 + - type: DeviceLinkSink + links: + - 13453 +- proto: IngotSilver + entities: + - uid: 11698 + components: + - type: Transform + pos: 0.10978508,18.573301 + parent: 2 +- proto: IntercomAll + entities: + - uid: 11699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,40.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,34.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 11701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,37.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 11702 + components: + - type: Transform + pos: -8.5,-75.5 + parent: 2 + - uid: 11703 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 11704 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-80.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-81.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-80.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-72.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: -6.5,-71.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-72.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 2 + - uid: 11712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,14.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 11714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 11717 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 11719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 2 + - uid: 11720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 11723 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 11724 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-9.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-2.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 11730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,13.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 11732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,9.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 11735 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-35.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 2 + - uid: 11738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 11739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 +- proto: JetpackMiniFilled + entities: + - uid: 11740 + components: + - type: Transform + pos: -24.579163,-23.571226 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: -24.48149,-23.278257 + parent: 2 +- proto: Jug + entities: + - uid: 11742 + components: + - type: MetaData + name: jug (hydrogen) + - type: Transform + pos: 15.368045,21.754807 + parent: 2 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + name: null + reagents: + - data: null + ReagentId: Hydrogen + Quantity: 200 + - uid: 11743 + components: + - type: MetaData + name: jug (oxygen) + - type: Transform + pos: 16.85395,13.577293 + parent: 2 + - type: SolutionContainerManager + solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + name: null + reagents: + - data: null + ReagentId: Oxygen + Quantity: 200 +- proto: KitchenDeepFryer + entities: + - uid: 11744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,14.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 3708 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 11745 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 11746 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - uid: 11749 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 11750 + components: + - type: Transform + pos: -22.5,-73.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 11752 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 3707 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 11755 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 11756 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 11758 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 11759 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 11760 + components: + - type: Transform + pos: -50.834995,46.600662 + parent: 2 +- proto: Lamp + entities: + - uid: 11761 + components: + - type: Transform + pos: -29.751759,-5.001006 + parent: 2 + - uid: 11762 + components: + - type: Transform + rot: 1.571183399358068 rad + pos: -31.572754,11.73662 + parent: 2 + - uid: 11763 + components: + - type: Transform + pos: -35.505363,-5.032391 + parent: 2 +- proto: LampBanana + entities: + - uid: 11764 + components: + - type: Transform + pos: -34.775867,12.178839 + parent: 2 +- proto: LampGold + entities: + - uid: 3 + components: + - type: Transform + pos: -1.036339,-51.081 + parent: 2 + - type: HandheldLight + toggleActionEntity: 4 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 4 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 11765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.393183,-78.510345 + parent: 2 + - uid: 11766 + components: + - type: Transform + pos: -35.60518,35.00326 + parent: 2 + - uid: 11767 + components: + - type: MetaData + desc: It's a light emitting device that would look great on a desk, your honor. + name: your honor's desk lamp + - type: Transform + pos: -24.372782,44.17426 + parent: 2 + - uid: 11769 + components: + - type: Transform + rot: -1.5604093829777579 rad + pos: -49.27722,-0.13982904 + parent: 2 + - uid: 11990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.8466065,41.135147 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 11770 + components: + - type: Transform + pos: -43.123215,3.5202084 + parent: 2 + - uid: 11771 + components: + - type: Transform + pos: -41.60759,3.5045834 + parent: 2 + - uid: 11772 + components: + - type: Transform + pos: -39.92009,3.5514584 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 11773 + components: + - type: Transform + pos: -28.754606,3.898841 + parent: 2 + - uid: 11774 + components: + - type: Transform + pos: 15.320686,21.09547 + parent: 2 +- proto: LauncherCreamPie + entities: + - uid: 11775 + components: + - type: Transform + pos: -34.2789,11.509767 + parent: 2 +- proto: Lighter + entities: + - uid: 11776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.32283,13.430806 + parent: 2 + - uid: 11777 + components: + - type: Transform + pos: -6.7160864,-10.619381 + parent: 2 +- proto: LockerAtmosphericsFilled + entities: + - uid: 11778 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 11779 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 11780 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - uid: 11781 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 11782 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 11784 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 11785 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 11516 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 11788 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 +- proto: LockerClown + entities: + - uid: 12701 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 +- proto: LockerDetectiveFilled + entities: + - uid: 11789 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 11790 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 11791 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 11794 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 11795 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 11796 + components: + - type: Transform + pos: -40.762257,-11.504958 + parent: 2 + - uid: 11797 + components: + - type: Transform + pos: -34.272675,-15.476467 + parent: 2 + - uid: 11798 + components: + - type: Transform + pos: -38.251842,-15.48689 + parent: 2 + - uid: 11799 + components: + - type: Transform + pos: -40.751842,-13.516771 + parent: 2 +- proto: LockerForensicMantisFilled + entities: + - uid: 11800 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 11801 + components: + - type: MetaData + name: standing freezer + - type: Transform + pos: -15.5,13.5 + parent: 2 +- proto: LockerFreezerVaultFilled + entities: + - uid: 16976 + components: + - type: Transform + pos: 0.50842816,20.89434 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 11802 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 11803 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 11804 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 11808 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 5913 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 +- proto: LockerParamedicFilledHardsuit + entities: + - uid: 11809 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 7112 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 11812 + components: + - type: Transform + pos: -49.5,39.5 + parent: 2 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 11813 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 11814 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 11816 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 11817 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + pos: -38.5,37.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: -38.5,36.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 11821 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 11824 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 11825 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 11826 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 11827 + components: + - type: Transform + pos: -39.5,43.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 11828 + components: + - type: Transform + pos: -41.5,44.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 11829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,44.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 11830 + components: + - type: Transform + pos: -54.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6133 +- proto: MachineFrameDestroyed + entities: + - uid: 11831 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 +- proto: MagazineBoxPistolRubber + entities: + - uid: 11832 + components: + - type: Transform + pos: -40.250866,-4.7284784 + parent: 2 +- proto: MailTeleporter + entities: + - uid: 11833 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 11834 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,47.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 11846 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 11849 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + pos: -34.5,41.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 11851 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + pos: -27.5,34.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + pos: -35.5,40.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + pos: -43.5,47.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 11859 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - type: RandomSpawner + chance: 1 + - uid: 11866 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 11869 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + pos: -52.5,50.5 + parent: 2 + - uid: 11871 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 11873 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - type: RandomSpawner + chance: 0.33 + - uid: 11875 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - type: RandomSpawner + chance: 0.33 + - uid: 11876 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 11877 + components: + - type: Transform + pos: -10.623214,-40.594276 + parent: 2 + - uid: 11878 + components: + - type: Transform + pos: -1.6566803,-9.189967 + parent: 2 +- proto: MatchstickSpent + entities: + - uid: 11879 + components: + - type: Transform + pos: -1.4587636,-11.702128 + parent: 2 + - uid: 11880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.2504303,-7.866131 + parent: 2 +- proto: MaterialBiomass + entities: + - uid: 11881 + components: + - type: Transform + pos: 23.304926,26.475252 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 11882 + components: + - type: Transform + pos: -3.5870895,35.598076 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 11883 + components: + - type: Transform + pos: -3.2246723,35.358982 + parent: 2 +- proto: MaterialReclaimer + entities: + - uid: 11884 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 11885 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 +- proto: Mattress + entities: + - uid: 11886 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + pos: -58.5,-11.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 11892 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 +- proto: MedicalScanner + entities: + - uid: 11768 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 6138 +- proto: MedicalTechFab + entities: + - uid: 11905 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 11906 + components: + - type: Transform + pos: -33.61622,-0.22362387 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: -39.61396,1.6954846 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: 21.629698,12.608099 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 11909 + components: + - type: Transform + pos: 18.426147,3.446567 + parent: 2 + - uid: 11910 + components: + - type: Transform + pos: 31.466284,3.6528134 + parent: 2 + - uid: 11911 + components: + - type: Transform + pos: -47.34356,-12.883555 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 11912 + components: + - type: Transform + pos: 22.281868,3.3742456 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 11913 + components: + - type: Transform + pos: -39.36741,1.3493237 + parent: 2 + - uid: 11914 + components: + - type: Transform + pos: 8.371661,19.445524 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 11915 + components: + - type: Transform + pos: -33.319344,-0.42689192 + parent: 2 + - uid: 11916 + components: + - type: Transform + pos: 8.264449,-31.267378 + parent: 2 + - uid: 11917 + components: + - type: Transform + pos: 12.546082,7.3016906 + parent: 2 + - uid: 11918 + components: + - type: Transform + pos: 12.389832,7.676951 + parent: 2 + - uid: 11919 + components: + - type: Transform + pos: 18.691772,3.6967406 + parent: 2 + - uid: 11920 + components: + - type: Transform + pos: 22.676147,3.6185603 + parent: 2 + - uid: 11921 + components: + - type: Transform + pos: -36.566994,-12.461372 + parent: 2 + - uid: 11922 + components: + - type: Transform + pos: -20.280146,-14.31227 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 11923 + components: + - type: Transform + pos: -48.61617,35.53166 + parent: 2 + - uid: 11924 + components: + - type: Transform + pos: -33.098217,-0.17433691 + parent: 2 + - uid: 11925 + components: + - type: Transform + pos: -10.281632,-37.66223 + parent: 2 + - uid: 11926 + components: + - type: Transform + pos: -10.583715,-37.391212 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 11927 + components: + - type: Transform + pos: -48.33895,35.24449 + parent: 2 + - uid: 11928 + components: + - type: Transform + pos: 21.408052,12.925943 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 11929 + components: + - type: Transform + pos: -12.9764385,22.003674 + parent: 2 +- proto: MinimoogInstrument + entities: + - uid: 11930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 2 +- proto: Mirror + entities: + - uid: 11931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 2 + - uid: 11932 + components: + - type: Transform + pos: -27.5,13.5 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 11934 + components: + - type: Transform + pos: -52.276764,-6.6527042 + parent: 2 + - uid: 11935 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + pos: 0.6900537,9.946262 + parent: 2 +- proto: MopItem + entities: + - uid: 11937 + components: + - type: Transform + pos: -52.354904,-6.2620792 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: -1.657238,12.537073 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: -1.313488,12.490166 + parent: 2 +- proto: Morgue + entities: + - uid: 11942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,20.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - uid: 11944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,22.5 + parent: 2 +- proto: Multitool + entities: + - uid: 11947 + components: + - type: Transform + pos: 22.429926,26.647127 + parent: 2 + - uid: 11948 + components: + - type: Transform + pos: 4.79707,-10.595353 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 11949 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: NitrousOxideCanister + entities: + - uid: 11950 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 11951 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: NoticeBoard + entities: + - uid: 12888 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 11952 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 +- proto: OilJarCorn + entities: + - uid: 11953 + components: + - type: Transform + pos: -10.322607,14.570831 + parent: 2 +- proto: OperatingTable + entities: + - uid: 11954 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 +- proto: Oracle + entities: + - uid: 11957 + components: + - type: Transform + pos: -28.5,32.5 + parent: 2 +- proto: OreBox + entities: + - uid: 5189 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 11959 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 +- proto: OreProcessorMachineCircuitboard + entities: + - uid: 11960 + components: + - type: Transform + pos: -14.342051,-26.350395 + parent: 2 +- proto: OrganHumanKidneys + entities: + - uid: 11961 + components: + - type: Transform + pos: -38.592125,-22.352108 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 11962 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 11963 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 11964 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 11965 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: PaintingAmogusTriptych + entities: + - uid: 11966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,36.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + pos: -50.5,51.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,45.5 + parent: 2 +- proto: PaintingMothBigCatch + entities: + - uid: 11969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 2 +- proto: PaintingPrayerHands + entities: + - uid: 11970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,37.5 + parent: 2 +- proto: PaintingRedBlueYellow + entities: + - uid: 11971 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 +- proto: PaintingSkeletonBoof + entities: + - uid: 11972 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 +- proto: Paper + entities: + - uid: 11973 + components: + - type: MetaData + desc: Nobody forces you to read it, you decide for yourself if you will or won't. + name: unaddressed letter + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.60897,1.5066981 + parent: 2 + - type: Paper + content: >- + The forest hardly changes + given any amount of time; + a bird can caw, a branch could fall, + but it'd still remain sublime. + + The forest sometimes changes + as the years go by; + a seed that is placed, soon becomes a new face + in a world where it lives and dies. + + The forest always changes + despite what I may say. + As generations pass, the forest lasts + to be enjoyed by another that day. + + + Edge Station was made possible with the help of Scientist, Redsky, ps3moira, and contributors in the #mapping channel in the Delta V discord. + + + Thank you for playing on Edge! + - Colin_Tel +- proto: PaperBin10 + entities: + - uid: 11974 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-12.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: -11.5,-73.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 11979 + components: + - type: MetaData + desc: The only thing that prevents you from taking paper from this bin is your honor. + name: your honor's paper bin + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,44.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,21.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-51.5 + parent: 2 +- proto: PaperCaptainsThoughts + entities: + - uid: 11989 + components: + - type: Transform + pos: 1.3153565,40.666073 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: 1.3778565,40.572258 + parent: 2 +- proto: PaperOffice + entities: + - uid: 11992 + components: + - type: Transform + pos: -31.276249,11.482831 + parent: 2 + - uid: 11993 + components: + - type: Transform + pos: -10.698187,33.26429 + parent: 2 + - uid: 11994 + components: + - type: Transform + pos: -9.487024,34.37757 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: -9.643303,33.44007 + parent: 2 + - uid: 11996 + components: + - type: Transform + pos: -35.21398,34.534798 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: -20.671059,41.71369 + parent: 2 + - uid: 11998 + components: + - type: Transform + pos: -20.530434,41.573067 + parent: 2 + - uid: 11999 + components: + - type: MetaData + desc: A plain sheet of office paper for other presumably important information, your honor. + name: your honor's other office paper + - type: Transform + rot: 3.141592653589793 rad + pos: -23.217934,43.541817 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -25.702309,41.61994 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: -25.561684,41.510567 + parent: 2 + - uid: 12002 + components: + - type: MetaData + desc: A plain sheet of office paper for important note-taking, your honor. + name: your honor's office paper + - type: Transform + rot: 3.141592653589793 rad + pos: -23.702309,43.635567 + parent: 2 + - uid: 12003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.515285,0.51080203 + parent: 2 + - uid: 12004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.452785,0.35455203 + parent: 2 +- proto: ParchisBoard + entities: + - uid: 12005 + components: + - type: Transform + pos: -36.470303,-13.543975 + parent: 2 +- proto: ParticleAcceleratorControlBox + entities: + - uid: 12006 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 +- proto: ParticleAcceleratorEmitterFore + entities: + - uid: 12007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-38.5 + parent: 2 +- proto: ParticleAcceleratorEmitterPort + entities: + - uid: 12008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-39.5 + parent: 2 +- proto: ParticleAcceleratorEmitterStarboard + entities: + - uid: 12009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-37.5 + parent: 2 +- proto: ParticleAcceleratorEndCap + entities: + - uid: 12010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-38.5 + parent: 2 +- proto: ParticleAcceleratorFuelChamber + entities: + - uid: 12011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 2 +- proto: ParticleAcceleratorPowerBox + entities: + - uid: 12012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-38.5 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 12013 + components: + - type: Transform + pos: 49.496426,11.719856 + parent: 2 + - uid: 12014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.87421,4.833787 + parent: 2 + - uid: 12015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.617245,16.938051 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: 52.733746,3.4080057 + parent: 2 + - uid: 12017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.40329,3.5484595 + parent: 2 + - uid: 12018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.489803,6.0484595 + parent: 2 + - uid: 12019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.60236,11.888304 + parent: 2 + - uid: 12020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.774414,11.285003 + parent: 2 + - uid: 12021 + components: + - type: Transform + pos: 53.980965,20.74139 + parent: 2 + - uid: 12022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.73162,14.471336 + parent: 2 + - uid: 12023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.76232,16.22641 + parent: 2 + - uid: 12024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.969765,2.739564 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: 51.391308,13.731575 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -3.9439821,45.494835 + parent: 2 + - uid: 12027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.371998,47.40885 + parent: 2 + - uid: 12028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.418755,-5.455823 + parent: 2 + - uid: 12029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.4546337,-58.60449 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: -42.28986,65.33305 + parent: 2 + - uid: 12031 + components: + - type: Transform + pos: -46.903656,61.37159 + parent: 2 + - uid: 12032 + components: + - type: Transform + pos: -50.654354,61.176277 + parent: 2 + - uid: 12033 + components: + - type: Transform + pos: -45.47761,57.738777 + parent: 2 + - uid: 12034 + components: + - type: Transform + pos: -49.40412,56.937996 + parent: 2 + - uid: 12035 + components: + - type: Transform + pos: -48.64226,54.867683 + parent: 2 + - uid: 12036 + components: + - type: Transform + pos: -47.62645,65.487564 + parent: 2 + - uid: 12037 + components: + - type: Transform + pos: -44.911102,66.07365 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -35.901894,57.245884 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: -38.217133,66.06448 + parent: 2 + - uid: 12040 + components: + - type: Transform + pos: -35.54085,64.834015 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: -34.749336,61.669937 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: -39.92608,60.687206 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: -40.429897,56.24979 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: -33.49501,54.70682 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: -32.576874,60.48807 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: -33.221523,68.63313 + parent: 2 + - uid: 12047 + components: + - type: Transform + pos: -40.454643,68.73079 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: -43.460148,70.66438 + parent: 2 + - uid: 12049 + components: + - type: Transform + pos: -49.58039,68.6136 + parent: 2 + - uid: 12050 + components: + - type: Transform + pos: -51.35794,54.15061 + parent: 2 + - uid: 12051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.567333,7.2012386 + parent: 2 + - uid: 12052 + components: + - type: Transform + pos: 51.680824,5.4629574 + parent: 2 + - uid: 12053 + components: + - type: Transform + pos: -64.69886,36.786247 + parent: 2 + - uid: 12054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.18723,37.76281 + parent: 2 + - uid: 12055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.82351,39.65734 + parent: 2 + - uid: 12056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.123978,41.395622 + parent: 2 + - uid: 12057 + components: + - type: Transform + pos: -62.217934,34.18859 + parent: 2 + - uid: 12058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.7184,30.559227 + parent: 2 + - uid: 12059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.137184,44.835064 + parent: 2 +- proto: Pen + entities: + - uid: 12060 + components: + - type: Transform + pos: -35.573357,34.456673 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: -26.686684,41.49494 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: -21.717934,41.52619 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: -49.573605,0.93681246 + parent: 2 + - uid: 12064 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 +- proto: PersonalAI + entities: + - uid: 12065 + components: + - type: Transform + pos: -48.4323,34.57368 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 12066 + components: + - type: Transform + pos: -11.485,-79.481026 + parent: 2 + - uid: 12067 + components: + - type: Transform + pos: -19.510458,-79.507164 + parent: 2 +- proto: PillMindbreakerToxin + entities: + - uid: 12068 + components: + - type: Transform + pos: -34.354607,34.588753 + parent: 2 + - uid: 12069 + components: + - type: Transform + pos: -34.479607,34.760628 + parent: 2 +- proto: PinpointerNuclear + entities: + - uid: 12070 + components: + - type: Transform + pos: -0.56012964,20.614931 + parent: 2 +- proto: PlantBag + entities: + - uid: 12071 + components: + - type: Transform + pos: -62.631588,-5.6212254 + parent: 2 +- proto: PlaqueAtmos + entities: + - uid: 12072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-52.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 12074 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 12075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,1.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,1.5 + parent: 2 +- proto: PlasmaTankFilled + entities: + - uid: 12077 + components: + - type: Transform + pos: -18.588102,-40.51464 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 12078 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 12083 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 +- proto: PlasticFlapsOpaque + entities: + - uid: 12084 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 +- proto: PlushieBee + entities: + - uid: 12085 + components: + - type: Transform + pos: -8.650637,1.4858495 + parent: 2 +- proto: PlushieMothRandom + entities: + - uid: 12086 + components: + - type: Transform + pos: 7.4780726,-23.615965 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 12087 + components: + - type: MetaData + desc: A stuffed toy that resembles a security guard. + name: security guard plushie + - type: Transform + pos: -17.374437,38.554455 + parent: 2 +- proto: PlushieSharkPink + entities: + - uid: 12088 + components: + - type: Transform + pos: 28.51114,14.444282 + parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 12089 + components: + - type: Transform + pos: -30.526485,-39.54669 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: -4.3050823,46.367626 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 12091 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 12095 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 12098 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 12099 + components: + - type: Transform + pos: -13.592051,-26.621416 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: -13.3628845,-26.402514 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 12102 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 12104 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + pos: -52.5,31.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 +- proto: PositronicBrain + entities: + - uid: 12108 + components: + - type: Transform + pos: -41.489174,39.571587 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 12111 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 12113 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 +- proto: PosterContrabandLamarr + entities: + - uid: 12114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,42.5 + parent: 2 +- proto: PosterContrabandMissingGloves + entities: + - uid: 12116 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 12117 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 12118 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 +- proto: PosterContrabandRevolver + entities: + - uid: 12119 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 +- proto: PosterContrabandSafetyMothSyndie + entities: + - uid: 12120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,20.5 + parent: 2 +- proto: PosterContrabandTools + entities: + - uid: 12121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-41.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 2 +- proto: PosterLegit12Gauge + entities: + - uid: 12123 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 12124 + components: + - type: Transform + pos: -48.5,43.5 + parent: 2 +- proto: PosterLegitBuild + entities: + - uid: 12125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 2 +- proto: PosterLegitCleanliness + entities: + - uid: 12126 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 12127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-10.5 + parent: 2 +- proto: PosterLegitEnlist + entities: + - uid: 12128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 +- proto: PosterLegitFuckAround + entities: + - uid: 12129 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 12130 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 12131 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 12132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 12133 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 12134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 2 + - uid: 12135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 2 +- proto: PosterLegitMedicate + entities: + - uid: 12136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 12137 + components: + - type: Transform + pos: -26.5,44.5 + parent: 2 + - uid: 12138 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 12139 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 + - uid: 12140 + components: + - type: Transform + pos: -23.5,37.5 + parent: 2 + - uid: 12141 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 12144 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 +- proto: PosterLegitObey + entities: + - uid: 12145 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 +- proto: PosterLegitPDAAd + entities: + - uid: 12146 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 12147 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 +- proto: PosterLegitReportCrimes + entities: + - uid: 12148 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 2 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 12150 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 +- proto: PosterLegitSafetyMothBoH + entities: + - uid: 12151 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 12152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,45.5 + parent: 2 +- proto: PosterLegitSafetyMothGlimmer + entities: + - uid: 12153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,35.5 + parent: 2 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 12154 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 12155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 +- proto: PosterLegitSafetyMothPills + entities: + - uid: 12156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 +- proto: PosterLegitSafetyMothPoisoning + entities: + - uid: 12157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 12159 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 12160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-5.5 + parent: 2 +- proto: PosterLegitSpaceCops + entities: + - uid: 12161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 +- proto: PosterLegitStateLaws + entities: + - uid: 12162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-72.5 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 +- proto: PottedPlant1 + entities: + - uid: 12164 + components: + - type: Transform + pos: -3.6492977,-32.762848 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 12165 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - type: ScaleVisuals + - type: Appearance + - uid: 12166 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - type: ScaleVisuals + - type: Appearance +- proto: PottedPlant26 + entities: + - uid: 12167 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 +- proto: PottedPlant28 + entities: + - uid: 12168 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 12169 + - uid: 12170 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 +- proto: PottedPlant29 + entities: + - uid: 12171 + components: + - type: Transform + pos: 8.300806,20.221859 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 12172 + components: + - type: Transform + pos: -40.48007,31.244905 + parent: 2 + - uid: 12173 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - type: ScaleVisuals + - type: Appearance +- proto: PottedPlantRandom + entities: + - uid: 12174 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 12178 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 12179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-75.5 + parent: 2 + - uid: 12180 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 12181 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 12182 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 12183 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + pos: -27.5,7.5 + parent: 2 + - uid: 12191 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 12194 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 12205 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 10626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,19.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,19.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,22.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,19.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,9.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-15.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,0.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,31.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,34.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,34.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-9.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + pos: -50.5,50.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,45.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,42.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-28.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,20.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,12.5 + parent: 2 + - uid: 12252 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-32.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,9.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,14.5 + parent: 2 + - uid: 12256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,20.5 + parent: 2 + - uid: 12257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,12.5 + parent: 2 + - uid: 12258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 2 + - uid: 12260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,14.5 + parent: 2 + - uid: 12263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,10.5 + parent: 2 + - uid: 12264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,10.5 + parent: 2 + - uid: 12265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,10.5 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,25.5 + parent: 2 + - uid: 12267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,30.5 + parent: 2 + - uid: 12268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,26.5 + parent: 2 + - uid: 12269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,31.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,30.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,24.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + pos: -49.5,30.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,32.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,36.5 + parent: 2 + - type: Timer + - uid: 12277 + components: + - type: Transform + pos: -38.5,37.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + pos: -48.5,41.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,42.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,42.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + pos: -54.5,41.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,31.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,31.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + pos: -61.5,37.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,50.5 + parent: 2 + - uid: 12287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,42.5 + parent: 2 + - uid: 12288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,42.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,37.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,37.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,35.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,30.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,24.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,5.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-10.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-9.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,8.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,20.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,29.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: -17.5,36.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,33.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,31.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,36.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-25.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,10.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-1.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-3.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 2 + - type: Timer + - uid: 12341 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - type: Timer + - uid: 12342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-9.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-9.5 + parent: 2 + - uid: 12344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-18.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-17.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-17.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-17.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-14.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 + - type: Timer + - uid: 12356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-22.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-22.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-4.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-0.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-61.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + - uid: 12374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,26.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,11.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-0.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-16.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 12389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 2 + - uid: 12390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-45.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-47.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-38.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-38.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-27.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,12.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-71.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 12404 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-76.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-79.5 + parent: 2 + - uid: 12407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-76.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-77.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-75.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-82.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-79.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + pos: -29.5,-73.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-73.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-79.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-73.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-79.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 12425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-28.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,3.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,23.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 2 + - uid: 12436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + pos: -17.5,-63.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: -45.5,23.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-18.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-18.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-49.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,11.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - uid: 12456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - uid: 12457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,12.5 + parent: 2 + - uid: 12458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-15.5 + parent: 2 + - uid: 12459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,8.5 + parent: 2 + - uid: 12460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,5.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-31.5 + parent: 2 + - uid: 12462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-35.5 + parent: 2 + - uid: 12463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-61.5 + parent: 2 + - uid: 12464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + - uid: 12465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 12466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 12467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + - uid: 12469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 12470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + - uid: 12471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 12472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 12473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 12474 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 12475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,12.5 + parent: 2 + - uid: 12476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 2 + - uid: 12477 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 2 + - uid: 12479 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-13.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-68.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,20.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 12487 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,25.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-15.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,15.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: -47.5,23.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-24.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,37.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-49.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-51.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-51.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-44.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-41.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-40.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 +- proto: PoweredLightBlueInterior + entities: + - uid: 12529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-41.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-43.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-47.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-49.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-51.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-41.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-41.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-46.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-46.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-35.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,32.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,4.5 + parent: 2 + - uid: 12550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,41.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,44.5 + parent: 2 + - uid: 12552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,37.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,27.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,20.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,49.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,52.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + pos: -42.5,69.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,11.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,1.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-51.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-27.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-61.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-34.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,47.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 2 +- proto: PoweredLightColoredBlack + entities: + - uid: 12535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 +- proto: PoweredLightColoredFrostyBlue + entities: + - uid: 12536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 +- proto: PoweredLightColoredRed + entities: + - uid: 12538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,38.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 12571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,11.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-3.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,12.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 5328 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 12578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 6222 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,37.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,33.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-51.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 +- proto: PoweredSmallLightMaintenance + entities: + - uid: 12589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,37.5 + parent: 2 + - uid: 12591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-34.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,3.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 +- proto: PoweredSmallLightMaintenanceRed + entities: + - uid: 12595 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,22.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,21.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + pos: -41.5,47.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + pos: -43.5,47.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,2.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,44.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,40.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,22.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,1.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: -27.5,35.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-28.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - type: Timer + - uid: 12629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-21.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-19.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,13.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,31.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,43.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,29.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,49.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,55.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + pos: -15.5,-85.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 12661 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 12662 + components: + - type: Transform + pos: -14.6441345,-30.384445 + parent: 2 +- proto: Puddle + entities: + - uid: 12663 + components: + - type: Transform + pos: -49.5,46.5 + parent: 2 + - type: SolutionContainerManager + solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + name: null + reagents: + - data: null + ReagentId: Blood + Quantity: 40 + - type: StepTrigger + active: False + - uid: 12664 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - type: SolutionContainerManager + solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + name: null + reagents: + - data: null + ReagentId: Blood + Quantity: 20 + - type: StepTrigger + active: False + - uid: 12665 + components: + - type: Transform + pos: -35.5,45.5 + parent: 2 + - type: SolutionContainerManager + solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + name: null + reagents: + - data: null + ReagentId: Blood + Quantity: 10 + - type: StepTrigger + active: False + - uid: 12666 + components: + - type: Transform + pos: -43.5,57.5 + parent: 2 + - type: SolutionContainerManager + solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + name: null + reagents: + - data: null + ReagentId: Blood + Quantity: 10 + - type: StepTrigger + active: False + - uid: 12667 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - type: SolutionContainerManager + solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + name: null + reagents: + - data: null + ReagentId: Blood + Quantity: 9 + - type: StepTrigger + active: False + - uid: 12668 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - type: SolutionContainerManager + solutions: + puddle: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 1000 + name: null + reagents: + - data: null + ReagentId: Blood + Quantity: 10 + - type: StepTrigger + active: False +- proto: Rack + entities: + - uid: 1659 + components: + - type: Transform + pos: -34.5,19.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-83.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 12705 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-28.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + pos: -48.5,32.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: -44.5,49.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + pos: -49.5,32.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: -47.5,43.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 2 +- proto: RadiationCollectorFullTank + entities: + - uid: 12737 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 12744 + components: + - type: Transform + pos: -19.549526,-73.391396 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: 12.664758,-32.312305 + parent: 2 + - uid: 12746 + components: + - type: Transform + pos: -49.194317,1.0024505 + parent: 2 + - uid: 12747 + components: + - type: Transform + pos: 12.352258,-32.499935 + parent: 2 +- proto: RagItem + entities: + - uid: 12748 + components: + - type: Transform + pos: -6.5395412,-4.15932 + parent: 2 + - uid: 12749 + components: + - type: Transform + pos: 2.551126,33.567097 + parent: 2 +- proto: Railing + entities: + - uid: 12750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - uid: 12757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,7.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,22.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,5.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,23.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,6.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,9.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,24.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,24.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-26.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,37.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: -15.5,39.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,37.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 5702 + components: + - type: Transform + pos: 24.5,-47.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,24.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,24.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,38.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,38.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: -14.5,39.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,39.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 5703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-46.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-47.5 + parent: 2 +- proto: RandomAnimalSpawner + entities: + - uid: 12816 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 +- proto: RandomArcade + entities: + - uid: 12817 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 12818 + components: + - type: Transform + pos: -54.5,41.5 + parent: 2 +- proto: RandomBoards + entities: + - uid: 12819 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 12821 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 12822 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 12823 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 12825 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 14915 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 +- proto: RandomItem + entities: + - uid: 12828 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 12829 + components: + - type: Transform + pos: -37.5,33.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: -27.5,33.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 11938 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,38.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,41.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: -47.5,31.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: -37.5,48.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 12855 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,17.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,0.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 7198 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 12112 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + pos: -25.5,33.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,23.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,28.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,22.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,30.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 12905 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 12908 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 12911 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 12913 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 12917 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 12920 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 13405 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 17438 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 +- proto: RandomSnacks + entities: + - uid: 12925 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 12928 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 12930 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 12932 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + pos: -35.5,41.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,47.5 + parent: 2 + - uid: 12937 + components: + - type: Transform + pos: -26.5,35.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + pos: -28.5,19.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + pos: -46.5,43.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 12978 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: -34.5,22.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 12984 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 12985 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 12989 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 12991 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 12993 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 12995 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 12997 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + pos: -43.5,20.5 + parent: 2 +- proto: RCD + entities: + - uid: 13000 + components: + - type: Transform + pos: -2.3680477,-30.285326 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 13001 + components: + - type: Transform + pos: -2.4930477,-30.551136 + parent: 2 + - uid: 13002 + components: + - type: Transform + pos: -2.7430477,-30.5355 + parent: 2 +- proto: ReagentContainerFlour + entities: + - uid: 13003 + components: + - type: Transform + pos: -60.417053,-0.40202177 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: -60.573334,-0.26530302 + parent: 2 +- proto: ReagentContainerSugar + entities: + - uid: 13005 + components: + - type: Transform + pos: -60.749146,-0.655928 + parent: 2 + - uid: 13006 + components: + - type: Transform + pos: -60.358448,-0.71452177 + parent: 2 +- proto: Recycler + entities: + - uid: 13007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14705 + - uid: 13008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 + - type: DeviceLinkSink + links: + - 14706 +- proto: ReinforcedGirder + entities: + - uid: 5696 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: -19.5,-50.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 13016 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + pos: -30.5,-48.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: -29.5,-48.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: -61.5,-23.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + pos: -66.5,-1.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -31.5,-86.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + pos: -28.5,-86.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: -23.5,-89.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + pos: -23.5,-87.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + pos: -21.5,-89.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + pos: -37.5,-84.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: -10.5,-89.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: -1.5,-86.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + pos: -8.5,-89.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + pos: -5.5,-87.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + pos: -1.5,-87.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + pos: 1.5,-86.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + pos: -37.5,-66.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + pos: 5.5,-80.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + pos: 5.5,-76.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: 1.5,-66.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + pos: -11.5,-64.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: -0.5,-66.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: -22.5,-65.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + pos: -37.5,-80.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + pos: -37.5,-86.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + pos: -39.5,-78.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: -39.5,-74.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: -39.5,-72.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: -37.5,-82.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: -35.5,-86.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: 43.5,-23.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: 62.5,14.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + pos: -28.5,47.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + pos: -26.5,49.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: -18.5,49.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 13088 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + pos: -40.5,70.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + pos: -44.5,70.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: -32.5,54.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: -52.5,68.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + pos: -32.5,68.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + pos: -52.5,54.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + pos: -58.5,45.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + pos: -55.5,51.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + pos: -42.5,70.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + pos: -66.5,33.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + pos: -64.5,40.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + pos: -65.5,39.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + pos: -66.5,36.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + pos: -66.5,30.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + pos: -65.5,30.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 17428 + components: + - type: Transform + pos: 20.5,-49.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 13121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-40.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-38.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-37.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-26.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-33.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-43.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-37.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-47.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-47.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-47.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-47.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-47.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-47.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-47.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-38.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-44.5 + parent: 2 + - uid: 13155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-32.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-32.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-34.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-34.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 13165 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 10176 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-52.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-49.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-48.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 2 + - uid: 13180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 13184 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 13194 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 13204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 13212 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 13213 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-50.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 13232 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-18.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-18.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-18.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,3.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-1.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + - uid: 13245 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-11.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-0.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-10.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-10.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + pos: -64.5,-8.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-21.5 + parent: 2 + - uid: 13262 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 13264 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 13265 + components: + - type: Transform + pos: -23.5,37.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + pos: -23.5,-75.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + pos: -24.5,-75.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + pos: -25.5,-75.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + pos: -25.5,-77.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + pos: -24.5,-77.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + pos: -23.5,-77.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-76.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: 46.5,9.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: -11.5,45.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: -18.5,34.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: -53.5,2.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: 2.5,42.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: -14.5,43.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 13321 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + pos: -14.5,44.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + pos: -12.5,45.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,17.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + pos: -28.5,43.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: -27.5,43.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -27.5,44.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + pos: -26.5,44.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: -26.5,45.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: -25.5,45.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + pos: -24.5,45.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: -23.5,45.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: -21.5,45.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + pos: -20.5,44.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: -19.5,44.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: -19.5,43.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + pos: -18.5,43.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + pos: -45.5,37.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: -45.5,36.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + pos: -41.5,37.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + pos: -41.5,36.5 + parent: 2 + - uid: 13350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,12.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,15.5 + parent: 2 + - uid: 13352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,16.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + pos: -52.5,41.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + pos: -52.5,40.5 + parent: 2 + - uid: 13355 + components: + - type: Transform + pos: -52.5,39.5 + parent: 2 + - uid: 13356 + components: + - type: Transform + pos: -56.5,41.5 + parent: 2 + - uid: 13357 + components: + - type: Transform + pos: -56.5,40.5 + parent: 2 + - uid: 13358 + components: + - type: Transform + pos: -56.5,39.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + pos: -53.5,42.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + pos: -54.5,42.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + pos: -55.5,42.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + pos: -50.5,40.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + pos: -50.5,39.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + pos: -43.5,53.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + pos: -43.5,54.5 + parent: 2 + - uid: 13366 + components: + - type: Transform + pos: -43.5,52.5 + parent: 2 + - uid: 13367 + components: + - type: Transform + pos: -41.5,53.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + pos: -60.5,32.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: -61.5,32.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: -62.5,32.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: -60.5,37.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: -60.5,36.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + pos: -61.5,36.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + pos: -62.5,36.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + pos: -60.5,31.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 13377 + components: + - type: Transform + pos: -58.5,37.5 + parent: 2 + - uid: 13378 + components: + - type: Transform + pos: -58.5,36.5 + parent: 2 + - uid: 13379 + components: + - type: Transform + pos: -58.5,35.5 + parent: 2 + - uid: 13380 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 13381 + components: + - type: Transform + pos: -58.5,32.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + pos: -44.5,52.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: -41.5,52.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + pos: -40.5,52.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: -41.5,54.5 + parent: 2 + - uid: 13386 + components: + - type: Transform + pos: -51.5,35.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + pos: -51.5,34.5 + parent: 2 + - uid: 13388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,20.5 + parent: 2 + - uid: 13389 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 13394 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: -41.5,24.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 13399 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-34.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 13411 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 13412 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 13413 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + pos: -34.5,44.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 13416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-33.5 + parent: 2 + - uid: 13417 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 13418 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 13419 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + pos: -58.5,34.5 + parent: 2 + - uid: 13421 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 13427 + components: + - type: Transform + pos: -51.5,26.5 + parent: 2 + - uid: 13428 + components: + - type: Transform + pos: -51.5,27.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 13431 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 13437 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 13438 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + pos: -64.5,-10.5 + parent: 2 + - uid: 13440 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 13441 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 13448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 13449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + - uid: 13451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 13453 + components: + - type: MetaData + name: igniter remote + - type: Transform + pos: -7.6044617,-45.35101 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11696: + - Pressed: Trigger +- proto: ResearchAndDevelopmentServer + entities: + - uid: 11518 + components: + - type: Transform + pos: -46.5,37.5 + parent: 2 +- proto: ReverseEngineeringMachine + entities: + - uid: 13455 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 13456 + components: + - type: Transform + pos: -38.37131,10.388292 + parent: 2 +- proto: Rickenbacker4003Instrument + entities: + - uid: 13457 + components: + - type: Transform + pos: -13.422459,-7.552577 + parent: 2 +- proto: Roboisseur + entities: + - uid: 13214 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 +- proto: RollerBed + entities: + - uid: 13459 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 13465 + components: + - type: Transform + pos: -7.980133,-15.275741 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: 19.36564,-3.2383914 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 13467 + components: + - type: Transform + pos: -8.056363,-15.556316 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: 19.64689,-3.2488155 + parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 14149 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 12576 + components: + - type: Transform + pos: 20.5,-45.5 + parent: 2 +- proto: SawImprov + entities: + - uid: 13472 + components: + - type: Transform + pos: -38.408813,-22.660835 + parent: 2 +- proto: Scalpel + entities: + - uid: 13473 + components: + - type: Transform + pos: -40.603756,39.604465 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: 28.528358,18.75126 + parent: 2 +- proto: Screen + entities: + - uid: 664 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: -48.5,31.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: -8.5,40.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 12259 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 16349 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 16350 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 17425 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 17439 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 13475 + components: + - type: Transform + pos: -44.492104,49.61668 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: 43.401894,13.602428 + parent: 2 + - uid: 13477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.685566,26.819038 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: 9.434161,21.357351 + parent: 2 + - uid: 13479 + components: + - type: Transform + pos: -22.25804,-79.09148 + parent: 2 + - uid: 13480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.36143,-17.800941 + parent: 2 + - uid: 13481 + components: + - type: Transform + pos: -40.520424,40.344563 + parent: 2 +- proto: SecBreachingHammer + entities: + - uid: 13482 + components: + - type: Transform + pos: -44.37972,-6.4715266 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 13483 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 13484 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 13485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.596,16.519693 + parent: 2 + - uid: 13486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.893677,18.004068 + parent: 2 + - uid: 13487 + components: + - type: Transform + pos: 59.757862,14.74235 + parent: 2 + - uid: 13488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.816467,8.275618 + parent: 2 + - uid: 13489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.15228,3.900022 + parent: 2 + - uid: 13490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.382828,7.317991 + parent: 2 + - uid: 13491 + components: + - type: Transform + pos: -34.57097,61.620876 + parent: 2 + - uid: 13492 + components: + - type: Transform + pos: -50.41144,57.145058 + parent: 2 + - uid: 13493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.63749,58.219276 + parent: 2 + - uid: 13494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.703537,56.598183 + parent: 2 + - uid: 13495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.04307,58.492714 + parent: 2 + - uid: 13496 + components: + - type: Transform + pos: -48.926792,61.148964 + parent: 2 + - uid: 13497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.738884,62.16459 + parent: 2 + - uid: 13498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.750977,64.78176 + parent: 2 + - uid: 13499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.387257,66.246605 + parent: 2 + - uid: 13500 + components: + - type: Transform + pos: -44.80493,64.91848 + parent: 2 + - uid: 13501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.26985,65.465355 + parent: 2 + - uid: 13502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.919876,65.97317 + parent: 2 + - uid: 13503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.356083,64.391136 + parent: 2 + - uid: 13504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.024918,60.800564 + parent: 2 + - uid: 13505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.450966,62.48025 + parent: 2 + - uid: 13506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.567245,57.36386 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: -39.78678,56.73886 + parent: 2 + - uid: 13508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.946777,58.359955 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: 40.9584,4.7919416 + parent: 2 + - uid: 13510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.418865,16.50159 + parent: 2 + - uid: 13511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.358456,40.470463 + parent: 2 +- proto: SheetGlass + entities: + - uid: 13512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.456774,-42.462822 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + pos: -14.5,-24.5 + parent: 2 +- proto: SheetGlass10 + entities: + - uid: 13516 + components: + - type: Transform + pos: -42.71093,39.51951 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 13517 + components: + - type: Transform + pos: -44.465656,44.540848 + parent: 2 + - uid: 13518 + components: + - type: Transform + pos: -2.6182039,-28.469719 + parent: 2 + - type: Stack + count: 10 + - type: Item + size: 10 +- proto: SheetPlasma1 + entities: + - uid: 13519 + components: + - type: Transform + pos: 17.551308,13.414032 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 13520 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 13521 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 +- proto: SheetPlastic1 + entities: + - uid: 13524 + components: + - type: Transform + pos: -18.274788,30.116554 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: 15.062635,30.356768 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: 24.375921,28.403645 + parent: 2 + - uid: 13527 + components: + - type: Transform + pos: 39.844673,5.9532356 + parent: 2 +- proto: SheetSteel + entities: + - uid: 13528 + components: + - type: Transform + pos: -6.512475,-42.389595 + parent: 2 + - uid: 13529 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + pos: -18.496037,-42.552208 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + pos: 8.547893,9.674978 + parent: 2 + - type: Stack + count: 15 + - type: Item + size: 15 + - uid: 13533 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + pos: 12.552183,-10.534737 + parent: 2 + - uid: 13535 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - type: Stack + count: 10 + - type: Item + size: 10 +- proto: SheetSteel1 + entities: + - uid: 13536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.464287,32.544342 + parent: 2 + - uid: 13537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.3126,34.426918 + parent: 2 + - uid: 13538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.847466,46.46159 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: -50.59335,62.34951 + parent: 2 + - uid: 13540 + components: + - type: Transform + pos: -32.264744,55.757713 + parent: 2 +- proto: SheetSteel10 + entities: + - uid: 13541 + components: + - type: Transform + pos: -43.440098,39.540356 + parent: 2 +- proto: SheetUranium + entities: + - uid: 13542 + components: + - type: Transform + pos: -3.473349,-28.465164 + parent: 2 + - type: Stack + count: 10 + - type: Item + size: 10 +- proto: Shiv + entities: + - uid: 12169 + components: + - type: Transform + parent: 12168 + - type: Physics + canCollide: False +- proto: ShowcaseRobot + entities: + - uid: 13544 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: -14.5,-77.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + pos: -14.5,-75.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + pos: -3.5,-76.5 + parent: 2 +- proto: ShowcaseRobotAntique + entities: + - uid: 13548 + components: + - type: Transform + pos: -7.5,-73.5 + parent: 2 +- proto: ShowcaseRobotMarauder + entities: + - uid: 13549 + components: + - type: Transform + pos: -7.5,-79.5 + parent: 2 +- proto: ShowcaseRobotWhite + entities: + - uid: 13550 + components: + - type: Transform + pos: -17.5,-72.5 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 13551 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13602 + - uid: 13552 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13602 + - uid: 13553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13602 +- proto: ShuttersNormalOpen + entities: + - uid: 13554 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13608 + - uid: 13555 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13608 + - uid: 13556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-76.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13607 + - uid: 13558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13607 + - uid: 13559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13610 + - uid: 13560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13610 + - uid: 13561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13610 +- proto: ShuttersRadiation + entities: + - uid: 13562 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13600 + - uid: 13563 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13601 + - uid: 13564 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13601 + - uid: 13565 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13600 + - uid: 13566 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13603 + - uid: 13567 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13603 +- proto: ShuttersRadiationOpen + entities: + - uid: 13568 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13596 + - 13597 + - uid: 13569 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13596 + - 13597 + - uid: 13570 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13596 + - 13597 + - uid: 13571 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13596 + - 13597 + - uid: 13572 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13606 + - uid: 13573 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13606 + - uid: 13574 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13606 + - uid: 13575 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13606 + - uid: 13576 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13606 + - uid: 13577 + components: + - type: Transform + pos: -56.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13578 + components: + - type: Transform + pos: -53.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13579 + components: + - type: Transform + pos: -55.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13580 + components: + - type: Transform + pos: -56.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13581 + components: + - type: Transform + pos: -56.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13582 + components: + - type: Transform + pos: -54.5,42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13583 + components: + - type: Transform + pos: -52.5,39.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13584 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13585 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13586 + components: + - type: Transform + pos: -52.5,40.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 + - uid: 13587 + components: + - type: Transform + pos: -52.5,41.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13604 +- proto: ShuttersWindow + entities: + - uid: 13588 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13599 + - uid: 13589 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13599 + - uid: 13590 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13599 +- proto: ShuttersWindowOpen + entities: + - uid: 13591 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13607 + - uid: 13592 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 13607 +- proto: SignalButton + entities: + - uid: 12262 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 682: + - Pressed: Toggle + 681: + - Pressed: Toggle + 671: + - Pressed: Toggle + - uid: 13593 + components: + - type: MetaData + name: blast door button + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 679: + - Pressed: Toggle + 680: + - Pressed: Toggle + - uid: 13594 + components: + - type: Transform + pos: -11.5,40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 697: + - Pressed: Toggle + 689: + - Pressed: Toggle + 687: + - Pressed: Toggle + 691: + - Pressed: Toggle + 694: + - Pressed: Toggle + 692: + - Pressed: Toggle + 685: + - Pressed: Toggle + 693: + - Pressed: Toggle + 696: + - Pressed: Toggle + 686: + - Pressed: Toggle + 690: + - Pressed: Toggle + 688: + - Pressed: Toggle + 695: + - Pressed: Toggle + 684: + - Pressed: Toggle + - uid: 13595 + components: + - type: Transform + pos: -50.5,48.5 + parent: 2 +- proto: SignalButtonDirectional + entities: + - uid: 13596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13569: + - Pressed: Toggle + 13571: + - Pressed: Toggle + 13568: + - Pressed: Toggle + 13570: + - Pressed: Toggle + - uid: 13597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13569: + - Pressed: Toggle + 13571: + - Pressed: Toggle + 13570: + - Pressed: Toggle + 13568: + - Pressed: Toggle + - uid: 13598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-77.5 + parent: 2 +- proto: SignalSwitchDirectional + entities: + - uid: 13599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13588: + - On: Open + - Off: Close + 13589: + - On: Open + - Off: Close + 13590: + - On: Open + - Off: Close + - uid: 13600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13562: + - On: Open + - Off: Close + 13565: + - On: Open + - Off: Close + - uid: 13601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13564: + - On: Open + - Off: Close + 13563: + - On: Open + - Off: Close + - uid: 13602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13552: + - On: Open + - Off: Close + 13551: + - On: Open + - Off: Close + 13553: + - On: Open + - Off: Close + - uid: 13603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13567: + - On: Open + - Off: Close + 13566: + - On: Open + - Off: Close + - uid: 13604 + components: + - type: Transform + pos: -56.5,38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13585: + - On: Close + - Off: Open + 13584: + - On: Close + - Off: Open + 13577: + - On: Close + - Off: Open + 13581: + - On: Close + - Off: Open + 13580: + - On: Close + - Off: Open + 13579: + - On: Close + - Off: Open + 13582: + - On: Close + - Off: Open + 13578: + - On: Close + - Off: Open + 13587: + - On: Close + - Off: Open + 13586: + - On: Close + - Off: Open + 13583: + - On: Close + - Off: Open + - uid: 13605 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 675: + - On: Open + - Off: Close + - uid: 13606 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13572: + - On: Close + - Off: Open + 13573: + - On: Close + - Off: Open + 13574: + - On: Close + - Off: Open + 13575: + - On: Close + - Off: Open + 13576: + - On: Close + - Off: Open + - uid: 13607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13558: + - On: Close + - Off: Open + 13557: + - On: Close + - Off: Open + 13591: + - On: Close + - Off: Open + 13592: + - On: Close + - Off: Open + - uid: 13608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13554: + - On: Close + - Off: Open + 13555: + - On: Close + - Off: Open + - uid: 13609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6195: + - On: Forward + - Off: Off + 6206: + - On: Forward + - Off: Off + 6214: + - On: Forward + - Off: Off + 674: + - On: Open + - Off: Close + 6217: + - On: Forward + - Off: Off + 676: + - On: Open + - Off: Close + 6202: + - On: Forward + - Off: Off + 6216: + - On: Forward + - Off: Off + 678: + - On: Open + - Off: Close + 6205: + - On: Forward + - Off: Off + 6207: + - On: Forward + - Off: Off + 677: + - On: Open + - Off: Close + 6209: + - On: Forward + - Off: Off + - uid: 13610 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13559: + - On: Close + - Off: Open + 13560: + - On: Close + - Off: Open + 13561: + - On: Close + - Off: Open +- proto: SignAnomaly + entities: + - uid: 13611 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 13612 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 13613 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 13614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-36.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 2 +- proto: SignBar + entities: + - uid: 13616 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 13619 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 +- proto: SignCanisters + entities: + - uid: 13621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-35.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 13624 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 13626 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 +- proto: SignCloning + entities: + - uid: 13627 + components: + - type: MetaData + desc: A sign indicating the genetics lab. + name: genetics sign + - type: Transform + pos: 21.5,20.5 + parent: 2 +- proto: SignCryogenics + entities: + - uid: 13628 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 13629 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 13630 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 +- proto: SignDanger + entities: + - uid: 13631 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 13632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,2.5 + parent: 2 + - uid: 13634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 2 +- proto: SignDirectionalBrig + entities: + - uid: 13635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 13637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.503876,4.298375 + parent: 2 +- proto: SignDirectionalChemistry + entities: + - uid: 13638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.487395,9.282801 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 6179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,8.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: -22.500383,24.288881 + parent: 2 + - uid: 11811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.503588,16.700665 + parent: 2 + - uid: 11891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.498802,16.716185 + parent: 2 + - uid: 12073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,17.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5009322,-1.287831 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 13641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 13642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.497333,0.28726125 + parent: 2 + - uid: 13643 + components: + - type: Transform + pos: -16.504673,2.2774227 + parent: 2 + - uid: 13644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.495766,2.715937 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 13646 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.496965,2.286934 + parent: 2 + - uid: 13648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-20.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,16.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-6.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + pos: -43.5,24.5 + parent: 2 + - uid: 13653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,16.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,8.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - uid: 13657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - uid: 13658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 13659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 13661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5081036,2.308813 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 13662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5135782,9.714039 + parent: 2 + - uid: 13663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.497333,2.726455 + parent: 2 + - uid: 13664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.503315,2.2795773 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 13665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.48825,4.720544 + parent: 2 +- proto: SignDirectionalLogistics + entities: + - uid: 13666 + components: + - type: Transform + pos: 3.5016003,0.28885967 + parent: 2 + - uid: 13667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.50161,2.7161162 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 13668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.4960685,0.7113888 + parent: 2 + - uid: 13669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.486547,2.724739 + parent: 2 +- proto: SignDirectionalSalvage + entities: + - uid: 13670 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 13671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.496443,2.7158065 + parent: 2 + - uid: 13672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.497333,0.72506523 + parent: 2 + - uid: 13673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.503878,8.715101 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 13674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - uid: 13675 + components: + - type: Transform + pos: -23.503878,8.2929325 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 13676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 2 +- proto: SignDirectionalWash + entities: + - uid: 13677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,8.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + pos: -29.5,13.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-16.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-16.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + pos: 39.48014,2.2781317 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 13683 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 +- proto: SignDojo + entities: + - uid: 13685 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 +- proto: SignDrones + entities: + - uid: 13686 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 +- proto: SignElectrical + entities: + - uid: 13687 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: -39.5,-80.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: -33.5,-66.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: -64.5,-20.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 13695 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 13700 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 13702 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 13704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 2 + - uid: 13705 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,31.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,35.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + - uid: 13709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,42.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,27.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 13712 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 13714 + components: + - type: MetaData + desc: A sign indicating an EVA suit storage room. EVA equipment is found here. + - type: Transform + pos: -19.5,-21.5 + parent: 2 +- proto: SignFire + entities: + - uid: 13715 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 13716 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 +- proto: SignHead + entities: + - uid: 13717 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 2 +- proto: SignHydro3 + entities: + - uid: 13719 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 13720 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 13721 + components: + - type: Transform + pos: -45.5,24.5 + parent: 2 +- proto: SignMail + entities: + - uid: 13722 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 13723 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 13724 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 13725 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 13727 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 13728 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 +- proto: SignRadiation + entities: + - uid: 13729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-29.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-29.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 13737 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 13741 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-75.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-75.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-77.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-77.5 + parent: 2 +- proto: SignScience + entities: + - uid: 13746 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 +- proto: SignSec + entities: + - uid: 13748 + components: + - type: MetaData + desc: A sign indicating the detective's room. + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 +- proto: SignSecureMedRed + entities: + - uid: 13751 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 13753 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 13754 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 13755 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 13756 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 13758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-75.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-77.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: -23.5,-75.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: -23.5,-77.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 13762 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 +- proto: SignToxins + entities: + - uid: 13764 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 13765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 +- proto: SingularityGenerator + entities: + - uid: 13766 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 +- proto: Sink + entities: + - uid: 13767 + components: + - type: Transform + pos: -27.5,12.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-12.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,11.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 13770 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,0.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 13772 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 13777 + components: + - type: MetaData + name: AME/generator SMES 2 + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 13778 + components: + - type: MetaData + name: AME/generator SMES 1 + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 13779 + components: + - type: MetaData + name: Singularity SMES 2 + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 13780 + components: + - type: MetaData + name: Singularity SMES 1 + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 13781 + components: + - type: MetaData + name: Solars, North SMES + - type: Transform + pos: -44.5,50.5 + parent: 2 + - uid: 13782 + components: + - type: MetaData + name: Solars, East SMES + - type: Transform + pos: 45.5,12.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 13783 + components: + - type: Transform + pos: -10.560801,-26.621416 + parent: 2 +- proto: SmokingPipeFilledTobacco + entities: + - uid: 13784 + components: + - type: Transform + pos: -34.66471,32.488693 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 13785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-10.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,34.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -60.5,2.5 + parent: 2 +- proto: SolarAssembly + entities: + - uid: 13789 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + pos: 56.5,16.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + pos: 58.5,16.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 13797 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + pos: 54.5,5.5 + parent: 2 + - uid: 13800 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: 52.5,5.5 + parent: 2 + - uid: 13803 + components: + - type: Transform + pos: -50.5,56.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: -49.5,56.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: -47.5,58.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: -47.5,60.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: -48.5,60.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: -47.5,64.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + pos: -49.5,66.5 + parent: 2 + - uid: 13810 + components: + - type: Transform + pos: -50.5,60.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + pos: -36.5,62.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + pos: -39.5,60.5 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: -39.5,66.5 + parent: 2 + - uid: 13814 + components: + - type: Transform + pos: -34.5,64.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 13815 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 13816 + components: + - type: Transform + pos: 56.5,5.5 + parent: 2 + - uid: 13817 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 13819 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 13821 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 13822 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 13823 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 13824 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 13825 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 13826 + components: + - type: Transform + pos: 60.5,6.5 + parent: 2 + - uid: 13827 + components: + - type: Transform + pos: 60.5,4.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,62.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,64.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,62.5 + parent: 2 + - uid: 13832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,56.5 + parent: 2 + - uid: 13833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,58.5 + parent: 2 + - uid: 13834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,66.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,62.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,58.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,58.5 + parent: 2 + - uid: 13838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,58.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,58.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,56.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,66.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,66.5 + parent: 2 +- proto: SolarPanelBroken + entities: + - uid: 13843 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 13847 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 13848 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 13849 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 13850 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 13851 + components: + - type: Transform + pos: 58.5,17.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + pos: 58.5,18.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,66.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,66.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,66.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,64.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,64.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,62.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,60.5 + parent: 2 + - uid: 13864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,60.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,58.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,58.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,56.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,56.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,62.5 + parent: 2 + - uid: 13870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,62.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,62.5 + parent: 2 + - uid: 13872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,66.5 + parent: 2 + - uid: 13873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,66.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,64.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,64.5 + parent: 2 + - uid: 13876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,64.5 + parent: 2 + - uid: 13877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,56.5 + parent: 2 + - uid: 13878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,58.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,58.5 + parent: 2 + - uid: 13880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,56.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,56.5 + parent: 2 + - uid: 13882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,56.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,58.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,58.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 13885 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: -42.5,68.5 + parent: 2 +- proto: SophicScribe + entities: + - uid: 13887 + components: + - type: Transform + pos: -30.5,32.5 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 13888 + components: + - type: Transform + pos: -0.39021492,18.901426 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: -0.5777149,18.713926 + parent: 2 + - uid: 13890 + components: + - type: Transform + pos: -0.45271492,18.495176 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: -0.49958992,18.823301 + parent: 2 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 13892 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 2 +- proto: SpareIdCabinetFilled + entities: + - uid: 16973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,32.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 13893 + components: + - type: Transform + pos: -26.5,32.5 + parent: 2 + - uid: 13894 + components: + - type: Transform + pos: -35.5,43.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 +- proto: SpawnMobCatBingus + entities: + - uid: 13897 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 13898 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 +- proto: SpawnMobCatGeneric + entities: + - uid: 13899 + components: + - type: Transform + pos: 9.5,27.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 13900 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 13901 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 13902 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 +- proto: SpawnMobDrone + entities: + - uid: 13903 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 11904 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 +- proto: SpawnMobKangarooWillow + entities: + - uid: 13907 + components: + - type: Transform + pos: -48.5,39.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 13908 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 13909 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 13910 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 13911 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 13912 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 13913 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 13933 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 13934 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 13939 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - uid: 13940 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 13942 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 13944 + components: + - type: Transform + pos: -40.5,41.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 13945 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: -19.5,9.5 + parent: 2 +- proto: SpawnPointBoxer + entities: + - uid: 13947 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + pos: -44.5,26.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 13950 + components: + - type: Transform + pos: -10.5,35.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 13951 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 13955 + components: + - type: Transform + pos: -29.5,29.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 13956 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 13960 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 13962 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 13964 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 13965 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 13966 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 13967 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 +- proto: SpawnPointForensicMantis + entities: + - uid: 13968 + components: + - type: Transform + pos: -36.5,33.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 13969 + components: + - type: Transform + pos: -8.5,33.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 13970 + components: + - type: Transform + pos: -11.5,34.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 13971 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 13973 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 13975 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 13976 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 13977 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 13981 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 +- proto: SpawnPointLocationMidRoundAntag + entities: + - uid: 13982 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: -33.5,41.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 13994 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 + - uid: 13996 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 +- proto: SpawnPointMailCarrier + entities: + - uid: 13998 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 14001 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 14005 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 14007 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 14008 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 14009 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 14010 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 14011 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 13914 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 13915 + components: + - type: Transform + pos: -48.5,12.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 13920 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 13923 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 13924 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 13927 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 13928 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 13929 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 13930 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 13931 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 13932 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 +- proto: SpawnPointPrisoner + entities: + - uid: 14014 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 14021 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 14022 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 14023 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 14025 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 14026 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - uid: 14027 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + pos: -39.5,26.5 + parent: 2 + - uid: 14029 + components: + - type: Transform + pos: -38.5,26.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 14030 + components: + - type: Transform + pos: -11.5,33.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 14031 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 14034 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 14035 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 14039 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 14045 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 14047 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 14052 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 14059 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 14060 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 14063 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 14066 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 +- proto: SpeedLoaderLightRifle + entities: + - uid: 14067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.3356142,20.589882 + parent: 2 + - uid: 14068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5895681,20.7266 + parent: 2 + - uid: 14069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.3160801,20.492226 + parent: 2 +- proto: Spoon + entities: + - uid: 14070 + components: + - type: Transform + rot: 2.2102243900299072 rad + pos: -62.70413,-7.8477774 + parent: 2 + - uid: 14071 + components: + - type: Transform + pos: -10.708023,14.570831 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 14072 + components: + - type: Transform + pos: 32.446316,-16.471302 + parent: 2 + - uid: 14073 + components: + - type: Transform + pos: -27.260195,11.305423 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: 32.27444,-16.174221 + parent: 2 + - uid: 14075 + components: + - type: Transform + pos: 0.16161251,9.369377 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: 0.32103753,9.680939 + parent: 2 +- proto: SS13Memorial + entities: + - uid: 14077 + components: + - type: MetaData + desc: He peers into the future to see what it will bring him... + name: a nameless crewman + - type: Transform + anchored: False + rot: -1.3720747987416129 rad + pos: -10,38 + parent: 2 + - type: Physics + bodyType: Dynamic + missingComponents: + - Pullable +- proto: StasisBed + entities: + - uid: 14078 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 +- proto: StationMap + entities: + - uid: 14079 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-77.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,12.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-3.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: -47.5,24.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,36.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 14090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,12.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,14.5 + parent: 2 + - uid: 14096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,17.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,18.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,15.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,20.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,18.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,17.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,11.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,20.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,21.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,21.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,14.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,15.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,14.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,12.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,11.5 + parent: 2 +- proto: Stool + entities: + - uid: 14116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 2 + - uid: 14119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,27.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,27.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,28.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,28.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,29.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,29.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,29.5 + parent: 2 + - uid: 14126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,28.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,27.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 5170 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 14138 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 14139 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-14.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-14.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-13.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,35.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,34.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,33.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 5710 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 5714 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 14153 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 14154 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 14155 + components: + - type: Transform + pos: -55.5,31.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 + - uid: 14156 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: SubstationBasic + entities: + - uid: 14158 + components: + - type: MetaData + name: substation (Central) + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 14159 + components: + - type: MetaData + name: substation (South-Central) + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 14160 + components: + - type: MetaData + name: substation (Southwest) + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 14161 + components: + - type: MetaData + name: substation (Singularity) + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 14162 + components: + - type: MetaData + name: substation (AI) + - type: Transform + pos: -14.5,-80.5 + parent: 2 + - uid: 14163 + components: + - type: MetaData + name: substation (North) + - type: Transform + pos: -14.5,32.5 + parent: 2 + - uid: 14164 + components: + - type: MetaData + name: substation (Northwest) + - type: Transform + pos: -47.5,44.5 + parent: 2 + - uid: 14165 + components: + - type: MetaData + name: substation (Northeast) + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 14166 + components: + - type: MetaData + name: substation (Engineering) + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 14167 + components: + - type: MetaData + name: substation (Southeast) + - type: Transform + pos: 26.5,-22.5 + parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 14168 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 14170 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 14172 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: -14.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14181 + components: + - type: Transform + pos: -15.5,34.5 + parent: 2 +- proto: SuitStorageEVAAlternate + entities: + - uid: 14182 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: -45.5,34.5 + parent: 2 +- proto: SuitStorageEVAEmergency + entities: + - uid: 14184 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 14188 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14190 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 14191 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 14192 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 14195 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 14196 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 14198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-76.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: vault + - uid: 14200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: executive bar + - uid: 14201 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: bridge + - uid: 14202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: command +- proto: SurveillanceCameraEngineering + entities: + - uid: 14203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: drones + - uid: 14204 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: singularity - south + - uid: 14205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: engi hall - north + - uid: 14206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: engi hall - south + - uid: 14207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: ame/grav + - uid: 14208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: board storage + - uid: 14209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: pa controller + - uid: 14210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: singularity - north + - uid: 14211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: eva storage + - uid: 14212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: canisters +- proto: SurveillanceCameraGeneral + entities: + - uid: 14213 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: south kitchen + - uid: 14214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: evac + - uid: 14215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: dorms + - uid: 14216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: east evac + - uid: 14217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: south evac + - uid: 14218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: south dorms + - uid: 14219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: east dorms + - uid: 14220 + components: + - type: Transform + pos: -21.5,38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: courtroom + - uid: 14221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: north halls + - uid: 14222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: north kitchen + - uid: 14223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: crossroads +- proto: SurveillanceCameraMedical + entities: + - uid: 14224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: cloning + - uid: 14225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: cryo lab + - uid: 14226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: chemistry + - uid: 14227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: surgery + - uid: 14228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: virology + - uid: 14229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: treatment + - uid: 17441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: lobby +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 14230 + components: + - type: MetaData + name: camera router (command) + - type: Transform + pos: -27.5,-80.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 14231 + components: + - type: MetaData + name: camera router (engineering) + - type: Transform + pos: -27.5,-78.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 14232 + components: + - type: MetaData + name: camera router (general) + - type: Transform + pos: -27.5,-73.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 14233 + components: + - type: MetaData + name: camera router (medical) + - type: Transform + pos: -27.5,-74.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 14234 + components: + - type: MetaData + name: camera router (epistemics) + - type: Transform + pos: -27.5,-79.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 14235 + components: + - type: MetaData + name: camera router (security) + - type: Transform + pos: -25.5,-72.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 14236 + components: + - type: MetaData + name: camera router (service) + - type: Transform + pos: -25.5,-74.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 14237 + components: + - type: MetaData + name: camera router (supply) + - type: Transform + pos: -27.5,-72.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 14238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: library + - uid: 14239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: artifact science + - uid: 14240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: main lab + - uid: 14241 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: toxins/artifact lab + - uid: 14242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: lockers + - uid: 14243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: epi reception + - uid: 14244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: chapel + - uid: 14245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: anomaly/robotics lab +- proto: SurveillanceCameraSecurity + entities: + - uid: 14246 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: perma botany + - uid: 14247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: perma visiting + - uid: 14248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: perma dorms + - uid: 14249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Heavy Armory + - uid: 14250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: reception + - uid: 14251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: lockers + - uid: 14252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: perma kitchen + - uid: 14253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: holding cells + - uid: 14254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: light armory + - uid: 14255 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: reception + - uid: 14256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: interrogation + - uid: 14257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: visiting room + - uid: 14258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: less lethal armory + - uid: 14259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: shooting range + - uid: 14260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: detective's post +- proto: SurveillanceCameraService + entities: + - uid: 14261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: kitchen north + - uid: 14262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: freezer + - uid: 14263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: arrivals kitchenette + - uid: 14264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: hydroponics + - uid: 14265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: kitchen south + - uid: 14266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: boxing ring + - uid: 14267 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: head of personnel's office +- proto: SurveillanceCameraSupply + entities: + - uid: 14268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: salvage + - uid: 14269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: loading area + - uid: 14270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: mail room + - uid: 14271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: cargo reception + - uid: 14272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: long hall + - uid: 14273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: conveyors +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 14274 + components: + - type: MetaData + name: wireless camera router (Entertainment) + - type: Transform + pos: -14.5,20.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: -25.5,-80.5 + parent: 2 +- proto: SurveillanceWirelessCameraAnchoredConstructed + entities: + - uid: 14064 + components: + - type: MetaData + desc: A camera. This one constantly streams to Dojo Network Entertainment. Their ratings have been going down, so the executives have been known to encourage spectators to throw a chair at someone or something. + name: wireless camera (DNE) + - type: Transform + pos: 33.5,13.5 + parent: 2 + - type: SurveillanceCamera + id: DNE +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 11987 + components: + - type: MetaData + desc: A camera. This one is constantly streaming to Edgy Court Cases TV, the premier legal station that's sure to keep lawbreakers *on Edge!* + name: wireless camera (ECC TV) + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,43.5 + parent: 2 + - type: SurveillanceCamera + id: ECC TV +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 14276 + components: + - type: MetaData + desc: A camera. This one broadcasts to EDG station, the station that stays on the cutting edge of current events on-board Edge station! + name: wireless camera (EDG TV) + - type: Transform + rot: -2.080612181625094 rad + pos: -12.459,22.595003 + parent: 2 + - type: SurveillanceCamera + id: EDG TV +- proto: Table + entities: + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 14284 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 14285 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-2.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 14297 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-3.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,18.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-2.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 14311 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,42.5 + parent: 2 + - uid: 14314 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 14315 + components: + - type: Transform + pos: -50.5,48.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: -50.5,49.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + pos: -51.5,48.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,37.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + pos: -50.5,47.5 + parent: 2 + - uid: 14320 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 14322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 14323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 + - uid: 14324 + components: + - type: Transform + pos: -49.5,48.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + pos: -49.5,49.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,47.5 + parent: 2 + - uid: 14328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + pos: -51.5,49.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + pos: -49.5,47.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + pos: -51.5,47.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 13543 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 14345 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + pos: -49.5,27.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 14357 + components: + - type: Transform + pos: -48.5,27.5 + parent: 2 + - uid: 14358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,25.5 + parent: 2 + - uid: 14360 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 14361 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-0.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 14365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 2 + - uid: 14366 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 14368 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 14370 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 14371 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 14372 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 14377 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 14378 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 14380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - uid: 14381 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 14383 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 14384 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 14385 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 14387 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - uid: 14388 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 14389 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 14390 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - uid: 14391 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 14392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,2.5 + parent: 2 + - uid: 14393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,2.5 + parent: 2 + - uid: 14394 + components: + - type: Transform + pos: -43.5,39.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-72.5 + parent: 2 + - uid: 14397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-80.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-79.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-79.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-73.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-73.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + - uid: 14405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 14410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,21.5 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 14413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,7.5 + parent: 2 + - uid: 14414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - uid: 14415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + - uid: 14418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,9.5 + parent: 2 + - uid: 14419 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 14420 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: -38.5,31.5 + parent: 2 + - uid: 14423 + components: + - type: Transform + pos: -48.5,34.5 + parent: 2 + - uid: 14424 + components: + - type: Transform + pos: -48.5,35.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + pos: -40.5,51.5 + parent: 2 + - uid: 14427 + components: + - type: Transform + pos: -35.5,34.5 + parent: 2 + - uid: 14428 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 14429 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-17.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + pos: -42.5,39.5 + parent: 2 + - uid: 14432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,2.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 14435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,43.5 + parent: 2 + - uid: 14436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,44.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: -41.5,39.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: -40.5,39.5 + parent: 2 + - uid: 14449 + components: + - type: Transform + pos: -40.5,40.5 + parent: 2 + - uid: 14450 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-51.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-51.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 14455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,33.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 14458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 14459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 14461 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 14463 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 14464 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 14465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,34.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 14466 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 14468 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 14469 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 14470 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 14472 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 + - uid: 14473 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 14474 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 2 + - uid: 14475 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 14476 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 14477 + components: + - type: Transform + pos: -36.5,-76.5 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: 2.5,-76.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 14480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,26.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 14485 + components: + - type: Transform + pos: -10.5,33.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + pos: -9.5,33.5 + parent: 2 + - uid: 14487 + components: + - type: Transform + pos: -10.5,34.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 14489 + components: + - type: Transform + pos: -10.5,32.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,37.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,32.5 + parent: 2 + - uid: 14495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,21.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 14497 + components: + - type: Transform + pos: -47.5,41.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 14505 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 14506 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 14511 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 14512 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 14513 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 14515 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 14516 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - uid: 14517 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 14518 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + pos: -33.5,28.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: -43.5,27.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,19.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,19.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 14542 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 14545 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 14546 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,32.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 14550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 14551 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 +- proto: TableStone + entities: + - uid: 14553 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 +- proto: TableWood + entities: + - uid: 14555 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,26.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,27.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + pos: -21.5,41.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: -25.5,41.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + pos: -20.5,41.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 +- proto: TableWoodReinforced + entities: + - uid: 14565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 14573 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 14575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-73.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-74.5 + parent: 2 + - uid: 14577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-78.5 + parent: 2 + - uid: 14578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-79.5 + parent: 2 + - uid: 14579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-79.5 + parent: 2 + - uid: 14580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-78.5 + parent: 2 + - uid: 14581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-74.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-74.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-73.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 14585 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 14586 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 14587 + components: + - type: MetaData + desc: The one he most commonly vaults over to reach your honor's comfy chair. + name: your honor's left-most reinforced wood table + - type: Transform + pos: -24.5,43.5 + parent: 2 + - uid: 14588 + components: + - type: MetaData + desc: Though it is the one with the most exposure, it is equally as important as the other table sections. + name: your honor's front-most reinforced wood table + - type: Transform + pos: -23.5,43.5 + parent: 2 + - uid: 14589 + components: + - type: MetaData + desc: Witnesses often bump the corner when taking the stand. + name: your honor's corner-most reinforced wood table + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 14590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,30.5 + parent: 2 + - uid: 14591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,30.5 + parent: 2 + - uid: 14592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,37.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,1.5 + parent: 2 + - uid: 14594 + components: + - type: MetaData + desc: Voted "Most Likely to Accumulate Dust" of all your honor's tables. + name: your honor's right-most reinforced wood table + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 14595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 2 + - uid: 14597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 +- proto: tatamimat + entities: + - uid: 14598 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 14599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - uid: 14600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,6.5 + parent: 2 + - uid: 14601 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 14602 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 14603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,9.5 + parent: 2 + - uid: 14604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,9.5 + parent: 2 + - uid: 14609 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + - uid: 14612 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,5.5 + parent: 2 + - uid: 14614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,6.5 + parent: 2 + - uid: 14615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,7.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 14617 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 14618 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,10.5 + parent: 2 + - uid: 14620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,10.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,8.5 + parent: 2 + - uid: 14622 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,5.5 + parent: 2 + - uid: 14624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,10.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,9.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,7.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,5.5 + parent: 2 + - uid: 14629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,8.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,9.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,6.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 +- proto: TelecomServer + entities: + - uid: 7260 + components: + - type: Transform + pos: -30.5,-74.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7261 + - 7262 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7263 + components: + - type: Transform + pos: -28.5,-79.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7264 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7265 + components: + - type: Transform + pos: -30.5,-75.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7266 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7267 + components: + - type: Transform + pos: -28.5,-74.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7268 + - 7269 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7270 + components: + - type: Transform + pos: -30.5,-78.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7271 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7272 + components: + - type: Transform + pos: -30.5,-77.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7273 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 7274 + components: + - type: Transform + pos: -28.5,-78.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7275 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 14634 + components: + - type: Transform + pos: -24.5,-72.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: -24.5,-80.5 + parent: 2 +- proto: ThermomachineFreezerMachineCircuitBoard + entities: + - uid: 14636 + components: + - type: Transform + pos: -11.592051,-26.621416 + parent: 2 +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 14637 + components: + - type: Transform + pos: -6.4656,-42.514595 + parent: 2 +- proto: TimerTrigger + entities: + - uid: 14638 + components: + - type: Transform + pos: 9.392495,21.753458 + parent: 2 +- proto: TintedWindow + entities: + - uid: 14639 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 14641 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 14643 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 14648 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 14652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,9.5 + parent: 2 + - uid: 14654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - uid: 14655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 14659 + components: + - type: Transform + pos: 1.7769808,-10.705922 + parent: 2 + - uid: 14660 + components: + - type: Transform + pos: 29.478056,24.531494 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 14661 + components: + - type: Transform + pos: -29.827248,-10.610678 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: 3.6223974,-19.342974 + parent: 2 + - uid: 14663 + components: + - type: Transform + pos: -42.5538,-2.7034986 + parent: 2 + - uid: 14664 + components: + - type: Transform + pos: -47.503345,0.4337144 + parent: 2 + - uid: 14665 + components: + - type: Transform + pos: -53.433834,31.35351 + parent: 2 + - uid: 14666 + components: + - type: Transform + pos: 25.324356,18.286425 + parent: 2 + - uid: 14667 + components: + - type: Transform + pos: 21.27988,-22.19179 + parent: 2 + - uid: 14668 + components: + - type: Transform + pos: 7.471225,15.4227915 + parent: 2 + - uid: 14669 + components: + - type: Transform + pos: -26.499691,19.384647 + parent: 2 + - uid: 14670 + components: + - type: Transform + pos: -21.466671,13.577564 + parent: 2 + - uid: 14671 + components: + - type: Transform + pos: 6.6968956,7.356404 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 14672 + components: + - type: Transform + pos: 1.5277321,18.725857 + parent: 2 +- proto: ToolboxMechanical + entities: + - uid: 14673 + components: + - type: Transform + pos: -10.480042,-24.573797 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 14674 + components: + - type: Transform + pos: -17.440155,-83.509575 + parent: 2 + - uid: 14675 + components: + - type: Transform + pos: -41.22711,-6.611117 + parent: 2 + - uid: 14676 + components: + - type: Transform + pos: -49.65051,32.736427 + parent: 2 + - uid: 14677 + components: + - type: Transform + pos: -49.42134,32.517525 + parent: 2 + - uid: 14678 + components: + - type: Transform + pos: -47.63044,-12.36487 + parent: 2 + - uid: 14679 + components: + - type: Transform + pos: 26.377935,-21.641388 + parent: 2 +- proto: ToyAi + entities: + - uid: 14680 + components: + - type: Transform + pos: -8.611491,-76.47475 + parent: 2 +- proto: ToyAmongPequeno + entities: + - uid: 14681 + components: + - type: Transform + pos: 0.22309184,23.320057 + parent: 2 + - uid: 14682 + components: + - type: Transform + pos: -50.447548,46.652744 + parent: 2 + - uid: 14683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.71391,48.025852 + parent: 2 + - uid: 14684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.479637,45.98868 + parent: 2 + - uid: 14685 + components: + - type: Transform + pos: -51.52429,46.73087 + parent: 2 + - uid: 14686 + components: + - type: Transform + pos: -52.44894,47.746494 + parent: 2 + - uid: 14687 + components: + - type: Transform + pos: -52.44894,48.65795 + parent: 2 + - uid: 14688 + components: + - type: Transform + pos: -52.422894,49.725662 + parent: 2 + - uid: 14689 + components: + - type: Transform + pos: -50.508472,50.754307 + parent: 2 + - uid: 14690 + components: + - type: Transform + pos: -49.323357,50.65014 + parent: 2 + - uid: 14691 + components: + - type: Transform + pos: -48.372658,49.42618 + parent: 2 + - uid: 14692 + components: + - type: Transform + pos: -48.34661,48.423576 + parent: 2 + - uid: 14693 + components: + - type: Transform + pos: -38.38389,3.271461 + parent: 2 + - uid: 14694 + components: + - type: Transform + pos: 1.7562656,-2.5871618 + parent: 2 +- proto: ToyFigurineBoxer + entities: + - uid: 14024 + components: + - type: Transform + pos: 35.207005,12.911483 + parent: 2 +- proto: ToyFigurineCargoTech + entities: + - uid: 14695 + components: + - type: Transform + pos: 7.7041554,-16.06605 + parent: 2 +- proto: ToyFigurineEngineer + entities: + - uid: 14696 + components: + - type: Transform + pos: 2.2488086,-9.017249 + parent: 2 +- proto: ToyNuke + entities: + - uid: 14697 + components: + - type: Transform + pos: -47.588776,-13.505631 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 14698 + components: + - type: Transform + pos: 0.46778727,42.6243 + parent: 2 +- proto: ToySpawner + entities: + - uid: 14699 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 +- proto: TrainingBomb + entities: + - uid: 14700 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 +- proto: TromboneInstrument + entities: + - uid: 14702 + components: + - type: Transform + pos: -13.500584,-7.4743967 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 14703 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6190: + - Left: Forward + - Right: Reverse + - Middle: Off + 6191: + - Left: Forward + - Right: Reverse + - Middle: Off + 6192: + - Left: Forward + - Right: Reverse + - Middle: Off + 6193: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 14704 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6204: + - Left: Forward + - Right: Reverse + - Middle: Off + 6215: + - Left: Forward + - Right: Reverse + - Middle: Off + 6201: + - Left: Forward + - Right: Reverse + - Middle: Off + 6203: + - Left: Forward + - Right: Reverse + - Middle: Off + 6213: + - Left: Forward + - Right: Reverse + - Middle: Off + 6212: + - Left: Forward + - Right: Reverse + - Middle: Off + 6211: + - Left: Forward + - Right: Reverse + - Middle: Off + 6210: + - Left: Forward + - Right: Reverse + - Middle: Off + 6208: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 14705 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13007: + - Left: Forward + - Right: Reverse + - Middle: Off + 6200: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 14706 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6199: + - Left: Forward + - Right: Reverse + - Middle: Off + 6198: + - Left: Forward + - Right: Reverse + - Middle: Off + 13008: + - Left: Forward + - Right: Reverse + - Middle: Off + 6197: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 14707 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6194: + - Left: Forward + - Right: Reverse + - Middle: Off + 6189: + - Left: Forward + - Right: Reverse + - Middle: Off + 6188: + - Left: Forward + - Right: Reverse + - Middle: Off + 6186: + - Left: Forward + - Right: Reverse + - Middle: Off + 6187: + - Left: Forward + - Right: Reverse + - Middle: Off + 6196: + - Left: Forward + - Right: Reverse + - Middle: Off + 6219: + - Left: Forward + - Right: Reverse + - Middle: Off + 6218: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 14277 + components: + - type: Transform + pos: -19.5,11.5 + parent: 2 + - uid: 14708 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 +- proto: UniformPrinter + entities: + - uid: 14710 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 14711 + components: + - type: Transform + pos: -19.285854,6.843782 + parent: 2 +- proto: Vaccinator + entities: + - uid: 14712 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 11933 + components: + - type: Transform + pos: 28.205595,12.3553095 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 14715 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 14716 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 14717 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 +- proto: VendingMachineBoxingDrobe + entities: + - uid: 14720 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 14721 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 14722 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 14723 + components: + - type: Transform + pos: -31.5,35.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 14724 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 14725 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 14727 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 14728 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 14730 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 14731 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 14732 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 14733 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 14734 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 14735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 +- proto: VendingMachineCourierDrobe + entities: + - uid: 14736 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 14737 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 14738 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 14739 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 14740 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 14742 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 14743 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 14744 + components: + - type: Transform + pos: -45.5,30.5 + parent: 2 + - uid: 14745 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 14746 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 14747 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 13458 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 14749 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 14750 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 14751 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 14752 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 14754 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 +- proto: VendingMachineMNKDrobe + entities: + - uid: 14755 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 14756 + components: + - type: Transform + pos: -17.5,11.5 + parent: 2 +- proto: VendingMachinePride + entities: + - uid: 14757 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 +- proto: VendingMachineRepDrobe + entities: + - uid: 14758 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 +- proto: VendingMachineRestockChemVend + entities: + - uid: 14759 + components: + - type: Transform + pos: 8.652911,19.716545 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 14760 + components: + - type: Transform + pos: -38.5,39.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 14761 + components: + - type: Transform + pos: -44.5,40.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 14762 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 14763 + components: + - type: Transform + pos: -38.5,33.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 14764 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 14765 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 14766 + components: + - type: Transform + pos: -18.5,11.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 14767 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 14768 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 14769 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 14770 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 14771 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 14772 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 14773 + components: + - type: Transform + pos: -17.5,-70.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 14774 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 14775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 14776 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 584 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 14777 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 10710 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 11396 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 11480 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 14778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-41.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-52.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 + parent: 2 + - uid: 14783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 2 + - uid: 14784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-54.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-54.5 + parent: 2 + - uid: 14786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 2 + - uid: 14788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-50.5 + parent: 2 + - uid: 14790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-39.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 + - uid: 14793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-52.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 + parent: 2 + - uid: 14795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-41.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 2 + - uid: 14798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-36.5 + parent: 2 + - uid: 14800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-53.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-48.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-40.5 + parent: 2 + - uid: 14806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-50.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-50.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-52.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-53.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-52.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-50.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-52.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-52.5 + parent: 2 + - uid: 14816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-52.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-52.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-50.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-41.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-48.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-46.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-39.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-49.5 + parent: 2 + - uid: 14829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-51.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-46.5 + parent: 2 + - uid: 14831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 2 + - uid: 14835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-52.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-52.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-48.5 + parent: 2 + - uid: 14840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-46.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-39.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-36.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-44.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-44.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-54.5 + parent: 2 + - uid: 14847 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 14852 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 14854 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 14863 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 14865 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 14868 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 14871 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 14873 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 14877 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 14889 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 14891 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 14892 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 2 + - uid: 14893 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 14894 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - uid: 14897 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 + - uid: 14898 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 14900 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 14907 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 14931 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 14933 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 14937 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 14939 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 14940 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - uid: 14943 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 14946 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 14948 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - uid: 14950 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 14957 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 14958 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 14959 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 14960 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 14961 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 14962 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 14963 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 14964 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 14965 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 14966 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 14967 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 14968 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 14971 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 14972 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 14976 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + pos: -42.5,-22.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + pos: -43.5,-22.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: -44.5,-22.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 14990 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 14992 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 14993 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 14994 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 15001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 2 + - uid: 15002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-21.5 + parent: 2 + - uid: 15003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 15005 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 15012 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 15026 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 15027 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 15028 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 15029 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 15040 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 15041 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 15042 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 15043 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 15045 + components: + - type: Transform + pos: -44.5,-21.5 + parent: 2 + - uid: 15046 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 15047 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 15048 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 15049 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 15051 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 15053 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 15062 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-24.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-24.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + pos: 9.5,-44.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 15073 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-27.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-26.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 15090 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 15091 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 15092 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - uid: 15095 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 15110 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 15113 + components: + - type: Transform + pos: -45.5,40.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-80.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,10.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-2.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 15126 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 15128 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 15129 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 15133 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-18.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-18.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-19.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-17.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-16.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-15.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-14.5 + parent: 2 + - uid: 15145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-13.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-12.5 + parent: 2 + - uid: 15147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-11.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 + - uid: 15151 + components: + - type: Transform + pos: -48.5,2.5 + parent: 2 + - uid: 15152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,4.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,3.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 15155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-7.5 + parent: 2 + - uid: 15156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 15164 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 15165 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 15166 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 15169 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - uid: 15170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-26.5 + parent: 2 + - uid: 15171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-46.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 15173 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-41.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 15176 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 15177 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 2 + - uid: 15180 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 15185 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 15189 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 15191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 2 + - uid: 15192 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 15193 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 15194 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 15195 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 15197 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 15199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-46.5 + parent: 2 + - uid: 15200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-29.5 + parent: 2 + - uid: 15201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-29.5 + parent: 2 + - uid: 15202 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-29.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-29.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 2 + - uid: 15206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-41.5 + parent: 2 + - uid: 15207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - uid: 15208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 2 + - uid: 15209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-45.5 + parent: 2 + - uid: 15210 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-29.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 15213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-29.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-29.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-47.5 + parent: 2 + - uid: 15216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-47.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-47.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-47.5 + parent: 2 + - uid: 15221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-47.5 + parent: 2 + - uid: 15222 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 2 + - uid: 15223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 2 + - uid: 15224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-29.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-47.5 + parent: 2 + - uid: 15226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-47.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 15230 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + pos: -40.5,-45.5 + parent: 2 + - uid: 15232 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 15234 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 15235 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 2 + - uid: 15236 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 15237 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 15239 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 15241 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 2 + - uid: 15242 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 15246 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 15247 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 15249 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 15251 + components: + - type: Transform + pos: -41.5,-48.5 + parent: 2 + - uid: 15252 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 15254 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 15257 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 15258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-29.5 + parent: 2 + - uid: 15259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-28.5 + parent: 2 + - uid: 15260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-28.5 + parent: 2 + - uid: 15261 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 15263 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 15264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-47.5 + parent: 2 + - uid: 15268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-47.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-47.5 + parent: 2 + - uid: 15270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-48.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 15272 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 15273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-48.5 + parent: 2 + - uid: 15274 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 15275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 2 + - uid: 15276 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 15277 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 15278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-29.5 + parent: 2 + - uid: 15279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 2 + - uid: 15280 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 15281 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 15282 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 15284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 15285 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 15286 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 15287 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 15288 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 15290 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 15291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-10.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 15294 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 15295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-7.5 + parent: 2 + - uid: 15296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-5.5 + parent: 2 + - uid: 15297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-1.5 + parent: 2 + - uid: 15298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,4.5 + parent: 2 + - uid: 15299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 2 + - uid: 15300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 2 + - uid: 15301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-15.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-17.5 + parent: 2 + - uid: 15303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 2 + - uid: 15304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-18.5 + parent: 2 + - uid: 15305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-11.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-18.5 + parent: 2 + - uid: 15307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-18.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-18.5 + parent: 2 + - uid: 15310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-18.5 + parent: 2 + - uid: 15311 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 15312 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 15313 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 15315 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-3.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 15322 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,8.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-2.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,3.5 + parent: 2 + - uid: 15328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,3.5 + parent: 2 + - uid: 15329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,3.5 + parent: 2 + - uid: 15330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,3.5 + parent: 2 + - uid: 15331 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 15332 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 15335 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 15336 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 15337 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,3.5 + parent: 2 + - uid: 15339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,2.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,2.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,4.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-10.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,4.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,4.5 + parent: 2 + - uid: 15350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,2.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-4.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-5.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-9.5 + parent: 2 + - uid: 15354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-11.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-12.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-18.5 + parent: 2 + - uid: 15357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - uid: 15358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-14.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,44.5 + parent: 2 + - uid: 15362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-17.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-16.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-16.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-15.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-15.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-15.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-15.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-17.5 + parent: 2 + - uid: 15370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,3.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,2.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,1.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,0.5 + parent: 2 + - uid: 15374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-2.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-12.5 + parent: 2 + - uid: 15376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-13.5 + parent: 2 + - uid: 15377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-13.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-20.5 + parent: 2 + - uid: 15379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 2 + - uid: 15380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-16.5 + parent: 2 + - uid: 15382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-16.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-16.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-4.5 + parent: 2 + - uid: 15387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-8.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-0.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-35.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 2 + - uid: 15399 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 15400 + components: + - type: Transform + pos: 41.5,-23.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,10.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,10.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 15423 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,10.5 + parent: 2 + - uid: 15427 + components: + - type: Transform + pos: -5.5,-81.5 + parent: 2 + - uid: 15428 + components: + - type: Transform + pos: -5.5,-82.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + pos: -6.5,-82.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: -6.5,-81.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: -7.5,-82.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: -5.5,-80.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: -7.5,-81.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-80.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: -1.5,-74.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: -1.5,-75.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: -1.5,-76.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: -1.5,-77.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: -1.5,-78.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: -2.5,-74.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: -2.5,-75.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: -2.5,-76.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: -2.5,-77.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: -2.5,-78.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: -3.5,-78.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + pos: -3.5,-79.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + pos: -3.5,-80.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + pos: -2.5,-80.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + pos: -2.5,-79.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + pos: -3.5,-73.5 + parent: 2 + - uid: 15451 + components: + - type: Transform + pos: -2.5,-73.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: -2.5,-72.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + pos: -3.5,-72.5 + parent: 2 + - uid: 15454 + components: + - type: Transform + pos: -3.5,-74.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: -4.5,-71.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: -3.5,-71.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + pos: -4.5,-72.5 + parent: 2 + - uid: 15458 + components: + - type: Transform + pos: -4.5,-80.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + pos: -4.5,-81.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + pos: -3.5,-81.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + pos: -3.5,-75.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 + - uid: 15463 + components: + - type: Transform + pos: -3.5,-77.5 + parent: 2 + - uid: 15464 + components: + - type: Transform + pos: -8.5,-81.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + pos: -13.5,-73.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + pos: -5.5,-72.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + pos: -5.5,-71.5 + parent: 2 + - uid: 15468 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + pos: -6.5,-71.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + pos: -6.5,-70.5 + parent: 2 + - uid: 15471 + components: + - type: Transform + pos: -7.5,-70.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + pos: -7.5,-71.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: -7.5,-72.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 15476 + components: + - type: Transform + pos: -8.5,-70.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + pos: -10.5,-70.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: -11.5,-72.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: -11.5,-70.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + pos: -12.5,-72.5 + parent: 2 + - uid: 15487 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + pos: -12.5,-70.5 + parent: 2 + - uid: 15489 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 2 + - uid: 15490 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + pos: -13.5,-70.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 15494 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + pos: -19.5,-70.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + pos: -18.5,-71.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: -19.5,-72.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: -18.5,-72.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: -14.5,-73.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: -15.5,-73.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: -18.5,-73.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + pos: -17.5,-73.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: -13.5,-74.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: -13.5,-75.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + pos: -13.5,-78.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: -15.5,-84.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -14.5,-84.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: -13.5,-84.5 + parent: 2 + - uid: 15515 + components: + - type: Transform + pos: -13.5,-83.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: -8.5,-82.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: -9.5,-80.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: -9.5,-81.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: -9.5,-82.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: -10.5,-80.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: -10.5,-81.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -10.5,-82.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: -11.5,-80.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + pos: -11.5,-81.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + pos: -11.5,-82.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: -12.5,-80.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: -12.5,-81.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -12.5,-82.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + pos: -13.5,-80.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + pos: -13.5,-81.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + pos: -13.5,-79.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: -14.5,-79.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: -15.5,-79.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + pos: -17.5,-79.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + pos: -18.5,-79.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + pos: -18.5,-78.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: -18.5,-75.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + pos: -18.5,-74.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: -18.5,-80.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: -18.5,-81.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + pos: -18.5,-82.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: -18.5,-83.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: -18.5,-84.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + pos: -17.5,-84.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + pos: -19.5,-82.5 + parent: 2 + - uid: 15547 + components: + - type: Transform + pos: -19.5,-81.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + pos: -19.5,-80.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + pos: -21.5,-80.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + pos: -20.5,-81.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + pos: -20.5,-80.5 + parent: 2 + - uid: 15552 + components: + - type: Transform + pos: -21.5,-81.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: -22.5,-80.5 + parent: 2 + - uid: 15554 + components: + - type: Transform + pos: -22.5,-81.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + pos: -23.5,-80.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: -23.5,-81.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: -23.5,-79.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: -23.5,-78.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: -23.5,-74.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: -23.5,-73.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: -23.5,-72.5 + parent: 2 + - uid: 15562 + components: + - type: Transform + pos: -23.5,-71.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: -22.5,-72.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + pos: -22.5,-71.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + pos: -21.5,-72.5 + parent: 2 + - uid: 15566 + components: + - type: Transform + pos: -21.5,-71.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + pos: -20.5,-72.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + pos: -20.5,-71.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: -28.5,-80.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: -24.5,-81.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + pos: -25.5,-81.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + pos: -26.5,-81.5 + parent: 2 + - uid: 15574 + components: + - type: Transform + pos: -27.5,-81.5 + parent: 2 + - uid: 15575 + components: + - type: Transform + pos: -28.5,-81.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: -29.5,-81.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: -30.5,-81.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + pos: -29.5,-80.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: -30.5,-80.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + pos: -31.5,-80.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + pos: -31.5,-79.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: -31.5,-78.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: -32.5,-78.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: -32.5,-77.5 + parent: 2 + - uid: 15585 + components: + - type: Transform + pos: -32.5,-76.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: -32.5,-75.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: -32.5,-74.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + pos: -31.5,-77.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + pos: -31.5,-76.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: -31.5,-74.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + pos: -31.5,-73.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: -31.5,-72.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: -30.5,-72.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: -30.5,-71.5 + parent: 2 + - uid: 15596 + components: + - type: Transform + pos: -29.5,-71.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: -28.5,-71.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + pos: -27.5,-71.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + pos: -26.5,-71.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + pos: -25.5,-71.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + pos: -24.5,-71.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + pos: -29.5,-72.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + pos: -28.5,-72.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-76.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-75.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-77.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-77.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-77.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-75.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-75.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-62.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-62.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-25.5 + parent: 2 + - uid: 15614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-24.5 + parent: 2 + - uid: 15615 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-25.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,0.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + pos: 7.5,23.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - uid: 15631 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + pos: 8.5,23.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: 9.5,23.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,49.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-36.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 15671 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 15672 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 15678 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 15686 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 15688 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 15690 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 15700 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 15709 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-82.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -18.5,-77.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: -21.5,37.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-22.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-23.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-23.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,14.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-24.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,38.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-22.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-25.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,10.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -8.5,31.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + pos: -9.5,31.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + pos: -7.5,31.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + pos: -6.5,31.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,22.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 15786 + components: + - type: Transform + pos: -17.5,31.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + pos: -18.5,31.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,22.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + pos: -18.5,37.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: -18.5,36.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 15796 + components: + - type: Transform + pos: -1.5,36.5 + parent: 2 + - uid: 15797 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + pos: 0.5,43.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,14.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,40.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + pos: -1.5,41.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - uid: 15806 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + pos: -16.5,37.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + pos: -16.5,38.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + pos: -16.5,40.5 + parent: 2 + - uid: 15810 + components: + - type: Transform + pos: -14.5,40.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + pos: -15.5,40.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + pos: -0.5,28.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: -2.5,33.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + pos: -0.5,36.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: -16.5,39.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: -19.5,36.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: -10.5,31.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: -17.5,37.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 2.5,43.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: -15.5,32.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 15842 + components: + - type: Transform + pos: -14.5,41.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: -14.5,42.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,40.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + pos: -13.5,40.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,40.5 + parent: 2 + - uid: 15847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,40.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: -20.5,36.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: -18.5,41.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + pos: -18.5,40.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + pos: -18.5,39.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + pos: -18.5,38.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: -28.5,42.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + pos: -18.5,42.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + pos: -30.5,42.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + pos: -29.5,42.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + pos: -35.5,35.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + pos: -33.5,32.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + pos: -37.5,36.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + pos: -37.5,37.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + pos: -37.5,35.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + pos: -43.5,25.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + pos: -43.5,31.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + pos: -43.5,24.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + pos: -45.5,52.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 15870 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 15871 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - uid: 15873 + components: + - type: Transform + pos: -55.5,30.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + pos: -45.5,44.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,49.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + pos: -45.5,31.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + pos: -47.5,31.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + pos: -48.5,31.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + pos: -49.5,31.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + pos: -50.5,31.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + pos: -51.5,31.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + pos: -52.5,30.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,47.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: -37.5,38.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,42.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,43.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: -38.5,48.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,18.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,14.5 + parent: 2 + - uid: 15895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,22.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,18.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,18.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,10.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + pos: -37.5,48.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: -61.5,30.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: -60.5,30.5 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: -57.5,38.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,44.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: -56.5,38.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: -51.5,38.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: -56.5,42.5 + parent: 2 + - uid: 15907 + components: + - type: Transform + pos: -35.5,48.5 + parent: 2 + - uid: 15908 + components: + - type: Transform + pos: -52.5,38.5 + parent: 2 + - uid: 15909 + components: + - type: Transform + pos: -52.5,42.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,40.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,39.5 + parent: 2 + - uid: 15912 + components: + - type: Transform + pos: -56.5,30.5 + parent: 2 + - uid: 15913 + components: + - type: Transform + pos: -45.5,45.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: -44.5,45.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + pos: -39.5,51.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + pos: -42.5,45.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + pos: -41.5,45.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + pos: -40.5,45.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + pos: -39.5,45.5 + parent: 2 + - uid: 15920 + components: + - type: Transform + pos: -38.5,45.5 + parent: 2 + - uid: 15921 + components: + - type: Transform + pos: -37.5,45.5 + parent: 2 + - uid: 15922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,45.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + pos: -45.5,43.5 + parent: 2 + - uid: 15924 + components: + - type: Transform + pos: -45.5,42.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + pos: -45.5,41.5 + parent: 2 + - uid: 15926 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 15927 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 15928 + components: + - type: Transform + pos: -37.5,44.5 + parent: 2 + - uid: 15929 + components: + - type: Transform + pos: -37.5,43.5 + parent: 2 + - uid: 15930 + components: + - type: Transform + pos: -37.5,42.5 + parent: 2 + - uid: 15931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,46.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + pos: -46.5,42.5 + parent: 2 + - uid: 15933 + components: + - type: Transform + pos: -47.5,42.5 + parent: 2 + - uid: 15934 + components: + - type: Transform + pos: -48.5,42.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + pos: -49.5,42.5 + parent: 2 + - uid: 15936 + components: + - type: Transform + pos: -50.5,42.5 + parent: 2 + - uid: 15937 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 15938 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 15939 + components: + - type: Transform + pos: -36.5,48.5 + parent: 2 + - uid: 15940 + components: + - type: Transform + pos: -40.5,48.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: -39.5,48.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + pos: -45.5,49.5 + parent: 2 + - uid: 15944 + components: + - type: Transform + pos: -39.5,49.5 + parent: 2 + - uid: 15945 + components: + - type: Transform + pos: -45.5,48.5 + parent: 2 + - uid: 15946 + components: + - type: Transform + pos: -44.5,48.5 + parent: 2 + - uid: 15947 + components: + - type: Transform + pos: -39.5,50.5 + parent: 2 + - uid: 15948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,48.5 + parent: 2 + - uid: 15949 + components: + - type: Transform + pos: -39.5,52.5 + parent: 2 + - uid: 15950 + components: + - type: Transform + pos: -62.5,30.5 + parent: 2 + - uid: 15951 + components: + - type: Transform + pos: -45.5,51.5 + parent: 2 + - uid: 15952 + components: + - type: Transform + pos: -63.5,30.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,51.5 + parent: 2 + - uid: 15954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,48.5 + parent: 2 + - uid: 15955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,45.5 + parent: 2 + - uid: 15956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,48.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -63.5,38.5 + parent: 2 + - uid: 15958 + components: + - type: Transform + pos: -63.5,37.5 + parent: 2 + - uid: 15959 + components: + - type: Transform + pos: -47.5,47.5 + parent: 2 + - uid: 15960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,47.5 + parent: 2 + - uid: 15961 + components: + - type: Transform + pos: -51.5,37.5 + parent: 2 + - uid: 15962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,44.5 + parent: 2 + - uid: 15963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,51.5 + parent: 2 + - uid: 15964 + components: + - type: Transform + pos: -63.5,36.5 + parent: 2 + - uid: 15965 + components: + - type: Transform + pos: -62.5,38.5 + parent: 2 + - uid: 15966 + components: + - type: Transform + pos: -61.5,38.5 + parent: 2 + - uid: 15967 + components: + - type: Transform + pos: -60.5,38.5 + parent: 2 + - uid: 15968 + components: + - type: Transform + pos: -63.5,32.5 + parent: 2 + - uid: 15969 + components: + - type: Transform + pos: -63.5,31.5 + parent: 2 + - uid: 15970 + components: + - type: Transform + pos: -58.5,38.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,51.5 + parent: 2 + - uid: 15972 + components: + - type: Transform + pos: -57.5,30.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + pos: -58.5,30.5 + parent: 2 + - uid: 15974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,51.5 + parent: 2 + - uid: 15975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,47.5 + parent: 2 + - uid: 15976 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 15977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,48.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,51.5 + parent: 2 + - uid: 15979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,51.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + pos: -45.5,50.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,44.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,50.5 + parent: 2 + - uid: 15983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,44.5 + parent: 2 + - uid: 15984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,51.5 + parent: 2 + - uid: 15985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,46.5 + parent: 2 + - uid: 15986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,45.5 + parent: 2 + - uid: 15987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,43.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,49.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,50.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,44.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,45.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,10.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,10.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,14.5 + parent: 2 + - uid: 15995 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,18.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,22.5 + parent: 2 + - uid: 15998 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 15999 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 16000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,47.5 + parent: 2 + - uid: 16001 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 16002 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 16003 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 16004 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 16005 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 16006 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - uid: 16007 + components: + - type: Transform + pos: -33.5,35.5 + parent: 2 + - uid: 16008 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - uid: 16009 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 16011 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - uid: 16012 + components: + - type: Transform + pos: -33.5,33.5 + parent: 2 + - uid: 16013 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 16014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-35.5 + parent: 2 + - uid: 16015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-34.5 + parent: 2 + - uid: 16016 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 16017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,42.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-49.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,49.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 16026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-25.5 + parent: 2 + - uid: 16027 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 16033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,42.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 16035 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 16036 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 16037 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + pos: -33.5,34.5 + parent: 2 + - uid: 16043 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + pos: -17.5,-65.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 16046 + components: + - type: Transform + pos: -45.5,39.5 + parent: 2 + - uid: 16047 + components: + - type: Transform + pos: -14.5,-25.5 + parent: 2 + - uid: 16048 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 + - uid: 16049 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 16050 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + pos: -64.5,-20.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 16055 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 16056 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 16057 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 16059 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 16062 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 16063 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 16064 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 16067 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 16069 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 16070 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 16071 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 16075 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 16076 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 16078 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 16085 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 16090 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 16096 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 16098 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 2 +- proto: WallRiveted + entities: + - uid: 16104 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 16109 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 16110 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 7644 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 16122 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 16126 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 16127 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 16132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 16133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - uid: 16135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 2 + - uid: 16137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,13.5 + parent: 2 + - uid: 16138 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 16143 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 16149 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 16150 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 16151 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 16152 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 16154 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 16155 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 16158 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 16160 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 16161 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 16162 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 16163 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 16164 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 16166 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 16176 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 16179 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 16182 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 16183 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 16185 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 16187 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 16188 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 16189 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 16190 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 16191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 16196 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 16199 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 16201 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 16202 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 16204 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 16205 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 16206 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 16207 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 16208 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 16210 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 16214 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,8.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 16218 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 16219 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 16221 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 16223 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 16228 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 16229 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 16230 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 16231 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 16232 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 16233 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 16234 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 16235 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 16236 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 16241 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 + - uid: 16243 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 16244 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 16247 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 16249 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 16252 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 16253 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 16255 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 16256 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 16260 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 16262 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 16263 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 16264 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 16267 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 16268 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 16269 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 16270 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 16271 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 16272 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 16273 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,8.5 + parent: 2 + - uid: 16275 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 16276 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 16277 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 16278 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 16280 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 16284 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 16285 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 16286 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 16287 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 16288 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - uid: 16289 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 16290 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 16291 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 16292 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 16295 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 16296 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 16300 + components: + - type: Transform + pos: -26.5,12.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 16307 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - uid: 16309 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 16310 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 16314 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 16315 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 16317 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 16318 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 16319 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 16320 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 16322 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 + - uid: 16324 + components: + - type: Transform + pos: -29.5,12.5 + parent: 2 + - uid: 16325 + components: + - type: Transform + pos: -29.5,11.5 + parent: 2 + - uid: 16326 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 16327 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 16328 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 + - uid: 16329 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 16335 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: -29.5,13.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: -27.5,13.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 16339 + components: + - type: Transform + pos: -35.5,16.5 + parent: 2 + - uid: 16340 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 16341 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - uid: 16342 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 16343 + components: + - type: Transform + pos: -35.5,18.5 + parent: 2 + - uid: 16344 + components: + - type: Transform + pos: -35.5,19.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 16346 + components: + - type: Transform + pos: -35.5,21.5 + parent: 2 + - uid: 16347 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - uid: 16348 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + pos: -31.5,21.5 + parent: 2 + - uid: 16364 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: -34.5,21.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 16368 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 16378 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 16386 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 16393 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 16400 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 16401 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 16402 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 16407 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 16411 + components: + - type: Transform + pos: -21.5,24.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 16415 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 16417 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-10.5 + parent: 2 + - uid: 16452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-12.5 + parent: 2 + - uid: 16453 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 16456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,23.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 16459 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 16460 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 16461 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 16463 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 16464 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 16465 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - uid: 16468 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 2 + - uid: 16469 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 2 + - uid: 16470 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 16474 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 16477 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 16479 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 16480 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 16482 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 16483 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 16484 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 16485 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 16486 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + pos: -11.5,27.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 16489 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 16490 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 16493 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + pos: -39.5,16.5 + parent: 2 + - uid: 16495 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 16496 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 2 + - uid: 16497 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 2 + - uid: 16502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-45.5 + parent: 2 + - uid: 16503 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-45.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-45.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + pos: -14.5,-31.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 16515 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 16523 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - uid: 16525 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 16528 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 16529 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 16532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,12.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - uid: 16534 + components: + - type: Transform + pos: -33.5,12.5 + parent: 2 + - uid: 16535 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 16536 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 16537 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 16538 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 16539 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 16540 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - uid: 16542 + components: + - type: Transform + pos: -15.5,-89.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + pos: -33.5,-66.5 + parent: 2 + - uid: 16544 + components: + - type: Transform + pos: -39.5,-80.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 16547 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,16.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - uid: 16551 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 16552 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 16556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-17.5 + parent: 2 + - uid: 16557 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 16561 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 16564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 16566 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-2.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - uid: 16571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 16572 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 16573 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 16574 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 16575 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 16578 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 16579 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 16580 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 16581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,21.5 + parent: 2 + - uid: 16582 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 16584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,17.5 + parent: 2 + - uid: 16585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - uid: 16586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 2 + - uid: 16587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,17.5 + parent: 2 + - uid: 16588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,16.5 + parent: 2 + - uid: 16589 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 16590 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - uid: 16592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,17.5 + parent: 2 + - uid: 16593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - uid: 16594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,11.5 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 16598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 16600 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 16601 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 16602 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 16603 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 16604 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 16619 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 2 + - uid: 16624 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - uid: 16627 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - uid: 16628 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,28.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,28.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,24.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,25.5 + parent: 2 + - uid: 16639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - uid: 16640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,27.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,26.5 + parent: 2 + - uid: 16642 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 16645 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 16646 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 16648 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 16649 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 16650 + components: + - type: Transform + pos: 11.5,27.5 + parent: 2 + - uid: 16651 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 16652 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 16653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 2 + - uid: 16654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,14.5 + parent: 2 + - uid: 16655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 2 + - uid: 16656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,14.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,14.5 + parent: 2 + - uid: 16658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,14.5 + parent: 2 + - uid: 16659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 2 + - uid: 16660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,14.5 + parent: 2 + - uid: 16661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,14.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - uid: 16664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,9.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,7.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,10.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,4.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,3.5 + parent: 2 + - uid: 16671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,8.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,6.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,13.5 + parent: 2 + - uid: 16674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,12.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,5.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 16680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,12.5 + parent: 2 + - uid: 16681 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 16684 + components: + - type: Transform + pos: -25.5,37.5 + parent: 2 + - uid: 16685 + components: + - type: Transform + pos: -25.5,36.5 + parent: 2 + - uid: 16686 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,24.5 + parent: 2 + - uid: 16691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,27.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - uid: 16693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,24.5 + parent: 2 + - uid: 16694 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 16695 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + pos: -21.5,29.5 + parent: 2 + - uid: 16697 + components: + - type: Transform + pos: -21.5,30.5 + parent: 2 + - uid: 16698 + components: + - type: Transform + pos: -21.5,31.5 + parent: 2 + - uid: 16699 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - uid: 16700 + components: + - type: Transform + pos: -13.5,36.5 + parent: 2 + - uid: 16701 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: -12.5,37.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 + - uid: 16704 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 16708 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 16709 + components: + - type: Transform + pos: -25.5,32.5 + parent: 2 + - uid: 16710 + components: + - type: Transform + pos: -25.5,33.5 + parent: 2 + - uid: 16711 + components: + - type: Transform + pos: -28.5,40.5 + parent: 2 + - uid: 16712 + components: + - type: Transform + pos: -28.5,39.5 + parent: 2 + - uid: 16713 + components: + - type: Transform + pos: -28.5,38.5 + parent: 2 + - uid: 16714 + components: + - type: Transform + pos: -28.5,37.5 + parent: 2 + - uid: 16715 + components: + - type: Transform + pos: -28.5,36.5 + parent: 2 + - uid: 16716 + components: + - type: Transform + pos: -27.5,36.5 + parent: 2 + - uid: 16717 + components: + - type: Transform + pos: -26.5,36.5 + parent: 2 + - uid: 16718 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 16719 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 + - uid: 16720 + components: + - type: Transform + pos: -27.5,33.5 + parent: 2 + - uid: 16721 + components: + - type: Transform + pos: -28.5,33.5 + parent: 2 + - uid: 16722 + components: + - type: Transform + pos: -29.5,33.5 + parent: 2 + - uid: 16723 + components: + - type: Transform + pos: -30.5,33.5 + parent: 2 + - uid: 16724 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 16725 + components: + - type: Transform + pos: -25.5,35.5 + parent: 2 + - uid: 16726 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - uid: 16727 + components: + - type: Transform + pos: -35.5,24.5 + parent: 2 + - uid: 16728 + components: + - type: Transform + pos: -37.5,33.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,25.5 + parent: 2 + - uid: 16730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,24.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + pos: -31.5,39.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + pos: -30.5,39.5 + parent: 2 + - uid: 16733 + components: + - type: Transform + pos: -37.5,30.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + pos: -38.5,24.5 + parent: 2 + - uid: 16735 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 16736 + components: + - type: Transform + pos: -37.5,34.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 16739 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 16740 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + pos: -39.5,30.5 + parent: 2 + - uid: 16742 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,23.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,23.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,23.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,23.5 + parent: 2 + - uid: 16752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,23.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,24.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - uid: 16755 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: -51.5,25.5 + parent: 2 + - uid: 16757 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 16758 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 + - uid: 16759 + components: + - type: Transform + pos: -43.5,35.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 16762 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 16763 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 16765 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + pos: -45.5,35.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,12.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,11.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,10.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,22.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 2 + - uid: 16775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,18.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,13.5 + parent: 2 + - uid: 16777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,8.5 + parent: 2 + - uid: 16778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 2 + - uid: 16779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,14.5 + parent: 2 + - uid: 16780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,21.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,18.5 + parent: 2 + - uid: 16782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,20.5 + parent: 2 + - uid: 16783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,19.5 + parent: 2 + - uid: 16784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,14.5 + parent: 2 + - uid: 16785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,23.5 + parent: 2 + - uid: 16786 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 16787 + components: + - type: Transform + pos: -34.5,38.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 16789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,27.5 + parent: 2 + - uid: 16790 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 16791 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 16792 + components: + - type: Transform + pos: -30.5,38.5 + parent: 2 + - uid: 16793 + components: + - type: Transform + pos: -35.5,39.5 + parent: 2 + - uid: 16794 + components: + - type: Transform + pos: -34.5,39.5 + parent: 2 + - uid: 16795 + components: + - type: Transform + pos: -33.5,39.5 + parent: 2 + - uid: 16796 + components: + - type: Transform + pos: -32.5,39.5 + parent: 2 + - uid: 16797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,34.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,35.5 + parent: 2 + - uid: 16799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,36.5 + parent: 2 + - uid: 16800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,37.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 16802 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 16803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,37.5 + parent: 2 + - uid: 16804 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 16805 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 16806 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 16807 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 16808 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 16809 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 16810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 2 + - uid: 16811 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 16812 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 16813 + components: + - type: Transform + pos: -39.5,23.5 + parent: 2 + - uid: 16814 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 16815 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 16816 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 16817 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 16818 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 2 + - uid: 16819 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 16820 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 16821 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 16822 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 16823 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 16824 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 16825 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 16826 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 16828 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 16829 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 2 + - uid: 16832 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 2 + - uid: 16834 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 16835 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 16836 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 16838 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 16839 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 16840 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 16841 + components: + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - uid: 16842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 2 +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 16843 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 +- proto: WardrobeFormal + entities: + - uid: 16844 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 +- proto: WardrobePrisonFilled + entities: + - uid: 16845 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 16847 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 16848 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 +- proto: WardrobeSalvageFilled + entities: + - uid: 16849 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 16850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 2 +- proto: WarningCO2 + entities: + - uid: 16851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-46.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 16852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-42.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 16853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-44.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 16854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-48.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 16855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 2 + - uid: 16856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-40.5 + parent: 2 +- proto: WarpPoint + entities: + - uid: 16857 + components: + - type: MetaData + name: pa room + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - type: WarpPoint + location: pa room + - uid: 16858 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - type: WarpPoint + location: epistemics + - uid: 16859 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - type: WarpPoint + location: ame room + - uid: 16860 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - type: WarpPoint + location: arrivals + - uid: 16861 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - type: WarpPoint + location: command + - uid: 16862 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - type: WarpPoint + location: primary evac + - uid: 16863 + components: + - type: Transform + pos: -42.5,67.5 + parent: 2 + - uid: 16864 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - type: WarpPoint + location: east solar panel + - uid: 16865 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - type: WarpPoint + location: dojo + - uid: 16866 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 + - type: WarpPoint + location: eva room + - uid: 16867 + components: + - type: Transform + pos: -15.5,-76.5 + parent: 2 + - type: WarpPoint + location: ai upload +- proto: WarpPointBombing + entities: + - uid: 16868 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - type: WarpPoint + location: kitchen/hydro + - uid: 16869 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - type: WarpPoint + location: center park + - uid: 16870 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - type: WarpPoint + location: logistics + - uid: 16871 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - type: WarpPoint + location: security + - uid: 16872 + components: + - type: Transform + pos: -23.5,41.5 + parent: 2 + - type: WarpPoint + location: courtroom + - uid: 16873 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - type: WarpPoint + location: dormitories + - uid: 16874 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - type: WarpPoint + location: medical + - uid: 16875 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - type: WarpPoint + location: vault + - uid: 16876 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - type: WarpPoint + location: bar + - uid: 16877 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - type: WarpPoint + location: extended confinement + - uid: 16878 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - type: WarpPoint + location: engineering +- proto: WashingMachineFilledClothes + entities: + - uid: 16879 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 11988 + components: + - type: Transform + pos: -19.5,37.5 + parent: 2 + - uid: 16880 + components: + - type: Transform + pos: -39.5,31.5 + parent: 2 + - uid: 16881 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 +- proto: WaterTank + entities: + - uid: 16882 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 16883 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 16885 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 16886 + components: + - type: Transform + pos: -40.5,47.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 16887 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 16888 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 16889 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - type: AtmosDevice + joinedGrid: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 16890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 16892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,0.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 +- proto: WeaponCapacitorRechargerCircuitboard + entities: + - uid: 16894 + components: + - type: Transform + pos: 8.398281,-31.671444 + parent: 2 +- proto: WeaponLauncherRocket + entities: + - uid: 16895 + components: + - type: Transform + pos: -41.49494,1.6153598 + parent: 2 +- proto: WeaponShotgunHandmade + entities: + - uid: 16897 + components: + - type: Transform + pos: 58.21016,9.5359 + parent: 2 +- proto: WeaponShotgunKammererNonLethal + entities: + - uid: 16898 + components: + - type: Transform + pos: -26.271503,-15.564819 + parent: 2 + - uid: 16899 + components: + - type: Transform + pos: -26.388712,-15.330445 + parent: 2 +- proto: WeaponSniperCeremonial + entities: + - uid: 16900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.651196,20.645538 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 16901 + components: + - type: Transform + pos: -4.5,-73.5 + parent: 2 + - uid: 16902 + components: + - type: Transform + pos: -10.5,-79.5 + parent: 2 + - uid: 16903 + components: + - type: Transform + pos: -10.5,-73.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + pos: -14.5,-74.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: -10.5,-76.5 + parent: 2 + - uid: 16906 + components: + - type: Transform + pos: -4.5,-79.5 + parent: 2 + - uid: 16907 + components: + - type: Transform + pos: -17.5,-74.5 + parent: 2 +- proto: WeaponWaterPistol + entities: + - uid: 16908 + components: + - type: Transform + pos: -20.31781,9.430968 + parent: 2 +- proto: WelderIndustrial + entities: + - uid: 16909 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 +- proto: WelderMini + entities: + - uid: 16910 + components: + - type: Transform + pos: 2.4258919,-9.600988 + parent: 2 +- proto: WeldingFuelTank + entities: + - uid: 16911 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 16912 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 16915 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 16916 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 16917 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 16918 + components: + - type: Transform + pos: 4.5,29.5 + parent: 2 + - uid: 16919 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 +- proto: WetFloorSign + entities: + - uid: 16920 + components: + - type: Transform + pos: -21.720625,13.343189 + parent: 2 + - uid: 16921 + components: + - type: Transform + pos: -1.5648136,12.694733 + parent: 2 + - uid: 16922 + components: + - type: Transform + pos: -1.2002304,12.663462 + parent: 2 + - uid: 16923 + components: + - type: Transform + pos: 22.190928,-14.054367 + parent: 2 +- proto: WheatSeeds + entities: + - uid: 16924 + components: + - type: Transform + pos: 32.33082,-12.661961 + parent: 2 +- proto: WindoorBarLocked + entities: + - uid: 16925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 16926 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 16927 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 16928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,5.5 + parent: 2 + - uid: 16929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,10.5 + parent: 2 + - uid: 16930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 + - uid: 16931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,5.5 + parent: 2 +- proto: WindoorKitchenLocked + entities: + - uid: 16933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 2 + - uid: 16934 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 +- proto: WindoorMailLocked + entities: + - uid: 16935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 16936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-2.5 + parent: 2 + - uid: 16937 + components: + - type: Transform + pos: -23.5,40.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 16938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 2 + - uid: 16939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-7.5 + parent: 2 + - uid: 16940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,0.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 16943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-28.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 16944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - uid: 16945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - uid: 16946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 2 + - uid: 16948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,9.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 16950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 16951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-84.5 + parent: 2 + - uid: 16952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-75.5 + parent: 2 + - uid: 16953 + components: + - type: Transform + pos: -7.5,-77.5 + parent: 2 + - uid: 16954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-84.5 + parent: 2 + - uid: 16955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-66.5 + parent: 2 + - uid: 16956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-68.5 + parent: 2 + - uid: 16957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-66.5 + parent: 2 + - uid: 16958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-67.5 + parent: 2 + - uid: 16959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,32.5 + parent: 2 + - uid: 16960 + components: + - type: Transform + pos: -6.5,-79.5 + parent: 2 + - uid: 16961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-73.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 16962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 16963 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 +- proto: WindoorSecureMailLocked + entities: + - uid: 16964 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 16965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - uid: 16967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 16968 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 16969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,28.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,28.5 + parent: 2 + - uid: 16971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,27.5 + parent: 2 + - uid: 16972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,29.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 6241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-10.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-10.5 + parent: 2 + - uid: 16941 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 16942 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 16974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 16978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 2 +- proto: Window + entities: + - uid: 12109 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 16981 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 16983 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - uid: 16984 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 16985 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 16986 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 16987 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 16989 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 16991 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 16996 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 16997 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 16998 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 17001 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 17002 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 17003 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 17004 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 17005 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 17006 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 17007 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: -30.5,4.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 17014 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 17015 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 17018 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 17019 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 17022 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 17023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 17025 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 17026 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 17028 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 17030 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 17031 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 17033 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 17034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - uid: 17035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 17036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 + - uid: 17037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 17038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,2.5 + parent: 2 + - uid: 17039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 17040 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 17041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 2 + - uid: 17042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 17048 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 + - uid: 17060 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + pos: -25.5,29.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: -25.5,28.5 + parent: 2 + - uid: 17072 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 17073 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 17074 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 17075 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 17077 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 17080 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 17081 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 17089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,11.5 + parent: 2 + - uid: 17090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 17093 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 17097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-10.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-10.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-87.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-87.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-87.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 17108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-68.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,7.5 + parent: 2 + - uid: 17111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,7.5 + parent: 2 + - uid: 17112 + components: + - type: Transform + pos: -9.5,-66.5 + parent: 2 + - uid: 17113 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 2 + - uid: 17114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-67.5 + parent: 2 + - uid: 17115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-67.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 2 + - uid: 17117 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + pos: -12.5,-66.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + pos: -29.5,-68.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + pos: -28.5,-68.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + pos: -14.5,-66.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + pos: -13.5,-66.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-84.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-68.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-64.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-67.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-63.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-63.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-64.5 + parent: 2 + - uid: 17131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-87.5 + parent: 2 + - uid: 17132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-87.5 + parent: 2 + - uid: 17133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-85.5 + parent: 2 + - uid: 17134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-85.5 + parent: 2 + - uid: 17135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-87.5 + parent: 2 + - uid: 17136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-88.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-87.5 + parent: 2 + - uid: 17138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-86.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-72.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-87.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-87.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-87.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-69.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + pos: -14.5,-65.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + pos: -11.5,-65.5 + parent: 2 + - uid: 17148 + components: + - type: Transform + pos: -10.5,-65.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-66.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: -7.5,-66.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + pos: -6.5,-66.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + pos: -3.5,-66.5 + parent: 2 + - uid: 17156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-67.5 + parent: 2 + - uid: 17157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-68.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + pos: -2.5,-67.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-67.5 + parent: 2 + - uid: 17163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-68.5 + parent: 2 + - uid: 17164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-69.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-70.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-71.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-72.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-73.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-74.5 + parent: 2 + - uid: 17170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-75.5 + parent: 2 + - uid: 17171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-76.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-77.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-78.5 + parent: 2 + - uid: 17174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-79.5 + parent: 2 + - uid: 17175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-80.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-81.5 + parent: 2 + - uid: 17177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-82.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-83.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-84.5 + parent: 2 + - uid: 17180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-85.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-86.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -34.5,-68.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-69.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-70.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-71.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-72.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-73.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-74.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-75.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-76.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-77.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-78.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-79.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-80.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-81.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-82.5 + parent: 2 + - uid: 17197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-83.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + pos: -27.5,-68.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-84.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-85.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-86.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + pos: -33.5,-68.5 + parent: 2 + - uid: 17203 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 17208 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 17210 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + pos: -7.5,-67.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + pos: -6.5,-67.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + pos: -3.5,-68.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-84.5 + parent: 2 + - uid: 17218 + components: + - type: Transform + pos: -2.5,-68.5 + parent: 2 + - uid: 17219 + components: + - type: Transform + pos: -1.5,-68.5 + parent: 2 + - uid: 17220 + components: + - type: Transform + pos: -0.5,-68.5 + parent: 2 + - uid: 17221 + components: + - type: Transform + pos: 0.5,-68.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-84.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-84.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-84.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-84.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-85.5 + parent: 2 + - uid: 17227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-85.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-85.5 + parent: 2 + - uid: 17229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-85.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-85.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-85.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-85.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + pos: -1.5,-67.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + pos: -0.5,-67.5 + parent: 2 + - uid: 17235 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 2 + - uid: 17236 + components: + - type: Transform + pos: 1.5,-67.5 + parent: 2 + - uid: 17237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-70.5 + parent: 2 + - uid: 17238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-71.5 + parent: 2 + - uid: 17239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-72.5 + parent: 2 + - uid: 17240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-73.5 + parent: 2 + - uid: 17241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-79.5 + parent: 2 + - uid: 17242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-84.5 + parent: 2 + - uid: 17243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-84.5 + parent: 2 + - uid: 17244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-84.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-84.5 + parent: 2 + - uid: 17246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-84.5 + parent: 2 + - uid: 17247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-84.5 + parent: 2 + - uid: 17248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-84.5 + parent: 2 + - uid: 17249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-84.5 + parent: 2 + - uid: 17250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-84.5 + parent: 2 + - uid: 17251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-84.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-84.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-84.5 + parent: 2 + - uid: 17254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-84.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-68.5 + parent: 2 + - uid: 17256 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 2 + - uid: 17257 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 17258 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 17261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 17264 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 2 + - uid: 17265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - uid: 17266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2 + - uid: 17267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,45.5 + parent: 2 + - uid: 17268 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 17271 + components: + - type: Transform + pos: -11.5,46.5 + parent: 2 + - uid: 17272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,45.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + pos: -27.5,40.5 + parent: 2 + - uid: 17274 + components: + - type: Transform + pos: -26.5,40.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + pos: -25.5,40.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + pos: -24.5,40.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 + - uid: 17280 + components: + - type: Transform + pos: -19.5,40.5 + parent: 2 + - uid: 17281 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + pos: -24.5,46.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + pos: -25.5,46.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,45.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,45.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + pos: -27.5,45.5 + parent: 2 + - uid: 17289 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + pos: -28.5,44.5 + parent: 2 + - uid: 17291 + components: + - type: Transform + pos: -18.5,44.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + pos: -26.5,46.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-28.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,11.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,12.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,14.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,15.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,15.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,14.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,12.5 + parent: 2 + - uid: 17304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,11.5 + parent: 2 + - uid: 17305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,17.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,18.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,20.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,21.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,21.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,20.5 + parent: 2 + - uid: 17311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,18.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,17.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-80.5 + parent: 2 + - uid: 17314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-74.5 + parent: 2 + - uid: 17315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-75.5 + parent: 2 + - uid: 17316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-76.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-77.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-78.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-79.5 + parent: 2 + - uid: 17320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-84.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-79.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-81.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-82.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-83.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-84.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-85.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-85.5 + parent: 2 + - uid: 17328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-85.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-85.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 17331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-86.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-86.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-86.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-86.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-86.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-86.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-86.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-86.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + pos: -10.5,37.5 + parent: 2 + - uid: 17345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-87.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-88.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-88.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-88.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-88.5 + parent: 2 + - uid: 17350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-88.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-88.5 + parent: 2 + - uid: 17352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-88.5 + parent: 2 + - uid: 17353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-88.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-88.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + pos: -11.5,37.5 + parent: 2 + - uid: 17356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-88.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,7.5 + parent: 2 + - uid: 17358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-88.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-85.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-85.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-85.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-85.5 + parent: 2 + - uid: 17363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-85.5 + parent: 2 + - uid: 17364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-85.5 + parent: 2 + - uid: 17365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-85.5 + parent: 2 + - uid: 17366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-85.5 + parent: 2 + - uid: 17367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-85.5 + parent: 2 + - uid: 17368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-85.5 + parent: 2 + - uid: 17369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-85.5 + parent: 2 + - uid: 17370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-85.5 + parent: 2 + - uid: 17371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-85.5 + parent: 2 + - uid: 17372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-85.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-85.5 + parent: 2 + - uid: 17374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-83.5 + parent: 2 + - uid: 17375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-82.5 + parent: 2 + - uid: 17376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-81.5 + parent: 2 + - uid: 17377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-80.5 + parent: 2 + - uid: 17378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-79.5 + parent: 2 + - uid: 17379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-79.5 + parent: 2 + - uid: 17380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-79.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-78.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-77.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-76.5 + parent: 2 + - uid: 17384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-75.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-74.5 + parent: 2 + - uid: 17386 + components: + - type: Transform + pos: -37.5,-73.5 + parent: 2 + - uid: 17387 + components: + - type: Transform + pos: -36.5,-73.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-73.5 + parent: 2 + - uid: 17389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-71.5 + parent: 2 + - uid: 17390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-70.5 + parent: 2 + - uid: 17391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-69.5 + parent: 2 + - uid: 17392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-68.5 + parent: 2 + - uid: 17393 + components: + - type: Transform + pos: -35.5,-67.5 + parent: 2 + - uid: 17394 + components: + - type: Transform + pos: -34.5,-67.5 + parent: 2 + - uid: 17395 + components: + - type: Transform + pos: -33.5,-67.5 + parent: 2 + - uid: 17396 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + pos: -31.5,-67.5 + parent: 2 + - uid: 17398 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + pos: -29.5,-67.5 + parent: 2 + - uid: 17400 + components: + - type: Transform + pos: -28.5,-67.5 + parent: 2 + - uid: 17401 + components: + - type: Transform + pos: -27.5,-67.5 + parent: 2 + - uid: 17402 + components: + - type: Transform + pos: -26.5,-67.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + pos: -24.5,-67.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + pos: -23.5,-67.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + pos: -22.5,-67.5 + parent: 2 + - uid: 17407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-67.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-66.5 + parent: 2 + - uid: 17409 + components: + - type: Transform + pos: -21.5,-65.5 + parent: 2 + - uid: 17410 + components: + - type: Transform + pos: -20.5,-65.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + pos: -19.5,-65.5 + parent: 2 + - uid: 17412 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 2 + - uid: 17413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-86.5 + parent: 2 + - uid: 17414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-85.5 + parent: 2 + - uid: 17415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-85.5 + parent: 2 + - uid: 17416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-86.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 17417 + components: + - type: Transform + pos: -47.23643,-18.134506 + parent: 2 +- proto: WoodDoor + entities: + - uid: 17418 + components: + - type: Transform + pos: -46.5,24.5 + parent: 2 +- proto: Wrench + entities: + - uid: 17419 + components: + - type: Transform + pos: 19.52687,21.19062 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: -21.54481,13.343189 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: -40.489174,40.55304 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: -11.125876,-24.417439 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: 4.4012365,-10.410826 + parent: 2 +... From 2d1b16f47f63e9a6df8507f837aab9b2baf6b5a3 Mon Sep 17 00:00:00 2001 From: whateverusername0 Date: Sat, 22 Jun 2024 18:04:12 +1000 Subject: [PATCH 16/38] port from https://github.com/Goob-Station/Goob-Station/pull/344 --- .../Supermatter/Systems/SupermatterSystem.cs | 746 ++++++++++-------- .../Components/SupermatterComponent.cs | 162 ++-- .../Systems/SharedSupermatterSystem.cs | 7 + Resources/Audio/Supermatter/dust.ogg | Bin 18591 -> 0 bytes .../en-US/objectives/conditions/steal.ftl | 3 + .../Locale/en-US/supermatter/supermatter.ftl | 33 +- .../Objects/Misc/supermatter_sliver.yml | 25 + .../Generation}/Supermatter/supermatter.yml | 10 +- .../Prototypes/Guidebook/engineering.yml | 6 + .../Prototypes/Objectives/objectiveGroups.yml | 1 + Resources/Prototypes/Objectives/traitor.yml | 12 + .../Guidebook/Engineering/Supermatter.xml | 65 ++ .../Supermatter/supermatter.rsi/meta.json | 13 +- .../supermatter.rsi/supermatter.png | Bin 2702 -> 28899 bytes .../supermatter_sliver.rsi/icon.png | Bin 0 -> 357 bytes .../supermatter_sliver.rsi/meta.json | 14 + 16 files changed, 705 insertions(+), 392 deletions(-) delete mode 100644 Resources/Audio/Supermatter/dust.ogg create mode 100644 Resources/Prototypes/Entities/Objects/Misc/supermatter_sliver.yml rename Resources/Prototypes/Entities/{ => Structures/Power/Generation}/Supermatter/supermatter.yml (90%) create mode 100644 Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml create mode 100644 Resources/Textures/Supermatter/supermatter_sliver.rsi/icon.png create mode 100644 Resources/Textures/Supermatter/supermatter_sliver.rsi/meta.json diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 246a6777b20..508c90b521a 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -1,10 +1,7 @@ -using System.Linq; using JetBrains.Annotations; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; -using Robust.Shared.GameStates; using Robust.Shared.Physics; -using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; using Robust.Shared.Timing; using Robust.Server.GameObjects; @@ -18,9 +15,18 @@ using Content.Server.Atmos.EntitySystems; using Content.Server.Chat.Systems; using Content.Server.Explosion.EntitySystems; -using Content.Server.Explosion.Components; using Content.Shared.Supermatter.Components; using Content.Shared.Supermatter.Systems; +using Content.Server.Lightning; +using Content.Server.AlertLevel; +using Content.Server.Station.Systems; +using System.Text; +using Content.Server.Kitchen.Components; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Server.DoAfter; +using Content.Server.Popups; +using System.Linq; namespace Content.Server.Supermatter.Systems { @@ -36,480 +42,592 @@ public sealed class SupermatterSystem : SharedSupermatterSystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; [Dependency] private readonly AmbientSoundSystem _ambient = default!; - public new DelamType DelamType; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly LightningSystem _lightning = default!; + [Dependency] private readonly AlertLevelSystem _alert = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly PopupSystem _popup = default!; + + private DelamType _delamType = DelamType.Explosion; + public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnComponentRemove); + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnCollideEvent); SubscribeLocalEvent(OnHandInteract); - SubscribeLocalEvent(OnMapInit); - SubscribeLocalEvent(OnComponentRemove); + SubscribeLocalEvent(OnItemInteract); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnGetSliver); } - private void OnComponentRemove(EntityUid uid, SupermatterComponent component, ComponentRemove args) + public override void Update(float frameTime) { - // turn off any ambient if component is removed (ex. entity deleted) - _ambient.SetAmbience(uid, false); - component.AudioStream = _audio.Stop(component.AudioStream); - } + base.Update(frameTime); + if (!_gameTiming.IsFirstTimePredicted) + return; - private void OnMapInit(EntityUid uid, SupermatterComponent component, MapInitEvent args) - { - // Set the Sound - _ambient.SetAmbience(uid, true); + foreach (var sm in EntityManager.EntityQuery()) + { + if (!sm.Activated) + return; - //Add Air to the initialized SM in the Map so it doesnt delam on default - var mixture = _atmosphere.GetContainingMixture(uid, true, true); - mixture?.AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); - mixture?.AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); + var uid = sm.Owner; + sm.UpdateAccumulator += frameTime; + + if (sm.UpdateAccumulator >= sm.UpdateTimer) + { + sm.UpdateAccumulator -= sm.UpdateTimer; + Cycle(uid, sm); + } + } } - public override void Update(float frameTime) + public void Cycle(EntityUid uid, SupermatterComponent sm) { - base.Update(frameTime); + sm.ZapAccumulator++; + sm.YellAccumulator++; - if (!_gameTiming.IsFirstTimePredicted) - return; + ProcessAtmos(uid, sm); + HandleDamage(uid, sm); + + if (sm.Damage >= sm.DelaminationPoint || sm.Delamming) + HandleDelamination(uid, sm); + + HandleSoundLoop(uid, sm); + + if (sm.ZapAccumulator >= sm.ZapTimer) + { + sm.ZapAccumulator -= sm.ZapTimer; + SupermatterZap(uid, sm); + } - foreach (var (supermatter, xplode, rads) in EntityManager - .EntityQuery()) + if (sm.YellAccumulator >= sm.YellTimer) { - var mixture = _atmosphere.GetContainingMixture(supermatter.Owner, true, true); - HandleOutput(supermatter.Owner, frameTime, supermatter, rads, mixture); - HandleDamage(supermatter.Owner, frameTime, supermatter, xplode, mixture); + sm.YellAccumulator -= sm.YellTimer; + HandleAnnouncements(uid, sm); } } + #region Processing + /// - /// Handle outputting based off enery, damage, gas mix and radiation + /// Handle power and radiation output depending on atmospheric things. /// - private void HandleOutput( - EntityUid uid, - float frameTime, - SupermatterComponent sMcomponent, - RadiationSourceComponent radcomponent, - Atmos.GasMixture? mixture = null) + private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) { - sMcomponent.AtmosUpdateAccumulator += frameTime; + var mix = _atmosphere.GetContainingMixture(uid, true, true); - if (!(sMcomponent.AtmosUpdateAccumulator > sMcomponent.AtmosUpdateTimer) || - mixture is not { }) + if (mix is not { }) return; - sMcomponent.AtmosUpdateAccumulator -= sMcomponent.AtmosUpdateTimer; + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; - //Absorbed gas from surrounding area - var absorbedGas = mixture.Remove(sMcomponent.GasEfficiency * mixture.TotalMoles); - var absorbedTotalMoles = absorbedGas.TotalMoles; - - if (!(absorbedTotalMoles > 0f)) + if (!(moles > 0f)) return; - var gasStorage = sMcomponent.GasStorage; - var gasEffect = sMcomponent.GasDataFields; + var gases = sm.GasStorage; + var facts = sm.GasDataFields; //Lets get the proportions of the gasses in the mix for scaling stuff later //They range between 0 and 1 - gasStorage = gasStorage.ToDictionary( + gases = gases.ToDictionary( gas => gas.Key, - gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / absorbedTotalMoles, 0, 1) + gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / moles, 0, 1) ); - //No less then zero, and no greater then one, we use this to do explosions - //and heat to power transfer - var gasmixPowerRatio = gasStorage.Sum(gas => gasStorage[gas.Key] * gasEffect[gas.Key].PowerMixRatio); + //No less then zero, and no greater then one, we use this to do explosions and heat to power transfer. + var powerRatio = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].PowerMixRatio); - //Minimum value of -10, maximum value of 23. Affects plasma and o2 output - //and the output heat - var dynamicHeatModifier = gasStorage.Sum(gas => gasStorage[gas.Key] * gasEffect[gas.Key].HeatPenalty); + // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. + var heatModifier = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].HeatPenalty); - //Minimum value of -10, maximum value of 23. Effects plasma and o2 output - // and the output heat - var powerTransmissionBonus = - gasStorage.Sum(gas => gasStorage[gas.Key] * gasEffect[gas.Key].TransmitModifier); + // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. + var transmissionBonus = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].TransmitModifier); - var h2OBonus = 1 - gasStorage[Gas.WaterVapor] * 0.25f; + var h2OBonus = 1 - gases[Gas.WaterVapor] * 0.25f; - gasmixPowerRatio = Math.Clamp(gasmixPowerRatio, 0, 1); - dynamicHeatModifier = Math.Max(dynamicHeatModifier, 0.5f); - powerTransmissionBonus *= h2OBonus; + powerRatio = Math.Clamp(powerRatio, 0, 1); + heatModifier = Math.Max(heatModifier, 0.5f); + transmissionBonus *= h2OBonus; - //Effects the damage heat does to the crystal - sMcomponent.DynamicHeatResistance = 1f; + // Effects the damage heat does to the crystal + sm.DynamicHeatResistance = 1f; - //more moles of gases are harder to heat than fewer, - //so let's scale heat damage around them - sMcomponent.MoleHeatPenaltyThreshold = - (float) Math.Max(absorbedTotalMoles * sMcomponent.MoleHeatPenalty, 0.25); + // more moles of gases are harder to heat than fewer, + // so let's scale heat damage around them + sm.MoleHeatPenaltyThreshold = (float) Math.Max(moles * sm.MoleHeatPenalty, 0.25); - //Ramps up or down in increments of 0.02 up to the proportion of co2 - //Given infinite time, powerloss_dynamic_scaling = co2comp - //Some value between 0 and 1 - if (absorbedTotalMoles > sMcomponent.PowerlossInhibitionMoleThreshold && - gasStorage[Gas.CarbonDioxide] > sMcomponent.PowerlossInhibitionGasThreshold) + // Ramps up or down in increments of 0.02 up to the proportion of co2 + // Given infinite time, powerloss_dynamic_scaling = co2comp + // Some value between 0 and 1 + if (moles > sm.PowerlossInhibitionMoleThreshold && gases[Gas.CarbonDioxide] > sm.PowerlossInhibitionGasThreshold) { - sMcomponent.PowerlossDynamicScaling = - Math.Clamp( - sMcomponent.PowerlossDynamicScaling + Math.Clamp( - gasStorage[Gas.CarbonDioxide] - sMcomponent.PowerlossDynamicScaling, -0.02f, 0.02f), 0f, - 1f); + var co2powerloss = Math.Clamp(gases[Gas.CarbonDioxide] - sm.PowerlossDynamicScaling, -0.02f, 0.02f); + sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling + co2powerloss, 0f, 1f); } else { - sMcomponent.PowerlossDynamicScaling = Math.Clamp(sMcomponent.PowerlossDynamicScaling - 0.05f, 0f, 1f); + sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling - 0.05f, 0f, 1f); } - //Ranges from 0 to 1(1-(value between 0 and 1 * ranges from 1 to 1.5(mol / 500))) - //We take the mol count, and scale it to be our inhibitor + // Ranges from 0 to 1(1-(value between 0 and 1 * ranges from 1 to 1.5(mol / 500))) + // We take the mol count, and scale it to be our inhibitor var powerlossInhibitor = Math.Clamp( - 1 - sMcomponent.PowerlossDynamicScaling * - Math.Clamp(absorbedTotalMoles / sMcomponent.PowerlossInhibitionMoleBoostThreshold, 1f, 1.5f), + 1 - sm.PowerlossDynamicScaling * + Math.Clamp(moles / sm.PowerlossInhibitionMoleBoostThreshold, 1f, 1.5f), 0f, 1f); - if (sMcomponent.MatterPower != 0) //We base our removed power off one 10th of the matter_power. + if (sm.MatterPower != 0) //We base our removed power off one 10th of the matter_power. { - var removedMatter = Math.Max(sMcomponent.MatterPower / sMcomponent.MatterPowerConversion, 40); + var removedMatter = Math.Max(sm.MatterPower / sm.MatterPowerConversion, 40); //Adds at least 40 power - sMcomponent.Power = Math.Max(sMcomponent.Power + removedMatter, 0); + sm.Power = Math.Max(sm.Power + removedMatter, 0); //Removes at least 40 matter power - sMcomponent.MatterPower = Math.Max(sMcomponent.MatterPower - removedMatter, 0); + sm.MatterPower = Math.Max(sm.MatterPower - removedMatter, 0); } //based on gas mix, makes the power more based on heat or less effected by heat - var tempFactor = gasmixPowerRatio > 0.8 ? 50f : 30f; + var tempFactor = powerRatio > 0.8 ? 50f : 30f; //if there is more pluox and n2 then anything else, we receive no power increase from heat - sMcomponent.Power = - Math.Max( - absorbedGas.Temperature * tempFactor / Atmospherics.T0C * gasmixPowerRatio + sMcomponent.Power, - 0); + sm.Power = Math.Max(absorbedGas.Temperature * tempFactor / Atmospherics.T0C * powerRatio + sm.Power, 0); - //Rad Pulse Calculation - radcomponent.Intensity = sMcomponent.Power * Math.Max(0, 1f + powerTransmissionBonus / 10f) * 0.003f; + //Radiate stuff + if (TryComp(uid, out var rad)) + rad.Intensity = sm.Power * Math.Max(0, 1f + transmissionBonus / 10f) * 0.003f; //Power * 0.55 * a value between 1 and 0.8 - var energy = sMcomponent.Power * sMcomponent.ReactionPowerModifier; - - //Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock - //is on. An increase of 4*C @ 25% efficiency here results in an increase of 1*C / (#tilesincore) overall. - //Power * 0.55 * (some value between 1.5 and 23) / 5 + var energy = sm.Power * sm.ReactionPowerModifier; - absorbedGas.Temperature += energy * dynamicHeatModifier * sMcomponent.ThermalReleaseModifier; + // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock + // is on. An increase of 4*C @ 25% efficiency here results in an increase of 1*C / (#tilesincore) overall. + // Power * 0.55 * (some value between 1.5 and 23) / 5 + absorbedGas.Temperature += energy * heatModifier * sm.ThermalReleaseModifier; absorbedGas.Temperature = Math.Max(0, - Math.Min(absorbedGas.Temperature, sMcomponent.HeatThreshold * dynamicHeatModifier)); + Math.Min(absorbedGas.Temperature, sm.HeatThreshold * heatModifier)); - //Calculate how much gas to release - //Varies based on power and gas content + // Release the waste + absorbedGas.AdjustMoles(Gas.Plasma, Math.Max(energy * heatModifier * sm.PlasmaReleaseModifier, 0f)); + absorbedGas.AdjustMoles(Gas.Oxygen, Math.Max((energy + absorbedGas.Temperature * heatModifier - Atmospherics.T0C) * sm.OxygenReleaseEfficiencyModifier, 0f)); - absorbedGas.AdjustMoles(Gas.Plasma, - Math.Max(energy * dynamicHeatModifier * sMcomponent.PlasmaReleaseModifier, 0f)); + _atmosphere.Merge(mix, absorbedGas); - absorbedGas.AdjustMoles(Gas.Oxygen, - Math.Max( - (energy + absorbedGas.Temperature * dynamicHeatModifier - Atmospherics.T0C) * - sMcomponent.OxygenReleaseEfficiencyModifier, 0f)); + var powerReduction = (float) Math.Pow(sm.Power / 500, 3); - _atmosphere.Merge(mixture, absorbedGas); - - var powerReduction = (float) Math.Pow(sMcomponent.Power / 500, 3); + // After this point power is lowered + // This wraps around to the begining of the function + sm.Power = Math.Max(sm.Power - Math.Min(powerReduction * powerlossInhibitor, sm.Power * 0.83f * powerlossInhibitor), 0f); + } - //After this point power is lowered - //This wraps around to the begining of the function - sMcomponent.Power = Math.Max( - sMcomponent.Power - Math.Min(powerReduction * powerlossInhibitor, - sMcomponent.Power * 0.83f * powerlossInhibitor), 0f); + /// + /// Shoot lightning bolts depensing on accumulated power. + /// + private void SupermatterZap(EntityUid uid, SupermatterComponent sm) + { + // Divide power by it's threshold to get a value from 0 to 1, then multiply by the amount of possible lightnings + // Makes it pretty obvious that if SM is shooting out red lightnings something is wrong. + // And if it shoots too weak lightnings it means it's underfed :godo: + var zapPower = sm.Power / sm.PowerPenaltyThreshold * sm.LightningPrototypes.Length; + var zapPowerNorm = (int) Math.Clamp(zapPower, 0, sm.LightningPrototypes.Length - 1); + _lightning.ShootRandomLightnings(uid, 3.5f, sm.Power > sm.PowerPenaltyThreshold ? 3 : 1, sm.LightningPrototypes[zapPowerNorm]); } /// - /// Handles environmental damage and dispatching damage warning + /// Handles environmental damage. /// - private void HandleDamage( - EntityUid uid, - float frameTime, - SupermatterComponent? sMcomponent = null, - ExplosiveComponent? xplode = null, - Atmos.GasMixture? mixture = null) + private void HandleDamage(EntityUid uid, SupermatterComponent sm) { - if (!Resolve(uid, ref sMcomponent, ref xplode)) + var xform = Transform(uid); + var indices = _xform.GetGridOrMapTilePosition(uid, xform); + + sm.DamageArchived = sm.Damage; + + var mix = _atmosphere.GetContainingMixture(uid, true, true); + + // We're in space or there is no gas to process + if (!xform.GridUid.HasValue || mix is not { } || mix.TotalMoles == 0f) { + sm.Damage += Math.Max(sm.Power / 1000 * sm.DamageIncreaseMultiplier, 0.1f); return; } - var xform = Transform(uid); - var indices = _xform.GetGridOrMapTilePosition(uid, xform); + // Absorbed gas from surrounding area + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; - sMcomponent.DamageUpdateAccumulator += frameTime; - sMcomponent.YellAccumulator += frameTime; + var totalDamage = 0f; - if (!(sMcomponent.DamageUpdateAccumulator > sMcomponent.DamageUpdateTimer)) - return; + var tempThreshold = Atmospherics.T0C + sm.HeatPenaltyThreshold; + + // Temperature start to have a positive effect on damage after 350 + var tempDamage = Math.Max(Math.Clamp(moles / 200f, .5f, 1f) * absorbedGas.Temperature - tempThreshold * sm.DynamicHeatResistance, 0f) * sm.MoleHeatThreshold / 150f * sm.DamageIncreaseMultiplier; + totalDamage += tempDamage; + + // Power only starts affecting damage when it is above 5000 + var powerDamage = Math.Max(sm.Power - sm.PowerPenaltyThreshold, 0f) / 500f * sm.DamageIncreaseMultiplier; + totalDamage += powerDamage; - sMcomponent.DamageArchived = sMcomponent.Damage; - //we're in space or there is no gas to process - if (!xform.GridUid.HasValue || mixture is not { } || mixture.TotalMoles == 0f) + // Molar count only starts affecting damage when it is above 1800 + var moleDamage = Math.Max(moles - sm.MolePenaltyThreshold, 0) / 80 * sm.DamageIncreaseMultiplier; + totalDamage += moleDamage; + + // Healing damage + if (moles < sm.MolePenaltyThreshold) { - sMcomponent.Damage += Math.Max(sMcomponent.Power / 1000 * sMcomponent.DamageIncreaseMultiplier, 0.1f); + // left there a very small float value so that it doesn't eventually divide by 0. + var healHeatDamage = Math.Min(absorbedGas.Temperature - tempThreshold, 0.001f) / 150; + totalDamage += healHeatDamage; } - else + + // Check for space tiles next to SM + // TODO: change moles out for checking if adjacent tiles exist + var adjacentMixes = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); + foreach (var ind in adjacentMixes) { - //Absorbed gas from surrounding area - var absorbedGas = mixture.Remove(sMcomponent.GasEfficiency * mixture.TotalMoles); - var absorbedTotalMoles = absorbedGas.TotalMoles; - - //Mols start to have a positive effect on damage after 350 - sMcomponent.Damage = (float) Math.Max( - sMcomponent.Damage + - Math.Max( - Math.Clamp(absorbedTotalMoles / 200, 0.5, 1) * absorbedGas.Temperature - - (Atmospherics.T0C + sMcomponent.HeatPenaltyThreshold) * sMcomponent.DynamicHeatResistance, - 0) * sMcomponent.MoleHeatThreshold / 150 * sMcomponent.DamageIncreaseMultiplier, 0); - - //Power only starts affecting damage when it is above 5000 - sMcomponent.Damage = - Math.Max( - sMcomponent.Damage + - Math.Max(sMcomponent.Power - sMcomponent.PowerPenaltyThreshold, 0) / 500 * - sMcomponent.DamageIncreaseMultiplier, 0); - - //Molar count only starts affecting damage when it is above 1800 - sMcomponent.Damage = - Math.Max( - sMcomponent.Damage + Math.Max(absorbedTotalMoles - sMcomponent.MolePenaltyThreshold, 0) / 80 * - sMcomponent.DamageIncreaseMultiplier, 0); - - //There might be a way to integrate healing and hurting via heat - //healing damage - if (absorbedTotalMoles < sMcomponent.MolePenaltyThreshold) - { - //Only has a net positive effect when the temp is below 313.15, heals up to 2 damage. Psycologists increase this temp min by up to 45 - sMcomponent.Damage = - Math.Max( - sMcomponent.Damage + - Math.Min(absorbedGas.Temperature - (Atmospherics.T0C + sMcomponent.HeatPenaltyThreshold), - 0) / 150, 0); - } + if (ind.TotalMoles != 0) + continue; - //if there are space tiles next to SM - //TODO: change moles out for checking if adjacent tiles exist - foreach (var ind in _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices)) + var integrity = GetIntegrity(sm); + + // this is some magic number shit + var factor = integrity switch { - if (ind.TotalMoles != 0) - continue; + < 10 => 0.0005f, + < 25 => 0.0009f, + < 45 => 0.005f, + < 75 => 0.002f, + _ => 0f + }; - var integrity = GetIntegrity(sMcomponent.Damage, sMcomponent.ExplosionPoint); + totalDamage += Math.Clamp(sm.Power * factor * sm.DamageIncreaseMultiplier, 0, sm.MaxSpaceExposureDamage); - var factor = integrity switch - { - < 10 => 0.0005f, - < 25 => 0.0009f, - < 45 => 0.005f, - < 75 => 0.002f, - _ => 0f - }; + break; + } - sMcomponent.Damage += Math.Clamp(sMcomponent.Power * factor * sMcomponent.DamageIncreaseMultiplier, - 0, sMcomponent.MaxSpaceExposureDamage); + sm.Damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DelaminationPoint, totalDamage); + } - break; - } + /// + /// Handles announcements. + /// + private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) + { + var message = string.Empty; + var global = false; - sMcomponent.Damage = - Math.Min(sMcomponent.DamageArchived + sMcomponent.DamageHardcap * sMcomponent.ExplosionPoint, - sMcomponent.Damage); + var integrity = GetIntegrity(sm).ToString("0.00"); + + // Special cases + if (sm.Damage < sm.DelaminationPoint && sm.Delamming) + { + message = Loc.GetString("supermatter-delam-cancel", ("integrity", integrity)); + sm.DelamAnnounced = false; + global = true; } + if (sm.Delamming && !sm.DelamAnnounced) + { + var sb = new StringBuilder(); + var loc = string.Empty; + var alertLevel = "Yellow"; - HandleSoundLoop(uid, sMcomponent); + switch (_delamType) + { + case DelamType.Explosion: + default: + loc = "supermatter-delam-explosion"; + break; + + case DelamType.Singulo: + loc = "supermatter-delam-overmass"; + alertLevel = "Delta"; + break; + + case DelamType.Tesla: + loc = "supermatter-delam-tesla"; + alertLevel = "Delta"; + break; + + case DelamType.Cascade: + loc = "supermatter-delam-cascade"; + alertLevel = "Delta"; + break; + } - if (sMcomponent.Damage > sMcomponent.ExplosionPoint) - { - Delamination(uid, frameTime, sMcomponent, xplode, mixture); + var station = _station.GetOwningStation(uid); + if (station != null) + _alert.SetLevel((EntityUid) station, alertLevel, true, true, true, false); + + sb.AppendLine(Loc.GetString(loc)); + sb.AppendLine(Loc.GetString("supermatter-seconds-before-delam", ("seconds", sm.DelamTimer))); + + message = sb.ToString(); + global = true; + sm.DelamAnnounced = true; + + SupermatterAnnouncement(uid, message, global); return; } - if (sMcomponent.Damage > sMcomponent.WarningPoint) + // We are not taking consistent damage. Engis not needed. + if (sm.Damage <= sm.DamageArchived) + return; + + if (sm.Damage >= sm.WarningPoint) { - var integrity = GetIntegrity(sMcomponent.Damage, sMcomponent.ExplosionPoint); - if (sMcomponent.YellAccumulator >= sMcomponent.YellTimer) + message = Loc.GetString("supermatter-warning", ("integrity", integrity)); + if (sm.Damage >= sm.EmergencyPoint) { - if (sMcomponent.Damage > sMcomponent.EmergencyPoint) - { - _chat.TrySendInGameICMessage(uid, - Loc.GetString("supermatter-danger-message", ("integrity", integrity.ToString("0.00"))), - InGameICChatType.Speak, hideChat: true); - } - else if (sMcomponent.Damage >= sMcomponent.DamageArchived) - { - _chat.TrySendInGameICMessage(uid, - Loc.GetString("supermatter-warning-message", ("integrity", integrity.ToString("0.00"))), - InGameICChatType.Speak, hideChat: true); - } - else - { - _chat.TrySendInGameICMessage(uid, - Loc.GetString("supermatter-safe-alert", ("integrity", integrity.ToString("0.00"))), - InGameICChatType.Speak, hideChat: true); - } - - sMcomponent.YellAccumulator = 0; + message = Loc.GetString("supermatter-emergency", ("integrity", integrity)); + global = true; } } + SupermatterAnnouncement(uid, message, global); + } - sMcomponent.DamageUpdateAccumulator -= sMcomponent.DamageUpdateTimer; + /// + /// Help the SM announce something. + /// + /// If true, does the station announcement. + /// If true, sends the announcement from Central Command. + public void SupermatterAnnouncement(EntityUid uid, string message, bool global = false, string? customSender = null) + { + if (global) + { + var sender = customSender != null ? customSender : Loc.GetString("supermatter-announcer"); + _chat.DispatchStationAnnouncement(uid, message, sender, colorOverride: Color.Yellow); + return; + } + _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Speak, hideChat: false, checkRadioPrefix: true); } - private float GetIntegrity(float damage, float explosionPoint) + /// + /// Returns the integrity rounded to hundreds, e.g. 100.00% + /// + public float GetIntegrity(SupermatterComponent sm) { - var integrity = damage / explosionPoint; + var integrity = sm.Damage / sm.DelaminationPoint; integrity = (float) Math.Round(100 - integrity * 100, 2); integrity = integrity < 0 ? 0 : integrity; return integrity; } /// - /// Runs the logic and timers for Delamination + /// Decide on how to delaminate. /// - private void Delamination( - EntityUid uid, - float frameTime, - SupermatterComponent sMcomponent, - ExplosiveComponent xplode, - Atmos.GasMixture? mixture = null) + public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) { - var xform = Transform(uid); + var mix = _atmosphere.GetContainingMixture(uid, true, true); - //before we actually start counting down, check to see what delam type we're doing. - if (!sMcomponent.FinalCountdown) + if (mix is { }) { - //if we're in atmos - if (mixture is { }) - { - //Absorbed gas from surrounding area - var absorbedGas = mixture.Remove(sMcomponent.GasEfficiency * mixture.TotalMoles); - var absorbedTotalMoles = absorbedGas.TotalMoles; - //if the moles on the sm's tile are above MolePenaltyThreshold - if (absorbedTotalMoles >= sMcomponent.MolePenaltyThreshold) - { - DelamType = DelamType.Singulo; - _chat.TrySendInGameICMessage(uid, Loc.GetString("supermatter-delamination-overmass"), - InGameICChatType.Speak, hideChat: true); - } - } - else - { - DelamType = DelamType.Explosion; - _chat.TrySendInGameICMessage(uid, Loc.GetString("supermatter-delamination-default"), - InGameICChatType.Speak, hideChat: true); - } + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; + + if (moles >= sm.MolePenaltyThreshold) + return DelamType.Singulo; } + if (sm.Power >= sm.PowerPenaltyThreshold) + return DelamType.Tesla; + + // TODO: add resonance cascade when there's crazy conditions or a destabilizing crystal - sMcomponent.FinalCountdown = true; + return DelamType.Explosion; + } + + /// + /// Handle the end of the station. + /// + private void HandleDelamination(EntityUid uid, SupermatterComponent sm) + { + var xform = Transform(uid); - sMcomponent.DelamTimerAccumulator += frameTime; - sMcomponent.SpeakAccumulator += frameTime; - var roundSeconds = sMcomponent.FinalCountdownTime - (int) Math.Floor(sMcomponent.DelamTimerAccumulator); + _delamType = ChooseDelamType(uid, sm); - //we're more than 5 seconds from delam, only yell every 5 seconds. - if (roundSeconds >= sMcomponent.YellDelam && sMcomponent.SpeakAccumulator >= sMcomponent.YellDelam) + if (!sm.Delamming) { - sMcomponent.SpeakAccumulator -= sMcomponent.YellDelam; - _chat.TrySendInGameICMessage(uid, - Loc.GetString("supermatter-seconds-before-delam", ("Seconds", roundSeconds)), - InGameICChatType.Speak, hideChat: true); + sm.Delamming = true; + HandleAnnouncements(uid, sm); } - //less than 5 seconds to delam, count every second. - else if (roundSeconds < sMcomponent.YellDelam && sMcomponent.SpeakAccumulator >= 1) + if (sm.Damage < sm.DelaminationPoint && sm.Delamming) { - sMcomponent.SpeakAccumulator -= 1; - _chat.TrySendInGameICMessage(uid, - Loc.GetString("supermatter-seconds-before-delam", ("Seconds", roundSeconds)), - InGameICChatType.Speak, hideChat: true); + sm.Delamming = false; + HandleAnnouncements(uid, sm); } - //TODO: make tesla(?) spawn at SupermatterComponent.PowerPenaltyThreshold and think up other delam types - //times up, explode or make a singulo - if (!(sMcomponent.DelamTimerAccumulator >= sMcomponent.FinalCountdownTime)) + sm.DelamTimerAccumulator++; + + if (sm.DelamTimerAccumulator < sm.DelamTimer) return; - if (DelamType == DelamType.Singulo) - { - //spawn a singulo :) - EntityManager.SpawnEntity("Singularity", xform.Coordinates); - sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); - } - else + switch (_delamType) { - //explosion!!!!! - _explosion.TriggerExplosive( - uid, - explosive: xplode, - totalIntensity: sMcomponent.TotalIntensity, - radius: sMcomponent.Radius, - user: uid - ); - - sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); - _ambient.SetAmbience(uid, false); - } + case DelamType.Explosion: + default: + _explosion.TriggerExplosive(uid); + break; + + case DelamType.Singulo: + Spawn(sm.SingularityPrototypeId, xform.Coordinates); + break; + + case DelamType.Tesla: + Spawn(sm.TeslaPrototypeId, xform.Coordinates); + break; - sMcomponent.FinalCountdown = false; + case DelamType.Cascade: + Spawn(sm.SupermatterKudzuPrototypeId, xform.Coordinates); + break; + } } - private void HandleSoundLoop(EntityUid uid, SupermatterComponent sMcomponent) + private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) { - var isAggressive = sMcomponent.Damage > sMcomponent.WarningPoint; - var isDelamming = sMcomponent.Damage > sMcomponent.ExplosionPoint; + var isAggressive = sm.Damage > sm.WarningPoint; + var isDelamming = sm.Damage > sm.DelaminationPoint; if (!isAggressive && !isDelamming) { - sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); + sm.AudioStream = _audio.Stop(sm.AudioStream); return; } var smSound = isDelamming ? SuperMatterSound.Delam : SuperMatterSound.Aggressive; - if (sMcomponent.SmSound == smSound) + if (sm.SmSound == smSound) return; - sMcomponent.AudioStream = _audio.Stop(sMcomponent.AudioStream); - sMcomponent.SmSound = smSound; + sm.AudioStream = _audio.Stop(sm.AudioStream); + sm.SmSound = smSound; + } + + #endregion + + #region Event Handlers + + private void OnComponentRemove(EntityUid uid, SupermatterComponent component, ComponentRemove args) + { + // turn off any ambient if component is removed (ex. entity deleted) + _ambient.SetAmbience(uid, false); + component.AudioStream = _audio.Stop(component.AudioStream); + } + + private void OnMapInit(EntityUid uid, SupermatterComponent component, MapInitEvent args) + { + // Set the Sound + _ambient.SetAmbience(uid, true); + + //Add Air to the initialized SM in the Map so it doesnt delam on default + var mix = _atmosphere.GetContainingMixture(uid, true, true); + mix?.AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); + mix?.AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); } - private void OnCollideEvent(EntityUid uid, SupermatterComponent supermatter, ref StartCollideEvent args) + + private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCollideEvent args) { + if (!sm.Activated) + sm.Activated = true; + var target = args.OtherEntity; - if (!supermatter.Whitelist.IsValid(target) - || args.OtherBody.BodyType == BodyType.Static + if (args.OtherBody.BodyType == BodyType.Static || HasComp(target) || _container.IsEntityInContainer(uid)) return; - if (EntityManager.TryGetComponent(target, out var supermatterFood)) - supermatter.Power += supermatterFood.Energy; - else if (EntityManager.TryGetComponent(target, out var projectile)) - supermatter.Power += (float) projectile.Damage.GetTotal(); + if (TryComp(target, out var food)) + sm.Power += food.Energy; + else if (TryComp(target, out var projectile)) + sm.Power += (float) projectile.Damage.GetTotal(); else - supermatter.Power++; + sm.Power++; + + sm.MatterPower += HasComp(target) ? 200 : 0; - supermatter.MatterPower += EntityManager.HasComponent(target) ? 200 : 0; - if (!EntityManager.HasComponent(target)) + if (!HasComp(target)) { EntityManager.SpawnEntity("Ash", Transform(target).Coordinates); - _audio.PlayPvs(supermatter.DustSound, uid); + _audio.PlayPvs(sm.DustSound, uid); } EntityManager.QueueDeleteEntity(target); } - private void OnHandInteract(EntityUid uid, SupermatterComponent supermatter, InteractHandEvent args) + private void OnHandInteract(EntityUid uid, SupermatterComponent sm, ref InteractHandEvent args) { + if (!sm.Activated) + sm.Activated = true; + var target = args.User; + if (HasComp(target)) return; - supermatter.MatterPower += 200; + + sm.MatterPower += 200; + EntityManager.SpawnEntity("Ash", Transform(target).Coordinates); - _audio.PlayPvs(supermatter.DustSound, uid); + _audio.PlayPvs(sm.DustSound, uid); EntityManager.QueueDeleteEntity(target); } + + private void OnItemInteract(EntityUid uid, SupermatterComponent sm, ref InteractUsingEvent args) + { + if (!sm.Activated) + sm.Activated = true; + + if (sm.SliverRemoved) + return; + + if (!HasComp(args.Used)) + return; + + var dae = new DoAfterArgs(EntityManager, args.User, 30f, new SupermatterDoAfterEvent(), uid) + { + BreakOnDamage = true, + BreakOnHandChange = false, + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnWeightlessMove = false, + NeedHand = true, + RequireCanInteract = true, + }; + + _doAfter.TryStartDoAfter(dae); + _popup.PopupClient(Loc.GetString("supermatter-tamper-begin"), uid, args.User); + } + + private void OnGetSliver(EntityUid uid, SupermatterComponent sm, ref SupermatterDoAfterEvent args) + { + if (args.Cancelled) + return; + + // your criminal actions will not go unnoticed + sm.Damage += sm.DelaminationPoint / 10; + + var integrity = GetIntegrity(sm).ToString("0.00"); + SupermatterAnnouncement(uid, Loc.GetString("supermatter-announcement-cc-tamper", ("integrity", integrity)), true, "Central Command"); + + Spawn(sm.SliverPrototypeId, _transform.GetMapCoordinates(args.User)); + _popup.PopupClient(Loc.GetString("supermatter-tamper-end"), uid, args.User); + + sm.DelamTimer /= 2; + } + + private void OnExamine(EntityUid uid, SupermatterComponent sm, ref ExaminedEvent args) + { + // get all close and personal to it + if (args.IsInDetailsRange) + { + args.PushMarkup(Loc.GetString("supermatter-examine-integrity", ("integrity", GetIntegrity(sm).ToString("0.00")))); + } + } + + #endregion } } diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 0da0ca1f6fa..749cce91023 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -3,6 +3,8 @@ using Content.Shared.Atmos; using Content.Shared.Supermatter.Systems; using Content.Shared.Whitelist; +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; namespace Content.Shared.Supermatter.Components; @@ -11,10 +13,44 @@ public sealed partial class SupermatterComponent : Component { #region SM Base + /// + /// The SM will only cycle if activated. + /// + [DataField("activated")] + [ViewVariables(VVAccess.ReadWrite)] + public bool Activated = false; + + [DataField("supermatterSliverPrototype")] + public string SliverPrototypeId = "SupermatterSliver"; + + /// + /// Affects delamination timer. If removed - delamination timer is divided by 2. + /// + [DataField("sliverRemoved")] + [ViewVariables(VVAccess.ReadWrite)] + public bool SliverRemoved = false; + [DataField("whitelist")] public EntityWhitelist Whitelist = new(); public string IdTag = "EmitterBolt"; + public string[] LightningPrototypes = + { + "Lightning", + "ChargedLightning", + "SuperchargedLightning", + "HyperchargedLightning" + }; + + [DataField("singularitySpawnPrototype")] + public string SingularityPrototypeId = "Singularity"; + + [DataField("teslaSpawnPrototype")] + public string TeslaPrototypeId = "TeslaEnergyBall"; + + [DataField("supermatterKudzuSpawnPrototype")] + public string SupermatterKudzuPrototypeId = "SupermatterKudzu"; + [ViewVariables(VVAccess.ReadWrite)] public float Power; @@ -23,19 +59,15 @@ public sealed partial class SupermatterComponent : Component /// [ViewVariables(VVAccess.ReadWrite)] public float Damage = 0f; - [ViewVariables(VVAccess.ReadWrite)] public float MatterPower; - [ViewVariables(VVAccess.ReadWrite)] public float MatterPowerConversion = 10f; - /// /// The portion of the gasmix we're on /// [ViewVariables(VVAccess.ReadWrite)] public float GasEfficiency = 0.15f; - /// /// The amount of heat we apply scaled /// @@ -45,22 +77,19 @@ public sealed partial class SupermatterComponent : Component #endregion SM Base #region SM Sound + /// /// Current stream of SM audio. /// public EntityUid? AudioStream; - public SharedSupermatterSystem.SuperMatterSound? SmSound; [DataField("dustSound")] - public SoundSpecifier DustSound = new SoundPathSpecifier("/Audio/Supermatter/dust.ogg"); + public SoundSpecifier DustSound = new SoundPathSpecifier("/Audio/Effects/Grenades/Supermatter/supermatter_start.ogg"); [DataField("delamSound")] public SoundSpecifier DelamSound = new SoundPathSpecifier("/Audio/Supermatter/delamming.ogg"); - [DataField("delamAlarm")] - public SoundSpecifier DelamAlarm = new SoundPathSpecifier("/Audio/Machines/alarm.ogg"); - #endregion SM Sound #region SM Calculation @@ -130,77 +159,59 @@ public sealed partial class SupermatterComponent : Component /// The point at which we should start sending messeges /// about the damage to the engi channels. /// - [ViewVariables(VVAccess.ReadOnly)] + [ViewVariables(VVAccess.ReadWrite)] [DataField("WarningPoint")] public float WarningPoint = 50; /// /// The point at which we start sending messages to the common channel /// - [ViewVariables(VVAccess.ReadOnly)] + [ViewVariables(VVAccess.ReadWrite)] [DataField("emergencyPoint")] public float EmergencyPoint = 500; /// /// we yell if over 50 damage every YellTimer Seconds /// - [ViewVariables(VVAccess.ReadOnly)] - public float YellTimer = 30f; + [ViewVariables(VVAccess.ReadWrite)] + public float YellTimer = 60f; /// /// set to YellTimer at first so it doesnt yell a minute after being hit /// [ViewVariables(VVAccess.ReadOnly)] - public float YellAccumulator = 30f; - - /// - /// YellTimer before the SM is about the delam - /// - [ViewVariables(VVAccess.ReadOnly)] - public float YellDelam = 5f; + public float YellAccumulator = 60f; /// - /// Timer for Damage + /// Timer for delam /// [ViewVariables(VVAccess.ReadOnly)] - public float DamageUpdateAccumulator; + public float DelamTimerAccumulator; /// - /// update environment damage every 1 second + /// Time until delam /// - [ViewVariables(VVAccess.ReadOnly)] - public float DamageUpdateTimer = 1f; + [ViewVariables(VVAccess.ReadWrite)] + [DataField("delamTimer")] + public float DelamTimer = 120f; /// - /// Timer for delam + /// The message timer /// - [ViewVariables(VVAccess.ReadOnly)] - public float DelamTimerAccumulator; + [ViewVariables(VVAccess.ReadWrite)] + public float SpeakAccumulator = 60f; - /// - /// updates delam - /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("finalCountdownTime")] - public int FinalCountdownTime = 30; + public float UpdateAccumulator = 0f; - /// - /// The message timer - /// - [ViewVariables(VVAccess.ReadOnly)] - public float SpeakAccumulator = 5f; + [ViewVariables(VVAccess.ReadWrite)] + public float UpdateTimer = 1f; - /// - /// Atmos update timer - /// [ViewVariables(VVAccess.ReadOnly)] - public float AtmosUpdateAccumulator; + public float ZapAccumulator = 0f; - /// - /// update atmos every 1 second - /// - [ViewVariables(VVAccess.ReadOnly)] - public float AtmosUpdateTimer = 1f; + [ViewVariables(VVAccess.ReadWrite)] + public float ZapTimer = 10f; #endregion SM Timer @@ -236,7 +247,7 @@ public sealed partial class SupermatterComponent : Component /// [ViewVariables(VVAccess.ReadOnly)] [DataField("molepenaltyThreshold")] - public float MolePenaltyThreshold = 1800f; + public float MolePenaltyThreshold = 900f; /// /// more moles of gases are harder to heat than fewer, @@ -252,7 +263,7 @@ public sealed partial class SupermatterComponent : Component /// [ViewVariables(VVAccess.ReadOnly)] [DataField("powerPenaltyThreshold")] - public float PowerPenaltyThreshold = 5000f; + public float PowerPenaltyThreshold = 2500f; /// /// Maximum safe operational temperature in degrees Celsius. Supermatter begins taking damage above this temperature. @@ -292,30 +303,28 @@ public sealed partial class SupermatterComponent : Component #region SM Delamm + public bool DelamAnnounced = false; + /// /// The point at which we delamm /// [ViewVariables(VVAccess.ReadOnly)] [DataField("explosionPoint")] - public int ExplosionPoint = 900; + public int DelaminationPoint = 900; //Are we delamming? [ViewVariables(VVAccess.ReadOnly)] public bool Delamming = false; - //it's the final countdown - [ViewVariables(VVAccess.ReadOnly)] - public bool FinalCountdown = false; - //Explosion totalIntensity value [ViewVariables(VVAccess.ReadOnly)] [DataField("totalIntensity")] - public float TotalIntensity= 500000f; + public float TotalIntensity = 50000f; //Explosion radius value [ViewVariables(VVAccess.ReadOnly)] [DataField("radius")] - public float Radius = 500f; + public float Radius = 50f; /// /// These would be what you would get at point blank, decreases with distance @@ -327,6 +336,7 @@ public sealed partial class SupermatterComponent : Component #endregion SM Delamm #region SM Gas + /// /// Is used to store gas /// @@ -336,30 +346,54 @@ public sealed partial class SupermatterComponent : Component { {Gas.Oxygen, 0f}, {Gas.Nitrogen, 0f}, - {Gas.NitrousOxide, 0f}, {Gas.CarbonDioxide, 0f}, {Gas.Plasma, 0f}, {Gas.Tritium, 0f}, - {Gas.WaterVapor, 0f}, - {Gas.Frezon, 0f}, - {Gas.Ammonia, 0f} + {Gas.WaterVapor, 0f} }; /// - /// Stores each gases calculation + /// Stores each gas facts /// + // todo: replace this with serializable GasFact array something public readonly Dictionary GasDataFields = new() { [Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f), [Gas.Nitrogen] = (TransmitModifier: 0f, HeatPenalty: -1.5f, PowerMixRatio: -1f), - [Gas.NitrousOxide] = (TransmitModifier: 1f, HeatPenalty: -5f, PowerMixRatio: 1f), [Gas.CarbonDioxide] = (TransmitModifier: 0f, HeatPenalty: 0.1f, PowerMixRatio: 1f), [Gas.Plasma] = (TransmitModifier: 4f, HeatPenalty: 15f, PowerMixRatio: 1f), [Gas.Tritium] = (TransmitModifier: 30f, HeatPenalty: 10f, PowerMixRatio: 1f), [Gas.WaterVapor] = (TransmitModifier: 2f, HeatPenalty: 12f, PowerMixRatio: 1f), - [Gas.Frezon] = (TransmitModifier: 3f, HeatPenalty: -9f, PowerMixRatio: -1f), - [Gas.Ammonia] = (TransmitModifier: 1.5f, HeatPenalty: 1.5f, PowerMixRatio: 1.5f) + [Gas.Frezon] = (TransmitModifier: 3f, HeatPenalty: -10f, PowerMixRatio: -1f), + [Gas.Ammonia] = (TransmitModifier: 0f, HeatPenalty: .5f, PowerMixRatio: 1f), + [Gas.NitrousOxide] = (TransmitModifier: 0f, HeatPenalty: -5f, PowerMixRatio: -1f), }; #endregion SM Gas } + +[Serializable, DataDefinition] +public sealed partial class GasFact +{ + [DataField("transmitModifier")] + public float TransmitModifier; + + [DataField("heatPenalty")] + public float HeatPenalty; + + [DataField("powerMixRatio")] + public float PowerMixRatio; + + public GasFact(float transmitModifier, float heatPenalty, float powerMixRatio) + { + TransmitModifier = transmitModifier; + HeatPenalty = heatPenalty; + PowerMixRatio = powerMixRatio; + } +} + +[Serializable, NetSerializable] +public sealed partial class SupermatterDoAfterEvent : SimpleDoAfterEvent +{ + +} diff --git a/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs b/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs index ce379d3659d..2975ec6ea0e 100644 --- a/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs +++ b/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs @@ -21,16 +21,22 @@ public enum DelamType : sbyte { Explosion = 0, Singulo = 1, + Tesla = 2, + Cascade = 3 } + #region Getters/Setters + // what is this used for? public void OnSupermatterStartup(EntityUid uid, SupermatterComponent comp, ComponentStartup args) { + } #endregion Getters/Setters #region Serialization + /// /// A state wrapper used to sync the supermatter between the server and client. /// @@ -39,6 +45,7 @@ protected sealed class SupermatterComponentState : ComponentState { public SupermatterComponentState(SupermatterComponent supermatter) { + } } diff --git a/Resources/Audio/Supermatter/dust.ogg b/Resources/Audio/Supermatter/dust.ogg deleted file mode 100644 index c6e87b61e6c60e9f5ac6c15b7258d2028a81ec85..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 18591 zcmagG1zcS*voE?f?#12R-6>k!-KC|tySuv=hXTdDxRp}et+-R%DPHt#+V9+R-hJ

vI9!y=4t>0@SiKmQ(BDD} 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 diff --git a/Resources/Locale/en-US/objectives/conditions/steal.ftl b/Resources/Locale/en-US/objectives/conditions/steal.ftl index 00c8e0fdaf9..8547a01db23 100644 --- a/Resources/Locale/en-US/objectives/conditions/steal.ftl +++ b/Resources/Locale/en-US/objectives/conditions/steal.ftl @@ -9,3 +9,6 @@ objective-condition-steal-Ian = head of personnel's corgi objective-condition-thief-description = The {$itemName} would be a great addition to my collection! objective-condition-thief-animal-description = The {$itemName} would be a great addition to my collection! Most importantly, alive. objective-condition-thief-multiply-description = I need to get {$count} {MAKEPLURAL($itemName)} and take them with me. + +objective-condition-steal-smsliver-title = Cut off a sliver from the supermatter crystal. +objective-condition-steal-smsliver-description = Use any cutting tool that comes in handy. A scalpel is more recommended. Also, don't die of radiation poisoning. \ No newline at end of file diff --git a/Resources/Locale/en-US/supermatter/supermatter.ftl b/Resources/Locale/en-US/supermatter/supermatter.ftl index d2010464580..5809181f86d 100644 --- a/Resources/Locale/en-US/supermatter/supermatter.ftl +++ b/Resources/Locale/en-US/supermatter/supermatter.ftl @@ -1,7 +1,26 @@ -supermatter-self = Supermatter -supermatter-danger-message = Danger! Crystal hyperstructure integrity faltering! Integrity: {$integrity}% -supermatter-warning-message = WARNING! Crystal hyperstructure integrity reaching critical levels! Integrity: {$integrity}% -supermatter-safe-alert = Crystalline hyperstructure returning to safe operating parameters. Failsafe has been Disengaged. Integrity: {$integrity}% -supermatter-delamination-overmass = The Supermatter has Reached Critical Mass Falure. Singularity formation Imminent -supermatter-delamination-default = The Supermatter has Reached Critical Integrity Falure. Emergency Causality Destabilization Field has been Activated. -supermatter-seconds-before-delam = {$Seconds} Seconds Remain Before Delamination. +supermatter-announcer = Automatic Supermatter Engine +supermatter-examine-integrity = + It's integrity is [color=yellow]{$integrity}%[/color]. +supermatter-warning = + Warning! Crystal hyperstructure integrity faltering! Integrity: {$integrity}%. +supermatter-emergency = + DANGER! Crystal hyperstructure integrity reaching critical levels! Integrity: {$integrity}%. +supermatter-delam-explosion = + CRYSTAL DELAMINATION IMMINENT! The crystal has reached critical integrity failure! Emergency causality destabilization field has been engaged. +supermatter-delam-overmass = + CRYSTAL DELAMINATION IMMINENT! Crystal hyperstructure integrity has reached critical mass failure! Singularity formation imminent! +supermatter-delam-tesla = + CRYSTAL DELAMINATION IMMINENT! Crystal hyperstructure integrity has reached critical power surge failure! Energy ball formation imminent! +supermatter-delam-cascade = + CRYSTAL DELAMINATION IMMINENT! Harmonic frequency limits exceeded, casualty destabilization field could not be engaged! +supermatter-delam-cancel = + Crystalline hyperstructure returning to safe operating parameters. Failsafe has been Disengaged. Integrity: {$integrity}%. +supermatter-seconds-before-delam = + Estimated time before delamination: {$seconds} seconds. +supermatter-tamper-begin = + You begin carefully cutting a piece off the supermatter crystal... +supermatter-tamper-end = + You feel the power of a thousand suns laying on your palms. Or is it all the radiation? +supermatter-announcement-cc-tamper = + Our automatic casualty system has detected that the supermatter crystal structural integrity was compromised by an external force. + Engineering department, report to the supermatter engine immediately. \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/supermatter_sliver.yml b/Resources/Prototypes/Entities/Objects/Misc/supermatter_sliver.yml new file mode 100644 index 00000000000..e524a4fbf82 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/supermatter_sliver.yml @@ -0,0 +1,25 @@ +- type: entity + parent: BaseItem + id: SupermatterSliver + name: supermatter sliver + description: A shard from the station's supermatter crystal. Highly radioactive. + components: + - type: PointLight + enabled: true + radius: 3 + energy: 2 + color: "#fff633" + - type: RadiationSource + intensity: .75 + - type: Icon + sprite: Supermatter/supermatter_sliver.rsi + state: icon + - type: Sprite + sprite: Supermatter/supermatter_sliver.rsi + state: icon + - type: StealTarget + stealGroup: SupermatterSliver + - type: Tag + tags: + - HighRiskItem + - type: SupermatterImmune \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml similarity index 90% rename from Resources/Prototypes/Entities/Supermatter/supermatter.yml rename to Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml index e84b51ffd8b..4511f86f179 100644 --- a/Resources/Prototypes/Entities/Supermatter/supermatter.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml @@ -1,6 +1,6 @@ - type: entity id: Supermatter - name: supermatter + name: supermatter crystal description: A strangely translucent and iridescent crystal. placement: mode: SnapgridCenter @@ -15,7 +15,7 @@ - type: RadiationSource - type: AmbientSound range: 5 - volume: -5 + volume: 0 sound: path: /Audio/Supermatter/calm.ogg - type: Physics @@ -57,9 +57,11 @@ enabled: true radius: 10 energy: 5 - color: "#d9ce00" + color: "#ffe000" - type: Explosive explosionType: Supermatter maxIntensity: 10000 - intensitySlope: 10 + intensitySlope: 5 totalIntensity: 10000 + - type: GuideHelp + guides: [ Supermatter, Power ] \ No newline at end of file diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml index 21d17f02279..ef502d8ab4c 100644 --- a/Resources/Prototypes/Guidebook/engineering.yml +++ b/Resources/Prototypes/Guidebook/engineering.yml @@ -66,6 +66,7 @@ - Singularity - TEG - RTG + - Supermatter - type: guideEntry id: AME @@ -91,3 +92,8 @@ id: PortableGenerator name: guide-entry-portable-generator text: "/ServerInfo/Guidebook/Engineering/PortableGenerator.xml" + +- type: guideEntry + id: Supermatter + name: guide-entry-sm + text: "/ServerInfo/Guidebook/Engineering/Supermatter.xml" \ No newline at end of file diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index fba2c4cc172..dc553187dde 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -26,6 +26,7 @@ LOLuckyBillStealObjective: 0.5 # DeltaV - LO steal objective, see Resources/Prototypes/DeltaV/Objectives/traitor.yml HoPBookIanDossierStealObjective: 1 # DeltaV - HoP steal objective, see Resources/Prototypes/DeltaV/Objectives/traitor.yml HoSGunStealObjective: 0.5 + StealSupermatterSliverObjective: 0.5 - type: weightedRandom id: TraitorObjectiveGroupKill diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index ffeba32546d..d9c071c30c0 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -309,3 +309,15 @@ - type: StealCondition stealGroup: NukeDisk owner: objective-condition-steal-station + +- type: entity + noSpawn: true + parent: BaseTraitorStealObjective + id: StealSupermatterSliverObjective + components: + - type: Objective + difficulty: 3.5 + - type: StealCondition + stealGroup: SupermatterSliver + objectiveNoOwnerText: objective-condition-steal-smsliver-title + descriptionText: objective-condition-steal-smsliver-description \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml new file mode 100644 index 00000000000..36502fe532c --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml @@ -0,0 +1,65 @@ + + + + + # The Supermatter Engine + + So you've decided to take on the challenge and set up the Supermatter Engine? First, let's give you a short overview of the main Supermatter crystal beforehand. + + Its primary features are emitting electrical arcs that are harnessed to power the station through tesla coils. + + Side effects include radiation emission, releasing hot oxygen and plasma, heating the air around, and exploding, transforming into a black hole or an energy ball and eating the entire station if you screw up hard enough. + + It begins inert but being hit by an object or a projectile will activate it and it'll start exhibiting nearly all of the aforementioned properties. + + ## Words of Warning + + 1. The Supermatter crystal is [color=red]VERY DANGEROUS[/color]. Activating the crystal should be the last step in setting up any form of Supermatter based power! + + 2. [color=red]PUT YOUR GOD DAMN RADIATION SUIT ON[/color]!! + + 3. Most of setting up the Supermatter involves a gas loop that is designed to cool down the Supermatter chamber. Please have at least some knowledge of gases and their atmospheric properties. + + 4. Anything that bumps into the Supermatter is [color=red]fundamentally annihilated[/color]. [color=red]Do not touch it[/color]. This means weld and bolt the door to the chamber. + + ## Gas Interactions + + Here's a list of all gases from least dangerous to most dangerous. + + 1. [color=#bffffe]Frezon[/color]. Aside from cooling down the Supermatter, it basically stops power and waste production, which may come handy if the Supermatter is close to delaminating and you need to shut it down fast. + + 2. [color=#c20000]Nitrogen[/color]. N2 is the basic gas most Supermatter setups will run exclusively, being bog simple to set up for. It dampens the power generation from heat, and reduces the amount of plasma the SM belches out, making it good for when you aren't trying to do something silly. + + 3. [color=#b16d6d]Nitrous oxide[/color]. Reinforces the heat resistance of the crystal, allowing for much hotter setups than usual. Hovewer, at high temperatures it will decompose into Nitrogen and Oxygen. While N2 is good, O2 certainly is not. This O2 will also react with the Plasma to create Tritium and then... a Tritium fire. + + 4. [color=#62d5ca]Oxygen[/color]. Provides a boost to power transmission without actively increasing the waste gas amount or temperature. Pretty risky to use, as any disruption of the cooling loop will soon cause a plasma fire in the crystal chamber. Even just a high concentration of O2 will activate and continuously power the crystal. + + 5. [color=#19b348]Ammonia[/color]. Increases the power generation slightly at a minor cost to the heat penalty. + + 6. [color=#979797]Carbon Dioxide[/color]. In low concentrations, it will increase the crystal's power generation. In high concentrations it will raise the crystal's energy to extremely high levels. With poor management and insufficient or downright bad preparation, it will eventually exceed safe energy levels and begin a charge delamination, producing electric arcs and anomalies until it eventually explodes into a Tesla ball. + + [color=red]7[/color]. [color=#ff9d00]Plasma[/color]. Very similar to Oxygen but provides a higher power boost as well as a much higher waste and heat penalty. The extreme pressures and volumes of gas produced by this gas are very likely to clog pipes and overheat the chamber. + + [color=red]8[/color]. [color=#08a800]Tritium[/color]. Increases the power production of the Supermatter by up to 3 times, there is one slight issue with it. It is dangerous. It is very dangerous. Tritium is a horrifyingly irritable and jumpy gas. While it isn't as harmful to the heat level as Plasma is (just barely), it also has the second worst heat capacity of all gasses while Plasma has the second highest. This means that Plasma can be kept happy with enough cooling, whereas Tritium eagerly goes from a safe space loop into a burning hellfire. Add to this the byproduct of large amounts of Oxygen production (not exclusive to Tritium. An issue in a Plasma engine too), and you have a tritium fire and a very hot crystal. Do not use this gas unless you have a very strong understanding of atmospherics and the Supermatter, and are willing to get creative. + + ## Practical guide to the Supermatter + + Now, forget about everything you've just read and get to setting up the most basic loop there is: the Nitrogen loop. + + The atmospheric setup in it's most basic form should look like this: + + (We did not have enough budget for images, here is a text representation) + + 1. Nitrogen gets pumped into the chamber by passive vents from one side + + 2. Every gas gets pumped out of the chamber by using scrubbers set on Siphon on the other side. + + 3. The output gets cooled down, filtered and excess nitrogen gets either outted into space or rerouted into the input. + + That's basically it. I hope you understand at least something in this example. Now get to it! + + ## Experiment + + You're not a real engineer if you haven't figured out the most efficient way to produce electricity using the Supermatter crystal, are you? + + \ No newline at end of file diff --git a/Resources/Textures/Supermatter/supermatter.rsi/meta.json b/Resources/Textures/Supermatter/supermatter.rsi/meta.json index 3c25e1a830f..6f8f3e0bd82 100644 --- a/Resources/Textures/Supermatter/supermatter.rsi/meta.json +++ b/Resources/Textures/Supermatter/supermatter.rsi/meta.json @@ -1,6 +1,6 @@ { "version": 1, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/master/icons/obj/supermatter.dmi", + "copyright": "Taken and edited from https://tgstation13.org/wiki/images/a/a4/Supermatter-bg.gif", "license": "CC-BY-SA-3.0", "size": { "x": 32, @@ -8,7 +8,14 @@ }, "states": [ { - "name": "supermatter" + "name": "supermatter", + "delays": [ + [ + 0.08, + 0.08, + 0.08 + ] + ] } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Supermatter/supermatter.rsi/supermatter.png b/Resources/Textures/Supermatter/supermatter.rsi/supermatter.png index b8fa4defeb76c0deaca66924f60cf5932bd35d79..0c5747a315fec5fc2d2965078fe08a0dd9296681 100644 GIT binary patch literal 28899 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 literal 2702 zcmV;93UT#`P)%skX)DSvI%N78QEE~ zggtR=8t2Kv8382FzfWCO2TG!IzXR?D%(nlRg|jgrFd2x`FHEl!Oh0r9YSrGvrt@Oq zYycLZ-}FA#`4U?7*8vr^V%`76!h!(KO#f_C6b1e8Zq)LI>85jL;Yuv-W1TNq z6ZG!3^Jd{p02WmLT#I$CLaTmfZu2>@a9RKh(|>yJ2lj^mP^+#2&MzYtV&Js&$2wP? z(Hs5H%cxaXCN|Atp(eXo)MPiSaR&j=7FcT@{fSSZm>E%44`$7{0LTV% zfuled@G+1Dq@Ruf1+WWM!H^QqeUBg|G&J9AdA*SLJ=_0ENz?VjI$uIR;sGfEQUkt| zALP3iW9mr(Lr4F(;~=nNApi;rAZHreHa`eJ>5>a@UX(M>`?gnyXt<(a)km_Zdmr8{B{+ST1E5u|LkNK?OgVLULkRH< z#f?q$z1o8E{7#A+51>}tky3(j8z>{-ib3d|*&_7&{Qv|40rIm_$agQsnV*iMItzeH zZ~X~U{s90frS&rmNnL#&hGAeBhShIKiPsaPXU7VpybHLK{^wWm{@)u|f8`4Rqq6{v zjg5kYv9U0QDIf}$XEFFuh~ma3rVhP=ly^~g+fR9;^_T@(qQCyx1 zNTv?eGw`o3F@2bhPe_2syfly*#NAq&jTRV zwR=`SfFcxzMo#f~hnvYM31G|vuwr>NB_-wDv#W^E$Da$!)*GuogMc^FpN9^ z$1DaE1(NKNM{kz?YWp%xeo7^7K9KOFSnR$ z3PHOkh^su6CE2N{<^KV(1q>71EC6=9LUmOcOY#QDU6zTes_427fU2t2g7pm!3`6I# zh622vARP}p#$~tPh<8g1^|${F+1+N%duvZWst}Yq7vWr)$5i(QM8%812*Rb$9LGYD zq$Vpgt$2-`r57TlM32W$N=g6zAOi2Aq2s8|GGiRqf^O&-QZjYu6_oOZnHr(% z)Yj$VsLrB)e-PDu8G82yj<;^W=zZra767{qQcY#fie;h(iW@i5e!q+2#wIJqO*dCt zDNB4_tZO%FMVqCK=~_~B&G+!{dX5h|25H(91qf=1;@kEM8@bCeF$@F$!C{0DmIk!S zb$IT31Xp1O-YqTE-f{yR+>Za?Fg5E-@NQ|rRhVIw=AIoZt9(atJ^(8X`j@N;K zozEbIN{2T@U40%xRdF?L#J}rV0wWVNZ?lo_P&hRq**m=1m{$k-hDN!#b_oLqLI|N? z7&Eb)j=87pIJI@TbhI7=V9ojxtKaJhm|0*LRvqZuxr4ySINRQ>WHNe`Xl!Ob0cJ)_ z#XuSoXMP%QzS_ggWkAw?|5jXu8MJ!>R%^Q_fXk7N%aP6-t;go|*VX6I>mS8cm_e_9 zl$c@g(47&Ilfb6V0U#wzL>2CMLc@PzoD$~+^bL(s^xcgVH#W^B2{3DZuRlz$KRl~# zZGB#R^Kg9gFkidE#p)aOp_bOL=kYx3c4-|-RtTa~Fg7mf2yNg}<-aT~TErU<|!@cU~9$XR+Jt0!Z4 zJwa;ga;&%(m#5-#q@z`?Bih-TAl$HZA?fvxQhU`>1`eE{aCsKT4~^g-j_~uXF>>;j z^4VB7i>BsiAUR1PJyr7bU3T)yG68T@XU8uSW}QfUmG?cn9o5}{x~!I9_a|s}L4RP3 zUVoUH^(Ab7u#;YYm^XL#;JkV-UtY6>hi}xFios-5lK9NiYO-uHv zeWizz$_!RtUIf6=*CgTZn1DFb(QJaD z;c;B<6i^ftp^%gkzkn(r4TEESLGJFokl!|b%JHrdYH#`>#*uc8ca0!ag}})Pa*plg zo3}(r&G1>Vw?eRYc(ZV>kcXNDr99Km; z#TDrs4@J1+FB<-#QT%~X9`;tCC=m0#hFbbJ^4*zSe{YmOx0SQzx&VVipAns6o@oFR zlajGP&1qnwa8JP;7hK;!A^Pl)idwV-g8?TjacLjDEB-%U0*AKp5^-~ugi+s(f3-PG?@+kv<2$y(1BY3}*}r{UA3Re!wlF Date: Sat, 22 Jun 2024 18:49:49 +1000 Subject: [PATCH 17/38] fix doafter --- Content.Server/Supermatter/Systems/SupermatterSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 508c90b521a..6e25eacc77b 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -587,7 +587,7 @@ private void OnItemInteract(EntityUid uid, SupermatterComponent sm, ref Interact if (!HasComp(args.Used)) return; - var dae = new DoAfterArgs(EntityManager, args.User, 30f, new SupermatterDoAfterEvent(), uid) + var dae = new DoAfterArgs(EntityManager, args.User, 30f, new SupermatterDoAfterEvent(), args.Target) { BreakOnDamage = true, BreakOnHandChange = false, From b60949f374b288f8654a1dc8ac591bb4e12814fd Mon Sep 17 00:00:00 2001 From: whateverusername0 Date: Sat, 22 Jun 2024 19:44:23 +1000 Subject: [PATCH 18/38] ok --- .../Supermatter/Systems/SupermatterSystem.cs | 21 -------- .../Supermatter/Systems/SupermatterSystem.cs | 20 ++----- .../Components/SupermatterComponent.cs | 25 +++++++-- .../Systems/SharedSupermatterSystem.cs | 54 ------------------- 4 files changed, 25 insertions(+), 95 deletions(-) delete mode 100644 Content.Client/Supermatter/Systems/SupermatterSystem.cs delete mode 100644 Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs diff --git a/Content.Client/Supermatter/Systems/SupermatterSystem.cs b/Content.Client/Supermatter/Systems/SupermatterSystem.cs deleted file mode 100644 index ba40cbe2711..00000000000 --- a/Content.Client/Supermatter/Systems/SupermatterSystem.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Content.Shared.Supermatter.Components; -using Content.Shared.Supermatter.Systems; -using Robust.Shared.GameStates; - -namespace Content.Client.Supermatter.Systems; - -public sealed class SupermatterSystem : SharedSupermatterSystem -{ - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(HandleSupermatterState); - } - - private void HandleSupermatterState(EntityUid uid, SupermatterComponent comp, ref ComponentHandleState args) - { - if (args.Current is not SupermatterComponentState state) - return; - } -} diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 6e25eacc77b..7183eda82ed 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -1,4 +1,3 @@ -using JetBrains.Annotations; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Physics; @@ -16,7 +15,6 @@ using Content.Server.Chat.Systems; using Content.Server.Explosion.EntitySystems; using Content.Shared.Supermatter.Components; -using Content.Shared.Supermatter.Systems; using Content.Server.Lightning; using Content.Server.AlertLevel; using Content.Server.Station.Systems; @@ -30,8 +28,7 @@ namespace Content.Server.Supermatter.Systems { - [UsedImplicitly] - public sealed class SupermatterSystem : SharedSupermatterSystem + public sealed class SupermatterSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphere = default!; [Dependency] private readonly ChatSystem _chat = default!; @@ -56,7 +53,6 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnComponentRemove); SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnCollideEvent); @@ -69,8 +65,6 @@ public override void Initialize() public override void Update(float frameTime) { base.Update(frameTime); - if (!_gameTiming.IsFirstTimePredicted) - return; foreach (var sm in EntityManager.EntityQuery()) { @@ -297,7 +291,6 @@ private void HandleDamage(EntityUid uid, SupermatterComponent sm) var integrity = GetIntegrity(sm); - // this is some magic number shit var factor = integrity switch { < 10 => 0.0005f, @@ -499,7 +492,7 @@ private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) return; } - var smSound = isDelamming ? SuperMatterSound.Delam : SuperMatterSound.Aggressive; + var smSound = isDelamming ? SupermatterSound.Delam : SupermatterSound.Aggressive; if (sm.SmSound == smSound) return; @@ -512,14 +505,7 @@ private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) #region Event Handlers - private void OnComponentRemove(EntityUid uid, SupermatterComponent component, ComponentRemove args) - { - // turn off any ambient if component is removed (ex. entity deleted) - _ambient.SetAmbience(uid, false); - component.AudioStream = _audio.Stop(component.AudioStream); - } - - private void OnMapInit(EntityUid uid, SupermatterComponent component, MapInitEvent args) + private void OnMapInit(EntityUid uid, SupermatterComponent sm, MapInitEvent args) { // Set the Sound _ambient.SetAmbience(uid, true); diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 749cce91023..4e205026123 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -1,7 +1,6 @@ using Robust.Shared.GameStates; using Robust.Shared.Audio; using Content.Shared.Atmos; -using Content.Shared.Supermatter.Systems; using Content.Shared.Whitelist; using Content.Shared.DoAfter; using Robust.Shared.Serialization; @@ -51,6 +50,12 @@ public sealed partial class SupermatterComponent : Component [DataField("supermatterKudzuSpawnPrototype")] public string SupermatterKudzuPrototypeId = "SupermatterKudzu"; + ///

+ /// What spawns in the place of an unfortunate entity that got removed by the SM. + /// + [DataField("collisionResultPrototype")] + public string CollisionResultPrototypeId = "Ash"; + [ViewVariables(VVAccess.ReadWrite)] public float Power; @@ -82,7 +87,7 @@ public sealed partial class SupermatterComponent : Component /// Current stream of SM audio. ///
public EntityUid? AudioStream; - public SharedSupermatterSystem.SuperMatterSound? SmSound; + public SupermatterSound? SmSound; [DataField("dustSound")] public SoundSpecifier DustSound = new SoundPathSpecifier("/Audio/Effects/Grenades/Supermatter/supermatter_start.ogg"); @@ -301,7 +306,7 @@ public sealed partial class SupermatterComponent : Component #endregion SM Threshold - #region SM Delamm + #region SM Delam public bool DelamAnnounced = false; @@ -372,6 +377,20 @@ public sealed partial class SupermatterComponent : Component #endregion SM Gas } +public enum SupermatterSound : sbyte +{ + Aggressive = 0, + Delam = 1 +} + +public enum DelamType : sbyte +{ + Explosion = 0, + Singulo = 1, + Tesla = 2, + Cascade = 3 +} + [Serializable, DataDefinition] public sealed partial class GasFact { diff --git a/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs b/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs deleted file mode 100644 index 2975ec6ea0e..00000000000 --- a/Content.Shared/Supermatter/Systems/SharedSupermatterSystem.cs +++ /dev/null @@ -1,54 +0,0 @@ -using Content.Shared.Supermatter.Components; -using Robust.Shared.Serialization; - -namespace Content.Shared.Supermatter.Systems; - -public abstract class SharedSupermatterSystem : EntitySystem -{ - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnSupermatterStartup); - } - - public enum SuperMatterSound : sbyte - { - Aggressive = 0, - Delam = 1 - } - - public enum DelamType : sbyte - { - Explosion = 0, - Singulo = 1, - Tesla = 2, - Cascade = 3 - } - - #region Getters/Setters - - // what is this used for? - public void OnSupermatterStartup(EntityUid uid, SupermatterComponent comp, ComponentStartup args) - { - - } - - #endregion Getters/Setters - - #region Serialization - - /// - /// A state wrapper used to sync the supermatter between the server and client. - /// - [Serializable, NetSerializable] - protected sealed class SupermatterComponentState : ComponentState - { - public SupermatterComponentState(SupermatterComponent supermatter) - { - - } - } - - #endregion Serialization - -} From 13e65325acf489b00e2aa4f341eb6d7fe7da18cf Mon Sep 17 00:00:00 2001 From: whateverusername0 Date: Sat, 22 Jun 2024 20:07:47 +1000 Subject: [PATCH 19/38] grab som more --- .../Supermatter/Systems/SupermatterSystem.cs | 27 +-- .../Components/SupermatterComponent.cs | 199 ++++++++---------- 2 files changed, 103 insertions(+), 123 deletions(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 7183eda82ed..80a54655060 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -305,7 +305,10 @@ private void HandleDamage(EntityUid uid, SupermatterComponent sm) break; } - sm.Damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DelaminationPoint, totalDamage); + var damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DelaminationPoint, totalDamage); + + // prevent it from going negative + sm.Damage = Math.Clamp(damage, 0, float.PositiveInfinity); } ///
@@ -523,10 +526,18 @@ private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCol var target = args.OtherEntity; if (args.OtherBody.BodyType == BodyType.Static - || HasComp(target) - || _container.IsEntityInContainer(uid)) + || HasComp(target) + || _container.IsEntityInContainer(uid)) return; + if (!HasComp(target)) + { + EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); + _audio.PlayPvs(sm.DustSound, uid); + } + + EntityManager.QueueDeleteEntity(target); + if (TryComp(target, out var food)) sm.Power += food.Energy; else if (TryComp(target, out var projectile)) @@ -535,14 +546,6 @@ private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCol sm.Power++; sm.MatterPower += HasComp(target) ? 200 : 0; - - if (!HasComp(target)) - { - EntityManager.SpawnEntity("Ash", Transform(target).Coordinates); - _audio.PlayPvs(sm.DustSound, uid); - } - - EntityManager.QueueDeleteEntity(target); } private void OnHandInteract(EntityUid uid, SupermatterComponent sm, ref InteractHandEvent args) @@ -557,7 +560,7 @@ private void OnHandInteract(EntityUid uid, SupermatterComponent sm, ref Interact sm.MatterPower += 200; - EntityManager.SpawnEntity("Ash", Transform(target).Coordinates); + EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); _audio.PlayPvs(sm.DustSound, uid); EntityManager.QueueDeleteEntity(target); } diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 4e205026123..e37b7ec8af4 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -10,7 +10,7 @@ namespace Content.Shared.Supermatter.Components; [RegisterComponent, NetworkedComponent] public sealed partial class SupermatterComponent : Component { - #region SM Base + #region Base /// /// The SM will only cycle if activated. @@ -56,35 +56,8 @@ public sealed partial class SupermatterComponent : Component [DataField("collisionResultPrototype")] public string CollisionResultPrototypeId = "Ash"; - [ViewVariables(VVAccess.ReadWrite)] - public float Power; - - /// - /// The amount of damage we have currently - /// - [ViewVariables(VVAccess.ReadWrite)] - public float Damage = 0f; - [ViewVariables(VVAccess.ReadWrite)] - public float MatterPower; - [ViewVariables(VVAccess.ReadWrite)] - public float MatterPowerConversion = 10f; /// - /// The portion of the gasmix we're on - /// - [ViewVariables(VVAccess.ReadWrite)] - public float GasEfficiency = 0.15f; - /// - /// The amount of heat we apply scaled - /// - [ViewVariables(VVAccess.ReadWrite)] - public float HeatThreshold = 2500f; - - #endregion SM Base - - #region SM Sound - - /// - /// Current stream of SM audio. + /// Current audiostream. /// public EntityUid? AudioStream; public SupermatterSound? SmSound; @@ -95,94 +68,91 @@ public sealed partial class SupermatterComponent : Component [DataField("delamSound")] public SoundSpecifier DelamSound = new SoundPathSpecifier("/Audio/Supermatter/delamming.ogg"); - #endregion SM Sound + #endregion + + #region Processing + + [ViewVariables(VVAccess.ReadWrite)] + public float Power; + + [ViewVariables(VVAccess.ReadWrite)] + public float MatterPower; - #region SM Calculation + [ViewVariables(VVAccess.ReadWrite)] + public float MatterPowerConversion = 10f; + /// + /// The portion of the gasmix we're on + /// + [ViewVariables(VVAccess.ReadWrite)] + public float GasEfficiency = 0.15f; /// - /// Based on co2 percentage, slowly moves between - /// 0 and 1. We use it to calc the powerloss_inhibitor + /// Based on co2 percentage, slowly moves between 0 and 1. We use it to calc the powerloss_inhibitor /// [ViewVariables(VVAccess.ReadOnly)] public float PowerlossDynamicScaling; /// - /// Affects the amount of damage and minimum point - /// at which the sm takes heat damage + /// Affects the amount of damage and minimum point at which the sm takes heat damage /// [ViewVariables(VVAccess.ReadOnly)] public float DynamicHeatResistance = 1; /// - /// Multiplier on damage the core takes from absorbing hot gas - /// Default is ~1/350 + /// Multiplier on damage the core takes from absorbing hot gas. + /// Default is ~1/350 /// [ViewVariables(VVAccess.ReadOnly)] public float MoleHeatPenalty = 0.00286f; /// - /// Inverse of MoleHeatPenalty + /// Inverse of MoleHeatPenalty /// [ViewVariables(VVAccess.ReadOnly)] public float MoleHeatThreshold = 350f; /// - /// Multiplier on power generated by nuclear reactions + /// Multiplier on power generated by nuclear reactions /// [ViewVariables(VVAccess.ReadOnly)] [DataField("reactionpowerModifier")] public float ReactionPowerModifier = 0.55f; /// - /// Acts as a multiplier on the amount that nuclear reactions increase the supermatter core temperature + /// Acts as a multiplier on the amount that nuclear reactions increase the supermatter core temperature /// [ViewVariables(VVAccess.ReadWrite)] [DataField("thermalreleaseModifier")] public float ThermalReleaseModifier = 0.2f; /// - /// Multiplier on how much plasma is released during supermatter reactions - /// Default is ~1/750 + /// Multiplier on how much plasma is released during supermatter reactions + /// Default is ~1/750 /// [ViewVariables(VVAccess.ReadOnly)] [DataField("plasmareleaseModifier")] public float PlasmaReleaseModifier = 0.001333f; /// - /// Multiplier on how much oxygen is released during supermatter reactions. - /// Default is ~1/325 + /// Multiplier on how much oxygen is released during supermatter reactions. + /// Default is ~1/325 /// [ViewVariables(VVAccess.ReadOnly)] [DataField("oxygenreleaseModifier")] public float OxygenReleaseEfficiencyModifier = 0.0031f; - #endregion SM Calculation - - #region SM Timer + #endregion - /// - /// The point at which we should start sending messeges - /// about the damage to the engi channels. - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("WarningPoint")] - public float WarningPoint = 50; + #region Timing /// - /// The point at which we start sending messages to the common channel - /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("emergencyPoint")] - public float EmergencyPoint = 500; - - /// - /// we yell if over 50 damage every YellTimer Seconds + /// We yell if over 50 damage every YellTimer Seconds /// [ViewVariables(VVAccess.ReadWrite)] public float YellTimer = 60f; /// - /// set to YellTimer at first so it doesnt yell a minute after being hit + /// Set to YellTimer at first so it doesnt yell a minute after being hit /// [ViewVariables(VVAccess.ReadOnly)] public float YellAccumulator = 60f; @@ -218,132 +188,136 @@ public sealed partial class SupermatterComponent : Component [ViewVariables(VVAccess.ReadWrite)] public float ZapTimer = 10f; - #endregion SM Timer + #endregion + + #region Thresholds - #region SM Threshold + /// + /// The amount of heat we apply scaled + /// + [ViewVariables(VVAccess.ReadWrite)] + public float HeatThreshold = 2500f; /// - /// Higher == Higher percentage of inhibitor gas needed - /// before the charge inertia chain reaction effect starts. + /// Higher == Higher percentage of inhibitor gas needed + /// before the charge inertia chain reaction effect starts. /// [ViewVariables(VVAccess.ReadOnly)] [DataField("powerlossinhibitiongasThreshold")] public float PowerlossInhibitionGasThreshold = 0.20f; /// - /// Higher == More moles of the gas are needed before the charge - /// inertia chain reaction effect starts. - /// Scales powerloss inhibition down until this amount of moles is reached + /// Higher == More moles of the gas are needed before the charge inertia chain reaction effect starts. + /// Scales powerloss inhibition down until this amount of moles is reached /// [ViewVariables(VVAccess.ReadOnly)] [DataField("powerlossinhibitionmoleThreshold")] public float PowerlossInhibitionMoleThreshold = 20f; /// - /// bonus powerloss inhibition boost if this amount of moles is reached + /// Bonus powerloss inhibition boost if this amount of moles is reached /// [ViewVariables(VVAccess.ReadOnly)] [DataField("powerlossinhibitionmoleboostThreshold")] public float PowerlossInhibitionMoleBoostThreshold = 500f; /// - /// Above this value we can get lord singulo and independent mol damage, - /// below it we can heal damage + /// Above this value we can get lord singulo and independent mol damage, below it we can heal damage /// [ViewVariables(VVAccess.ReadOnly)] [DataField("molepenaltyThreshold")] public float MolePenaltyThreshold = 900f; /// - /// more moles of gases are harder to heat than fewer, - /// so let's scale heat damage around them + /// More moles of gases are harder to heat than fewer, so let's scale heat damage around them /// [ViewVariables(VVAccess.ReadOnly)] [DataField("moleheatpenaltyThreshold")] public float MoleHeatPenaltyThreshold; /// - /// The cutoff on power properly doing damage, pulling shit around, - /// and delamming into a tesla. Low chance of pyro anomalies, +2 bolts of electricity + /// The cutoff on power properly doing damage, pulling shit around, + /// and delamming into a tesla. Low chance of pyro anomalies, +2 bolts of electricity /// [ViewVariables(VVAccess.ReadOnly)] [DataField("powerPenaltyThreshold")] public float PowerPenaltyThreshold = 2500f; /// - /// Maximum safe operational temperature in degrees Celsius. Supermatter begins taking damage above this temperature. + /// Maximum safe operational temperature in degrees Celsius. Supermatter begins taking damage above this temperature. /// [ViewVariables(VVAccess.ReadOnly)] [DataField("heatpenaltyThreshold")] public float HeatPenaltyThreshold = 40f; + #endregion + + #region Damage + + /// + /// The amount of damage we have currently + /// + [ViewVariables(VVAccess.ReadWrite)] + public float Damage = 0f; + /// - /// The damage we had before this cycle. Used to limit the damage we can take each cycle, and for safe alert + /// The damage we had before this cycle. Used to limit the damage we can take each cycle, and for safe alert /// [ViewVariables(VVAccess.ReadWrite)] public float DamageArchived = 0f; /// - /// is multiplied by ExplosionPoint to cap - /// evironmental damage per cycle + /// Is multiplied by ExplosionPoint to cap evironmental damage per cycle /// [ViewVariables(VVAccess.ReadOnly)] public float DamageHardcap = 0.002f; /// - /// environmental damage is scaled by this + /// Environmental damage is scaled by this /// [ViewVariables(VVAccess.ReadOnly)] [DataField("damageincreaseMultiplier")] public float DamageIncreaseMultiplier = 0.25f; /// - /// if spaced sm wont take more than 2 damage per cycle + /// If spaced sm wont take more than 2 damage per cycle /// [ViewVariables(VVAccess.ReadOnly)] [DataField("maxspaceexposureDamage")] public float MaxSpaceExposureDamage = 2; - #endregion SM Threshold - - #region SM Delam + /// + /// The point at which we should start sending messeges about the damage. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("WarningPoint")] + public float WarningPoint = 50; - public bool DelamAnnounced = false; + /// + /// The point at which we start sending announcements. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("emergencyPoint")] + public float EmergencyPoint = 500; /// - /// The point at which we delamm + /// The point at which we begin delaminating. /// [ViewVariables(VVAccess.ReadOnly)] [DataField("explosionPoint")] public int DelaminationPoint = 900; - //Are we delamming? - [ViewVariables(VVAccess.ReadOnly)] - public bool Delamming = false; - - //Explosion totalIntensity value - [ViewVariables(VVAccess.ReadOnly)] - [DataField("totalIntensity")] - public float TotalIntensity = 50000f; - - //Explosion radius value - [ViewVariables(VVAccess.ReadOnly)] - [DataField("radius")] - public float Radius = 50f; + public bool DelamAnnounced = false; - /// - /// These would be what you would get at point blank, decreases with distance - /// [ViewVariables(VVAccess.ReadOnly)] - [DataField("detonationRads")] - public float DetonationRads = 200f; + public bool Delamming = false; - #endregion SM Delamm + #endregion - #region SM Gas + #region Gases /// - /// Is used to store gas + /// Is used to store gas /// [ViewVariables(VVAccess.ReadOnly)] [DataField("gasStorage")] @@ -354,7 +328,10 @@ public sealed partial class SupermatterComponent : Component {Gas.CarbonDioxide, 0f}, {Gas.Plasma, 0f}, {Gas.Tritium, 0f}, - {Gas.WaterVapor, 0f} + {Gas.WaterVapor, 0f}, + {Gas.Frezon, 0f}, + {Gas.Ammonia, 0f}, + {Gas.NitrousOxide, 0f}, }; /// @@ -374,7 +351,7 @@ public sealed partial class SupermatterComponent : Component [Gas.NitrousOxide] = (TransmitModifier: 0f, HeatPenalty: -5f, PowerMixRatio: -1f), }; - #endregion SM Gas + #endregion } public enum SupermatterSound : sbyte From 96dbb7bd7fb4e0b8b6ef191698d5a619a0683e3a Mon Sep 17 00:00:00 2001 From: whateverusername0 Date: Sat, 22 Jun 2024 20:31:14 +1000 Subject: [PATCH 20/38] please god --- .../Supermatter/Systems/SupermatterSystem.cs | 622 ++++++++++++++++++ .../Components/SupermatterComponent.cs | 395 +++++++++++ .../Components/SupermatterFoodComponent.cs | 9 + .../Components/SupermatterImmuneComponent.cs | 9 + Resources/Audio/Supermatter/calm.ogg | Bin 0 -> 172011 bytes Resources/Audio/Supermatter/delamming.ogg | Bin 0 -> 160153 bytes .../en-US/objectives/conditions/steal.ftl | 3 + .../Locale/en-US/supermatter/supermatter.ftl | 26 + .../Generation/Supermatter/supermatter.yml | 67 ++ .../Prototypes/Guidebook/engineering.yml | 6 + .../Prototypes/Objectives/objectiveGroups.yml | 1 + Resources/Prototypes/Objectives/traitor.yml | 12 + .../Guidebook/Engineering/Supermatter.xml | 65 ++ .../Supermatter/supermatter.rsi/meta.json | 21 + .../supermatter.rsi/supermatter.png | Bin 0 -> 28899 bytes .../supermatter_sliver.rsi/icon.png | Bin 0 -> 357 bytes .../supermatter_sliver.rsi/meta.json | 14 + 17 files changed, 1250 insertions(+) create mode 100644 Content.Server/Supermatter/Systems/SupermatterSystem.cs create mode 100644 Content.Shared/Supermatter/Components/SupermatterComponent.cs create mode 100644 Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs create mode 100644 Content.Shared/Supermatter/Components/SupermatterImmuneComponent.cs create mode 100644 Resources/Audio/Supermatter/calm.ogg create mode 100644 Resources/Audio/Supermatter/delamming.ogg create mode 100644 Resources/Locale/en-US/supermatter/supermatter.ftl create mode 100644 Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml create mode 100644 Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml create mode 100644 Resources/Textures/Supermatter/supermatter.rsi/meta.json create mode 100644 Resources/Textures/Supermatter/supermatter.rsi/supermatter.png create mode 100644 Resources/Textures/Supermatter/supermatter_sliver.rsi/icon.png create mode 100644 Resources/Textures/Supermatter/supermatter_sliver.rsi/meta.json diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs new file mode 100644 index 00000000000..80a54655060 --- /dev/null +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -0,0 +1,622 @@ +using Robust.Shared.Audio.Systems; +using Robust.Shared.Containers; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Events; +using Robust.Shared.Timing; +using Robust.Server.GameObjects; +using Content.Shared.Atmos; +using Content.Shared.Interaction; +using Content.Shared.Projectiles; +using Content.Shared.Tag; +using Content.Shared.Mobs.Components; +using Content.Shared.Radiation.Components; +using Content.Server.Audio; +using Content.Server.Atmos.EntitySystems; +using Content.Server.Chat.Systems; +using Content.Server.Explosion.EntitySystems; +using Content.Shared.Supermatter.Components; +using Content.Server.Lightning; +using Content.Server.AlertLevel; +using Content.Server.Station.Systems; +using System.Text; +using Content.Server.Kitchen.Components; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Server.DoAfter; +using Content.Server.Popups; +using System.Linq; + +namespace Content.Server.Supermatter.Systems +{ + public sealed class SupermatterSystem : EntitySystem + { + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly TagSystem _tag = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly ExplosionSystem _explosion = default!; + [Dependency] private readonly TransformSystem _xform = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly AmbientSoundSystem _ambient = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + [Dependency] private readonly LightningSystem _lightning = default!; + [Dependency] private readonly AlertLevelSystem _alert = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly PopupSystem _popup = default!; + + private DelamType _delamType = DelamType.Explosion; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + + SubscribeLocalEvent(OnCollideEvent); + SubscribeLocalEvent(OnHandInteract); + SubscribeLocalEvent(OnItemInteract); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnGetSliver); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + foreach (var sm in EntityManager.EntityQuery()) + { + if (!sm.Activated) + return; + + var uid = sm.Owner; + sm.UpdateAccumulator += frameTime; + + if (sm.UpdateAccumulator >= sm.UpdateTimer) + { + sm.UpdateAccumulator -= sm.UpdateTimer; + Cycle(uid, sm); + } + } + } + + public void Cycle(EntityUid uid, SupermatterComponent sm) + { + sm.ZapAccumulator++; + sm.YellAccumulator++; + + ProcessAtmos(uid, sm); + HandleDamage(uid, sm); + + if (sm.Damage >= sm.DelaminationPoint || sm.Delamming) + HandleDelamination(uid, sm); + + HandleSoundLoop(uid, sm); + + if (sm.ZapAccumulator >= sm.ZapTimer) + { + sm.ZapAccumulator -= sm.ZapTimer; + SupermatterZap(uid, sm); + } + + if (sm.YellAccumulator >= sm.YellTimer) + { + sm.YellAccumulator -= sm.YellTimer; + HandleAnnouncements(uid, sm); + } + } + + #region Processing + + /// + /// Handle power and radiation output depending on atmospheric things. + /// + private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) + { + var mix = _atmosphere.GetContainingMixture(uid, true, true); + + if (mix is not { }) + return; + + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; + + if (!(moles > 0f)) + return; + + var gases = sm.GasStorage; + var facts = sm.GasDataFields; + + //Lets get the proportions of the gasses in the mix for scaling stuff later + //They range between 0 and 1 + gases = gases.ToDictionary( + gas => gas.Key, + gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / moles, 0, 1) + ); + + //No less then zero, and no greater then one, we use this to do explosions and heat to power transfer. + var powerRatio = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].PowerMixRatio); + + // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. + var heatModifier = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].HeatPenalty); + + // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. + var transmissionBonus = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].TransmitModifier); + + var h2OBonus = 1 - gases[Gas.WaterVapor] * 0.25f; + + powerRatio = Math.Clamp(powerRatio, 0, 1); + heatModifier = Math.Max(heatModifier, 0.5f); + transmissionBonus *= h2OBonus; + + // Effects the damage heat does to the crystal + sm.DynamicHeatResistance = 1f; + + // more moles of gases are harder to heat than fewer, + // so let's scale heat damage around them + sm.MoleHeatPenaltyThreshold = (float) Math.Max(moles * sm.MoleHeatPenalty, 0.25); + + // Ramps up or down in increments of 0.02 up to the proportion of co2 + // Given infinite time, powerloss_dynamic_scaling = co2comp + // Some value between 0 and 1 + if (moles > sm.PowerlossInhibitionMoleThreshold && gases[Gas.CarbonDioxide] > sm.PowerlossInhibitionGasThreshold) + { + var co2powerloss = Math.Clamp(gases[Gas.CarbonDioxide] - sm.PowerlossDynamicScaling, -0.02f, 0.02f); + sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling + co2powerloss, 0f, 1f); + } + else + { + sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling - 0.05f, 0f, 1f); + } + + // Ranges from 0 to 1(1-(value between 0 and 1 * ranges from 1 to 1.5(mol / 500))) + // We take the mol count, and scale it to be our inhibitor + var powerlossInhibitor = + Math.Clamp( + 1 - sm.PowerlossDynamicScaling * + Math.Clamp(moles / sm.PowerlossInhibitionMoleBoostThreshold, 1f, 1.5f), + 0f, 1f); + + if (sm.MatterPower != 0) //We base our removed power off one 10th of the matter_power. + { + var removedMatter = Math.Max(sm.MatterPower / sm.MatterPowerConversion, 40); + //Adds at least 40 power + sm.Power = Math.Max(sm.Power + removedMatter, 0); + //Removes at least 40 matter power + sm.MatterPower = Math.Max(sm.MatterPower - removedMatter, 0); + } + + //based on gas mix, makes the power more based on heat or less effected by heat + var tempFactor = powerRatio > 0.8 ? 50f : 30f; + + //if there is more pluox and n2 then anything else, we receive no power increase from heat + sm.Power = Math.Max(absorbedGas.Temperature * tempFactor / Atmospherics.T0C * powerRatio + sm.Power, 0); + + //Radiate stuff + if (TryComp(uid, out var rad)) + rad.Intensity = sm.Power * Math.Max(0, 1f + transmissionBonus / 10f) * 0.003f; + + //Power * 0.55 * a value between 1 and 0.8 + var energy = sm.Power * sm.ReactionPowerModifier; + + // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock + // is on. An increase of 4*C @ 25% efficiency here results in an increase of 1*C / (#tilesincore) overall. + // Power * 0.55 * (some value between 1.5 and 23) / 5 + absorbedGas.Temperature += energy * heatModifier * sm.ThermalReleaseModifier; + absorbedGas.Temperature = Math.Max(0, + Math.Min(absorbedGas.Temperature, sm.HeatThreshold * heatModifier)); + + // Release the waste + absorbedGas.AdjustMoles(Gas.Plasma, Math.Max(energy * heatModifier * sm.PlasmaReleaseModifier, 0f)); + absorbedGas.AdjustMoles(Gas.Oxygen, Math.Max((energy + absorbedGas.Temperature * heatModifier - Atmospherics.T0C) * sm.OxygenReleaseEfficiencyModifier, 0f)); + + _atmosphere.Merge(mix, absorbedGas); + + var powerReduction = (float) Math.Pow(sm.Power / 500, 3); + + // After this point power is lowered + // This wraps around to the begining of the function + sm.Power = Math.Max(sm.Power - Math.Min(powerReduction * powerlossInhibitor, sm.Power * 0.83f * powerlossInhibitor), 0f); + } + + /// + /// Shoot lightning bolts depensing on accumulated power. + /// + private void SupermatterZap(EntityUid uid, SupermatterComponent sm) + { + // Divide power by it's threshold to get a value from 0 to 1, then multiply by the amount of possible lightnings + // Makes it pretty obvious that if SM is shooting out red lightnings something is wrong. + // And if it shoots too weak lightnings it means it's underfed :godo: + var zapPower = sm.Power / sm.PowerPenaltyThreshold * sm.LightningPrototypes.Length; + var zapPowerNorm = (int) Math.Clamp(zapPower, 0, sm.LightningPrototypes.Length - 1); + _lightning.ShootRandomLightnings(uid, 3.5f, sm.Power > sm.PowerPenaltyThreshold ? 3 : 1, sm.LightningPrototypes[zapPowerNorm]); + } + + /// + /// Handles environmental damage. + /// + private void HandleDamage(EntityUid uid, SupermatterComponent sm) + { + var xform = Transform(uid); + var indices = _xform.GetGridOrMapTilePosition(uid, xform); + + sm.DamageArchived = sm.Damage; + + var mix = _atmosphere.GetContainingMixture(uid, true, true); + + // We're in space or there is no gas to process + if (!xform.GridUid.HasValue || mix is not { } || mix.TotalMoles == 0f) + { + sm.Damage += Math.Max(sm.Power / 1000 * sm.DamageIncreaseMultiplier, 0.1f); + return; + } + + // Absorbed gas from surrounding area + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; + + var totalDamage = 0f; + + var tempThreshold = Atmospherics.T0C + sm.HeatPenaltyThreshold; + + // Temperature start to have a positive effect on damage after 350 + var tempDamage = Math.Max(Math.Clamp(moles / 200f, .5f, 1f) * absorbedGas.Temperature - tempThreshold * sm.DynamicHeatResistance, 0f) * sm.MoleHeatThreshold / 150f * sm.DamageIncreaseMultiplier; + totalDamage += tempDamage; + + // Power only starts affecting damage when it is above 5000 + var powerDamage = Math.Max(sm.Power - sm.PowerPenaltyThreshold, 0f) / 500f * sm.DamageIncreaseMultiplier; + totalDamage += powerDamage; + + // Molar count only starts affecting damage when it is above 1800 + var moleDamage = Math.Max(moles - sm.MolePenaltyThreshold, 0) / 80 * sm.DamageIncreaseMultiplier; + totalDamage += moleDamage; + + // Healing damage + if (moles < sm.MolePenaltyThreshold) + { + // left there a very small float value so that it doesn't eventually divide by 0. + var healHeatDamage = Math.Min(absorbedGas.Temperature - tempThreshold, 0.001f) / 150; + totalDamage += healHeatDamage; + } + + // Check for space tiles next to SM + // TODO: change moles out for checking if adjacent tiles exist + var adjacentMixes = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); + foreach (var ind in adjacentMixes) + { + if (ind.TotalMoles != 0) + continue; + + var integrity = GetIntegrity(sm); + + var factor = integrity switch + { + < 10 => 0.0005f, + < 25 => 0.0009f, + < 45 => 0.005f, + < 75 => 0.002f, + _ => 0f + }; + + totalDamage += Math.Clamp(sm.Power * factor * sm.DamageIncreaseMultiplier, 0, sm.MaxSpaceExposureDamage); + + break; + } + + var damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DelaminationPoint, totalDamage); + + // prevent it from going negative + sm.Damage = Math.Clamp(damage, 0, float.PositiveInfinity); + } + + /// + /// Handles announcements. + /// + private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) + { + var message = string.Empty; + var global = false; + + var integrity = GetIntegrity(sm).ToString("0.00"); + + // Special cases + if (sm.Damage < sm.DelaminationPoint && sm.Delamming) + { + message = Loc.GetString("supermatter-delam-cancel", ("integrity", integrity)); + sm.DelamAnnounced = false; + global = true; + } + if (sm.Delamming && !sm.DelamAnnounced) + { + var sb = new StringBuilder(); + var loc = string.Empty; + var alertLevel = "Yellow"; + + switch (_delamType) + { + case DelamType.Explosion: + default: + loc = "supermatter-delam-explosion"; + break; + + case DelamType.Singulo: + loc = "supermatter-delam-overmass"; + alertLevel = "Delta"; + break; + + case DelamType.Tesla: + loc = "supermatter-delam-tesla"; + alertLevel = "Delta"; + break; + + case DelamType.Cascade: + loc = "supermatter-delam-cascade"; + alertLevel = "Delta"; + break; + } + + var station = _station.GetOwningStation(uid); + if (station != null) + _alert.SetLevel((EntityUid) station, alertLevel, true, true, true, false); + + sb.AppendLine(Loc.GetString(loc)); + sb.AppendLine(Loc.GetString("supermatter-seconds-before-delam", ("seconds", sm.DelamTimer))); + + message = sb.ToString(); + global = true; + sm.DelamAnnounced = true; + + SupermatterAnnouncement(uid, message, global); + return; + } + + // We are not taking consistent damage. Engis not needed. + if (sm.Damage <= sm.DamageArchived) + return; + + if (sm.Damage >= sm.WarningPoint) + { + message = Loc.GetString("supermatter-warning", ("integrity", integrity)); + if (sm.Damage >= sm.EmergencyPoint) + { + message = Loc.GetString("supermatter-emergency", ("integrity", integrity)); + global = true; + } + } + SupermatterAnnouncement(uid, message, global); + } + + /// + /// Help the SM announce something. + /// + /// If true, does the station announcement. + /// If true, sends the announcement from Central Command. + public void SupermatterAnnouncement(EntityUid uid, string message, bool global = false, string? customSender = null) + { + if (global) + { + var sender = customSender != null ? customSender : Loc.GetString("supermatter-announcer"); + _chat.DispatchStationAnnouncement(uid, message, sender, colorOverride: Color.Yellow); + return; + } + _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Speak, hideChat: false, checkRadioPrefix: true); + } + + /// + /// Returns the integrity rounded to hundreds, e.g. 100.00% + /// + public float GetIntegrity(SupermatterComponent sm) + { + var integrity = sm.Damage / sm.DelaminationPoint; + integrity = (float) Math.Round(100 - integrity * 100, 2); + integrity = integrity < 0 ? 0 : integrity; + return integrity; + } + + /// + /// Decide on how to delaminate. + /// + public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) + { + var mix = _atmosphere.GetContainingMixture(uid, true, true); + + if (mix is { }) + { + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; + + if (moles >= sm.MolePenaltyThreshold) + return DelamType.Singulo; + } + if (sm.Power >= sm.PowerPenaltyThreshold) + return DelamType.Tesla; + + // TODO: add resonance cascade when there's crazy conditions or a destabilizing crystal + + return DelamType.Explosion; + } + + /// + /// Handle the end of the station. + /// + private void HandleDelamination(EntityUid uid, SupermatterComponent sm) + { + var xform = Transform(uid); + + _delamType = ChooseDelamType(uid, sm); + + if (!sm.Delamming) + { + sm.Delamming = true; + HandleAnnouncements(uid, sm); + } + if (sm.Damage < sm.DelaminationPoint && sm.Delamming) + { + sm.Delamming = false; + HandleAnnouncements(uid, sm); + } + + sm.DelamTimerAccumulator++; + + if (sm.DelamTimerAccumulator < sm.DelamTimer) + return; + + switch (_delamType) + { + case DelamType.Explosion: + default: + _explosion.TriggerExplosive(uid); + break; + + case DelamType.Singulo: + Spawn(sm.SingularityPrototypeId, xform.Coordinates); + break; + + case DelamType.Tesla: + Spawn(sm.TeslaPrototypeId, xform.Coordinates); + break; + + case DelamType.Cascade: + Spawn(sm.SupermatterKudzuPrototypeId, xform.Coordinates); + break; + } + } + + private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) + { + var isAggressive = sm.Damage > sm.WarningPoint; + var isDelamming = sm.Damage > sm.DelaminationPoint; + + if (!isAggressive && !isDelamming) + { + sm.AudioStream = _audio.Stop(sm.AudioStream); + return; + } + + var smSound = isDelamming ? SupermatterSound.Delam : SupermatterSound.Aggressive; + + if (sm.SmSound == smSound) + return; + + sm.AudioStream = _audio.Stop(sm.AudioStream); + sm.SmSound = smSound; + } + + #endregion + + #region Event Handlers + + private void OnMapInit(EntityUid uid, SupermatterComponent sm, MapInitEvent args) + { + // Set the Sound + _ambient.SetAmbience(uid, true); + + //Add Air to the initialized SM in the Map so it doesnt delam on default + var mix = _atmosphere.GetContainingMixture(uid, true, true); + mix?.AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); + mix?.AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); + } + + private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCollideEvent args) + { + if (!sm.Activated) + sm.Activated = true; + + var target = args.OtherEntity; + if (args.OtherBody.BodyType == BodyType.Static + || HasComp(target) + || _container.IsEntityInContainer(uid)) + return; + + if (!HasComp(target)) + { + EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); + _audio.PlayPvs(sm.DustSound, uid); + } + + EntityManager.QueueDeleteEntity(target); + + if (TryComp(target, out var food)) + sm.Power += food.Energy; + else if (TryComp(target, out var projectile)) + sm.Power += (float) projectile.Damage.GetTotal(); + else + sm.Power++; + + sm.MatterPower += HasComp(target) ? 200 : 0; + } + + private void OnHandInteract(EntityUid uid, SupermatterComponent sm, ref InteractHandEvent args) + { + if (!sm.Activated) + sm.Activated = true; + + var target = args.User; + + if (HasComp(target)) + return; + + sm.MatterPower += 200; + + EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); + _audio.PlayPvs(sm.DustSound, uid); + EntityManager.QueueDeleteEntity(target); + } + + private void OnItemInteract(EntityUid uid, SupermatterComponent sm, ref InteractUsingEvent args) + { + if (!sm.Activated) + sm.Activated = true; + + if (sm.SliverRemoved) + return; + + if (!HasComp(args.Used)) + return; + + var dae = new DoAfterArgs(EntityManager, args.User, 30f, new SupermatterDoAfterEvent(), args.Target) + { + BreakOnDamage = true, + BreakOnHandChange = false, + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnWeightlessMove = false, + NeedHand = true, + RequireCanInteract = true, + }; + + _doAfter.TryStartDoAfter(dae); + _popup.PopupClient(Loc.GetString("supermatter-tamper-begin"), uid, args.User); + } + + private void OnGetSliver(EntityUid uid, SupermatterComponent sm, ref SupermatterDoAfterEvent args) + { + if (args.Cancelled) + return; + + // your criminal actions will not go unnoticed + sm.Damage += sm.DelaminationPoint / 10; + + var integrity = GetIntegrity(sm).ToString("0.00"); + SupermatterAnnouncement(uid, Loc.GetString("supermatter-announcement-cc-tamper", ("integrity", integrity)), true, "Central Command"); + + Spawn(sm.SliverPrototypeId, _transform.GetMapCoordinates(args.User)); + _popup.PopupClient(Loc.GetString("supermatter-tamper-end"), uid, args.User); + + sm.DelamTimer /= 2; + } + + private void OnExamine(EntityUid uid, SupermatterComponent sm, ref ExaminedEvent args) + { + // get all close and personal to it + if (args.IsInDetailsRange) + { + args.PushMarkup(Loc.GetString("supermatter-examine-integrity", ("integrity", GetIntegrity(sm).ToString("0.00")))); + } + } + + #endregion + } +} diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs new file mode 100644 index 00000000000..e37b7ec8af4 --- /dev/null +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -0,0 +1,395 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Audio; +using Content.Shared.Atmos; +using Content.Shared.Whitelist; +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.Supermatter.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class SupermatterComponent : Component +{ + #region Base + + /// + /// The SM will only cycle if activated. + /// + [DataField("activated")] + [ViewVariables(VVAccess.ReadWrite)] + public bool Activated = false; + + [DataField("supermatterSliverPrototype")] + public string SliverPrototypeId = "SupermatterSliver"; + + /// + /// Affects delamination timer. If removed - delamination timer is divided by 2. + /// + [DataField("sliverRemoved")] + [ViewVariables(VVAccess.ReadWrite)] + public bool SliverRemoved = false; + + [DataField("whitelist")] + public EntityWhitelist Whitelist = new(); + public string IdTag = "EmitterBolt"; + + public string[] LightningPrototypes = + { + "Lightning", + "ChargedLightning", + "SuperchargedLightning", + "HyperchargedLightning" + }; + + [DataField("singularitySpawnPrototype")] + public string SingularityPrototypeId = "Singularity"; + + [DataField("teslaSpawnPrototype")] + public string TeslaPrototypeId = "TeslaEnergyBall"; + + [DataField("supermatterKudzuSpawnPrototype")] + public string SupermatterKudzuPrototypeId = "SupermatterKudzu"; + + /// + /// What spawns in the place of an unfortunate entity that got removed by the SM. + /// + [DataField("collisionResultPrototype")] + public string CollisionResultPrototypeId = "Ash"; + + /// + /// Current audiostream. + /// + public EntityUid? AudioStream; + public SupermatterSound? SmSound; + + [DataField("dustSound")] + public SoundSpecifier DustSound = new SoundPathSpecifier("/Audio/Effects/Grenades/Supermatter/supermatter_start.ogg"); + + [DataField("delamSound")] + public SoundSpecifier DelamSound = new SoundPathSpecifier("/Audio/Supermatter/delamming.ogg"); + + #endregion + + #region Processing + + [ViewVariables(VVAccess.ReadWrite)] + public float Power; + + [ViewVariables(VVAccess.ReadWrite)] + public float MatterPower; + + [ViewVariables(VVAccess.ReadWrite)] + public float MatterPowerConversion = 10f; + /// + /// The portion of the gasmix we're on + /// + [ViewVariables(VVAccess.ReadWrite)] + public float GasEfficiency = 0.15f; + + /// + /// Based on co2 percentage, slowly moves between 0 and 1. We use it to calc the powerloss_inhibitor + /// + [ViewVariables(VVAccess.ReadOnly)] + public float PowerlossDynamicScaling; + + /// + /// Affects the amount of damage and minimum point at which the sm takes heat damage + /// + [ViewVariables(VVAccess.ReadOnly)] + public float DynamicHeatResistance = 1; + + /// + /// Multiplier on damage the core takes from absorbing hot gas. + /// Default is ~1/350 + /// + [ViewVariables(VVAccess.ReadOnly)] + public float MoleHeatPenalty = 0.00286f; + + /// + /// Inverse of MoleHeatPenalty + /// + [ViewVariables(VVAccess.ReadOnly)] + public float MoleHeatThreshold = 350f; + + /// + /// Multiplier on power generated by nuclear reactions + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("reactionpowerModifier")] + public float ReactionPowerModifier = 0.55f; + + /// + /// Acts as a multiplier on the amount that nuclear reactions increase the supermatter core temperature + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("thermalreleaseModifier")] + public float ThermalReleaseModifier = 0.2f; + + /// + /// Multiplier on how much plasma is released during supermatter reactions + /// Default is ~1/750 + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("plasmareleaseModifier")] + public float PlasmaReleaseModifier = 0.001333f; + + /// + /// Multiplier on how much oxygen is released during supermatter reactions. + /// Default is ~1/325 + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("oxygenreleaseModifier")] + public float OxygenReleaseEfficiencyModifier = 0.0031f; + + #endregion + + #region Timing + + /// + /// We yell if over 50 damage every YellTimer Seconds + /// + [ViewVariables(VVAccess.ReadWrite)] + public float YellTimer = 60f; + + /// + /// Set to YellTimer at first so it doesnt yell a minute after being hit + /// + [ViewVariables(VVAccess.ReadOnly)] + public float YellAccumulator = 60f; + + /// + /// Timer for delam + /// + [ViewVariables(VVAccess.ReadOnly)] + public float DelamTimerAccumulator; + + /// + /// Time until delam + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("delamTimer")] + public float DelamTimer = 120f; + + /// + /// The message timer + /// + [ViewVariables(VVAccess.ReadWrite)] + public float SpeakAccumulator = 60f; + + [ViewVariables(VVAccess.ReadOnly)] + public float UpdateAccumulator = 0f; + + [ViewVariables(VVAccess.ReadWrite)] + public float UpdateTimer = 1f; + + [ViewVariables(VVAccess.ReadOnly)] + public float ZapAccumulator = 0f; + + [ViewVariables(VVAccess.ReadWrite)] + public float ZapTimer = 10f; + + #endregion + + #region Thresholds + + /// + /// The amount of heat we apply scaled + /// + [ViewVariables(VVAccess.ReadWrite)] + public float HeatThreshold = 2500f; + + /// + /// Higher == Higher percentage of inhibitor gas needed + /// before the charge inertia chain reaction effect starts. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerlossinhibitiongasThreshold")] + public float PowerlossInhibitionGasThreshold = 0.20f; + + /// + /// Higher == More moles of the gas are needed before the charge inertia chain reaction effect starts. + /// Scales powerloss inhibition down until this amount of moles is reached + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerlossinhibitionmoleThreshold")] + public float PowerlossInhibitionMoleThreshold = 20f; + + /// + /// Bonus powerloss inhibition boost if this amount of moles is reached + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerlossinhibitionmoleboostThreshold")] + public float PowerlossInhibitionMoleBoostThreshold = 500f; + + /// + /// Above this value we can get lord singulo and independent mol damage, below it we can heal damage + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("molepenaltyThreshold")] + public float MolePenaltyThreshold = 900f; + + /// + /// More moles of gases are harder to heat than fewer, so let's scale heat damage around them + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("moleheatpenaltyThreshold")] + public float MoleHeatPenaltyThreshold; + + /// + /// The cutoff on power properly doing damage, pulling shit around, + /// and delamming into a tesla. Low chance of pyro anomalies, +2 bolts of electricity + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("powerPenaltyThreshold")] + public float PowerPenaltyThreshold = 2500f; + + /// + /// Maximum safe operational temperature in degrees Celsius. Supermatter begins taking damage above this temperature. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("heatpenaltyThreshold")] + public float HeatPenaltyThreshold = 40f; + + #endregion + + #region Damage + + /// + /// The amount of damage we have currently + /// + [ViewVariables(VVAccess.ReadWrite)] + public float Damage = 0f; + + /// + /// The damage we had before this cycle. Used to limit the damage we can take each cycle, and for safe alert + /// + [ViewVariables(VVAccess.ReadWrite)] + public float DamageArchived = 0f; + + /// + /// Is multiplied by ExplosionPoint to cap evironmental damage per cycle + /// + [ViewVariables(VVAccess.ReadOnly)] + public float DamageHardcap = 0.002f; + + /// + /// Environmental damage is scaled by this + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("damageincreaseMultiplier")] + public float DamageIncreaseMultiplier = 0.25f; + + /// + /// If spaced sm wont take more than 2 damage per cycle + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("maxspaceexposureDamage")] + public float MaxSpaceExposureDamage = 2; + + /// + /// The point at which we should start sending messeges about the damage. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("WarningPoint")] + public float WarningPoint = 50; + + /// + /// The point at which we start sending announcements. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("emergencyPoint")] + public float EmergencyPoint = 500; + + /// + /// The point at which we begin delaminating. + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("explosionPoint")] + public int DelaminationPoint = 900; + + public bool DelamAnnounced = false; + + [ViewVariables(VVAccess.ReadOnly)] + public bool Delamming = false; + + #endregion + + #region Gases + + /// + /// Is used to store gas + /// + [ViewVariables(VVAccess.ReadOnly)] + [DataField("gasStorage")] + public Dictionary GasStorage = new Dictionary() + { + {Gas.Oxygen, 0f}, + {Gas.Nitrogen, 0f}, + {Gas.CarbonDioxide, 0f}, + {Gas.Plasma, 0f}, + {Gas.Tritium, 0f}, + {Gas.WaterVapor, 0f}, + {Gas.Frezon, 0f}, + {Gas.Ammonia, 0f}, + {Gas.NitrousOxide, 0f}, + }; + + /// + /// Stores each gas facts + /// + // todo: replace this with serializable GasFact array something + public readonly Dictionary GasDataFields = new() + { + [Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f), + [Gas.Nitrogen] = (TransmitModifier: 0f, HeatPenalty: -1.5f, PowerMixRatio: -1f), + [Gas.CarbonDioxide] = (TransmitModifier: 0f, HeatPenalty: 0.1f, PowerMixRatio: 1f), + [Gas.Plasma] = (TransmitModifier: 4f, HeatPenalty: 15f, PowerMixRatio: 1f), + [Gas.Tritium] = (TransmitModifier: 30f, HeatPenalty: 10f, PowerMixRatio: 1f), + [Gas.WaterVapor] = (TransmitModifier: 2f, HeatPenalty: 12f, PowerMixRatio: 1f), + [Gas.Frezon] = (TransmitModifier: 3f, HeatPenalty: -10f, PowerMixRatio: -1f), + [Gas.Ammonia] = (TransmitModifier: 0f, HeatPenalty: .5f, PowerMixRatio: 1f), + [Gas.NitrousOxide] = (TransmitModifier: 0f, HeatPenalty: -5f, PowerMixRatio: -1f), + }; + + #endregion +} + +public enum SupermatterSound : sbyte +{ + Aggressive = 0, + Delam = 1 +} + +public enum DelamType : sbyte +{ + Explosion = 0, + Singulo = 1, + Tesla = 2, + Cascade = 3 +} + +[Serializable, DataDefinition] +public sealed partial class GasFact +{ + [DataField("transmitModifier")] + public float TransmitModifier; + + [DataField("heatPenalty")] + public float HeatPenalty; + + [DataField("powerMixRatio")] + public float PowerMixRatio; + + public GasFact(float transmitModifier, float heatPenalty, float powerMixRatio) + { + TransmitModifier = transmitModifier; + HeatPenalty = heatPenalty; + PowerMixRatio = powerMixRatio; + } +} + +[Serializable, NetSerializable] +public sealed partial class SupermatterDoAfterEvent : SimpleDoAfterEvent +{ + +} diff --git a/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs b/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs new file mode 100644 index 00000000000..16ee486bfc0 --- /dev/null +++ b/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Shared.Supermatter.Components; + +[RegisterComponent] +public sealed partial class SupermatterFoodComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + [DataField("energy")] + public int Energy { get; set; } = 1; +} diff --git a/Content.Shared/Supermatter/Components/SupermatterImmuneComponent.cs b/Content.Shared/Supermatter/Components/SupermatterImmuneComponent.cs new file mode 100644 index 00000000000..b517115eca7 --- /dev/null +++ b/Content.Shared/Supermatter/Components/SupermatterImmuneComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameStates; + +namespace Content.Shared.Supermatter.Components; + +[RegisterComponent, NetworkedComponent] +public sealed partial class SupermatterImmuneComponent : Component +{ + +} diff --git a/Resources/Audio/Supermatter/calm.ogg b/Resources/Audio/Supermatter/calm.ogg new file mode 100644 index 0000000000000000000000000000000000000000..dc3102e57866eb386ca4f7977b5e9f3696db1a98 GIT binary patch literal 172011 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 EdSVilTuz2 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

)P%>x$;)u7(ofnE>YR_`jm~glc-b8) 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 literal 0 HcmV?d00001 diff --git a/Resources/Locale/en-US/objectives/conditions/steal.ftl b/Resources/Locale/en-US/objectives/conditions/steal.ftl index 00c8e0fdaf9..8547a01db23 100644 --- a/Resources/Locale/en-US/objectives/conditions/steal.ftl +++ b/Resources/Locale/en-US/objectives/conditions/steal.ftl @@ -9,3 +9,6 @@ objective-condition-steal-Ian = head of personnel's corgi objective-condition-thief-description = The {$itemName} would be a great addition to my collection! objective-condition-thief-animal-description = The {$itemName} would be a great addition to my collection! Most importantly, alive. objective-condition-thief-multiply-description = I need to get {$count} {MAKEPLURAL($itemName)} and take them with me. + +objective-condition-steal-smsliver-title = Cut off a sliver from the supermatter crystal. +objective-condition-steal-smsliver-description = Use any cutting tool that comes in handy. A scalpel is more recommended. Also, don't die of radiation poisoning. \ No newline at end of file diff --git a/Resources/Locale/en-US/supermatter/supermatter.ftl b/Resources/Locale/en-US/supermatter/supermatter.ftl new file mode 100644 index 00000000000..5809181f86d --- /dev/null +++ b/Resources/Locale/en-US/supermatter/supermatter.ftl @@ -0,0 +1,26 @@ +supermatter-announcer = Automatic Supermatter Engine +supermatter-examine-integrity = + It's integrity is [color=yellow]{$integrity}%[/color]. +supermatter-warning = + Warning! Crystal hyperstructure integrity faltering! Integrity: {$integrity}%. +supermatter-emergency = + DANGER! Crystal hyperstructure integrity reaching critical levels! Integrity: {$integrity}%. +supermatter-delam-explosion = + CRYSTAL DELAMINATION IMMINENT! The crystal has reached critical integrity failure! Emergency causality destabilization field has been engaged. +supermatter-delam-overmass = + CRYSTAL DELAMINATION IMMINENT! Crystal hyperstructure integrity has reached critical mass failure! Singularity formation imminent! +supermatter-delam-tesla = + CRYSTAL DELAMINATION IMMINENT! Crystal hyperstructure integrity has reached critical power surge failure! Energy ball formation imminent! +supermatter-delam-cascade = + CRYSTAL DELAMINATION IMMINENT! Harmonic frequency limits exceeded, casualty destabilization field could not be engaged! +supermatter-delam-cancel = + Crystalline hyperstructure returning to safe operating parameters. Failsafe has been Disengaged. Integrity: {$integrity}%. +supermatter-seconds-before-delam = + Estimated time before delamination: {$seconds} seconds. +supermatter-tamper-begin = + You begin carefully cutting a piece off the supermatter crystal... +supermatter-tamper-end = + You feel the power of a thousand suns laying on your palms. Or is it all the radiation? +supermatter-announcement-cc-tamper = + Our automatic casualty system has detected that the supermatter crystal structural integrity was compromised by an external force. + Engineering department, report to the supermatter engine immediately. \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml new file mode 100644 index 00000000000..4511f86f179 --- /dev/null +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml @@ -0,0 +1,67 @@ +- type: entity + id: Supermatter + name: supermatter crystal + description: A strangely translucent and iridescent crystal. + placement: + mode: SnapgridCenter + components: + - type: Supermatter + whitelist: + tags: + - EmitterBolt + components: + - Body + - Item + - type: RadiationSource + - type: AmbientSound + range: 5 + volume: 0 + sound: + path: /Audio/Supermatter/calm.ogg + - type: Physics + - type: Speech + speechSounds: Pai + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.25,0.25,0.25" + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + - Opaque + layer: + - MidImpassable + - HighImpassable + - BulletImpassable + - InteractImpassable + - type: Transform + anchored: true + noRot: true + - type: CollisionWake + enabled: false + - type: Clickable + - type: InteractionOutline + - type: Sprite + drawdepth: WallMountedItems + sprite: Supermatter/supermatter.rsi + state: supermatter + - type: Icon + sprite: Supermatter/supermatter.rsi + state: supermatter + - type: PointLight + enabled: true + radius: 10 + energy: 5 + color: "#ffe000" + - type: Explosive + explosionType: Supermatter + maxIntensity: 10000 + intensitySlope: 5 + totalIntensity: 10000 + - type: GuideHelp + guides: [ Supermatter, Power ] \ No newline at end of file diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml index 21d17f02279..ef502d8ab4c 100644 --- a/Resources/Prototypes/Guidebook/engineering.yml +++ b/Resources/Prototypes/Guidebook/engineering.yml @@ -66,6 +66,7 @@ - Singularity - TEG - RTG + - Supermatter - type: guideEntry id: AME @@ -91,3 +92,8 @@ id: PortableGenerator name: guide-entry-portable-generator text: "/ServerInfo/Guidebook/Engineering/PortableGenerator.xml" + +- type: guideEntry + id: Supermatter + name: guide-entry-sm + text: "/ServerInfo/Guidebook/Engineering/Supermatter.xml" \ No newline at end of file diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index fba2c4cc172..dc553187dde 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -26,6 +26,7 @@ LOLuckyBillStealObjective: 0.5 # DeltaV - LO steal objective, see Resources/Prototypes/DeltaV/Objectives/traitor.yml HoPBookIanDossierStealObjective: 1 # DeltaV - HoP steal objective, see Resources/Prototypes/DeltaV/Objectives/traitor.yml HoSGunStealObjective: 0.5 + StealSupermatterSliverObjective: 0.5 - type: weightedRandom id: TraitorObjectiveGroupKill diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index ffeba32546d..d9c071c30c0 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -309,3 +309,15 @@ - type: StealCondition stealGroup: NukeDisk owner: objective-condition-steal-station + +- type: entity + noSpawn: true + parent: BaseTraitorStealObjective + id: StealSupermatterSliverObjective + components: + - type: Objective + difficulty: 3.5 + - type: StealCondition + stealGroup: SupermatterSliver + objectiveNoOwnerText: objective-condition-steal-smsliver-title + descriptionText: objective-condition-steal-smsliver-description \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml new file mode 100644 index 00000000000..36502fe532c --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml @@ -0,0 +1,65 @@ + + + + + # The Supermatter Engine + + So you've decided to take on the challenge and set up the Supermatter Engine? First, let's give you a short overview of the main Supermatter crystal beforehand. + + Its primary features are emitting electrical arcs that are harnessed to power the station through tesla coils. + + Side effects include radiation emission, releasing hot oxygen and plasma, heating the air around, and exploding, transforming into a black hole or an energy ball and eating the entire station if you screw up hard enough. + + It begins inert but being hit by an object or a projectile will activate it and it'll start exhibiting nearly all of the aforementioned properties. + + ## Words of Warning + + 1. The Supermatter crystal is [color=red]VERY DANGEROUS[/color]. Activating the crystal should be the last step in setting up any form of Supermatter based power! + + 2. [color=red]PUT YOUR GOD DAMN RADIATION SUIT ON[/color]!! + + 3. Most of setting up the Supermatter involves a gas loop that is designed to cool down the Supermatter chamber. Please have at least some knowledge of gases and their atmospheric properties. + + 4. Anything that bumps into the Supermatter is [color=red]fundamentally annihilated[/color]. [color=red]Do not touch it[/color]. This means weld and bolt the door to the chamber. + + ## Gas Interactions + + Here's a list of all gases from least dangerous to most dangerous. + + 1. [color=#bffffe]Frezon[/color]. Aside from cooling down the Supermatter, it basically stops power and waste production, which may come handy if the Supermatter is close to delaminating and you need to shut it down fast. + + 2. [color=#c20000]Nitrogen[/color]. N2 is the basic gas most Supermatter setups will run exclusively, being bog simple to set up for. It dampens the power generation from heat, and reduces the amount of plasma the SM belches out, making it good for when you aren't trying to do something silly. + + 3. [color=#b16d6d]Nitrous oxide[/color]. Reinforces the heat resistance of the crystal, allowing for much hotter setups than usual. Hovewer, at high temperatures it will decompose into Nitrogen and Oxygen. While N2 is good, O2 certainly is not. This O2 will also react with the Plasma to create Tritium and then... a Tritium fire. + + 4. [color=#62d5ca]Oxygen[/color]. Provides a boost to power transmission without actively increasing the waste gas amount or temperature. Pretty risky to use, as any disruption of the cooling loop will soon cause a plasma fire in the crystal chamber. Even just a high concentration of O2 will activate and continuously power the crystal. + + 5. [color=#19b348]Ammonia[/color]. Increases the power generation slightly at a minor cost to the heat penalty. + + 6. [color=#979797]Carbon Dioxide[/color]. In low concentrations, it will increase the crystal's power generation. In high concentrations it will raise the crystal's energy to extremely high levels. With poor management and insufficient or downright bad preparation, it will eventually exceed safe energy levels and begin a charge delamination, producing electric arcs and anomalies until it eventually explodes into a Tesla ball. + + [color=red]7[/color]. [color=#ff9d00]Plasma[/color]. Very similar to Oxygen but provides a higher power boost as well as a much higher waste and heat penalty. The extreme pressures and volumes of gas produced by this gas are very likely to clog pipes and overheat the chamber. + + [color=red]8[/color]. [color=#08a800]Tritium[/color]. Increases the power production of the Supermatter by up to 3 times, there is one slight issue with it. It is dangerous. It is very dangerous. Tritium is a horrifyingly irritable and jumpy gas. While it isn't as harmful to the heat level as Plasma is (just barely), it also has the second worst heat capacity of all gasses while Plasma has the second highest. This means that Plasma can be kept happy with enough cooling, whereas Tritium eagerly goes from a safe space loop into a burning hellfire. Add to this the byproduct of large amounts of Oxygen production (not exclusive to Tritium. An issue in a Plasma engine too), and you have a tritium fire and a very hot crystal. Do not use this gas unless you have a very strong understanding of atmospherics and the Supermatter, and are willing to get creative. + + ## Practical guide to the Supermatter + + Now, forget about everything you've just read and get to setting up the most basic loop there is: the Nitrogen loop. + + The atmospheric setup in it's most basic form should look like this: + + (We did not have enough budget for images, here is a text representation) + + 1. Nitrogen gets pumped into the chamber by passive vents from one side + + 2. Every gas gets pumped out of the chamber by using scrubbers set on Siphon on the other side. + + 3. The output gets cooled down, filtered and excess nitrogen gets either outted into space or rerouted into the input. + + That's basically it. I hope you understand at least something in this example. Now get to it! + + ## Experiment + + You're not a real engineer if you haven't figured out the most efficient way to produce electricity using the Supermatter crystal, are you? + + \ No newline at end of file diff --git a/Resources/Textures/Supermatter/supermatter.rsi/meta.json b/Resources/Textures/Supermatter/supermatter.rsi/meta.json new file mode 100644 index 00000000000..6f8f3e0bd82 --- /dev/null +++ b/Resources/Textures/Supermatter/supermatter.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "copyright": "Taken and edited from https://tgstation13.org/wiki/images/a/a4/Supermatter-bg.gif", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 48 + }, + "states": [ + { + "name": "supermatter", + "delays": [ + [ + 0.08, + 0.08, + 0.08 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Supermatter/supermatter.rsi/supermatter.png b/Resources/Textures/Supermatter/supermatter.rsi/supermatter.png new file mode 100644 index 0000000000000000000000000000000000000000..0c5747a315fec5fc2d2965078fe08a0dd9296681 GIT binary patch literal 28899 zcmeHw2YgjU_W$?3_mY={RMH@gkc1l35lAG05)@V`0%F~dgyew{NH7US+`nbjRTr_~ zu5DQrR~HmP#D=2MkzLE8^b*oT3h5#By?g)X%*%awDL|sZ$nWFux$oXPcV^DanbT(G zobdFFX*W7K_&5M?nld?ICfz5{HP_CTemCvQET-F@m9uZpoSC>ha7lXF{FFt8z|04h z7y=C|Qsx6IPA;Bt%4tuaqp`umUmCBO@AuQ&GshG+UVVJ_y7DP&2R-SWH1?kV=}*Vm z*(8U)w(y7l1l~IG>YGNzo}7Dg^oj}BZ(Uh3@pa7|tHQRv?4$YN+J_v+jr#V}RWF>G zc>K0?`wzW+&kY5Swj{)l-@V~4ZZGy5VEg@!zo#EbH|>7t-=3xVxTiNKDTnucx_nW+ zv->}vS^LbZ`}8>v>9*amM(@4-sb%X1HaJ(W-Ro78Hr>6-HuvBi9(#5Sc^Hr$PnkGz z#*~Q@)#1<}*8aa2;wSH!;J5FdSqmqPbY3<*@A-9cCninuyUBCa+;ty&-nlgL^SXYo zjS3kN{_LL@?%MU-zV{wm_0eYM&3_JTl=9Byyj>hLM2;Bo@l(|~+Xhuu#8;e=uHU$S z_D2!U8(uRcud$E1=XTG>J}AD?^&y?>3$MJpe(S2(70-U~U}NJ-@BBN?oR$41{^7^u zN2Z578CJxq$EW{sS<~u_6N!&5_{-|M=f6Jo z=Br+M@b-$tIZ?Co2Ig&e>%PB56#Q|{*tGlSEOa{h`LKr*H*DCH{Q0yD$0=70eqvO@ zfqUQltIt(??>#a(>Vm@n_Sa#4LGdsp-5|WW$t|A8nlU+#|V*bMn5}_@4)N7CO5= z@Y9fq=^^8%uA8kn^S|PMIP5$S7P+mc{^*HsO0>`aYx7HKk32SU?prsXC<~|zC@wG0 zj`^qj5WJ2nrNMG8e`N-9B|j;Ka0aL*S_JQQ?tclUAfGiw?Th zA#hxJ^8C1&2{*JhL2vOv_hx1;iHnF>zI=K3@|f_n^aT-7v9Ylck;>8ixH8L_MEu%(SJJe;3jM>Dc5i<=LX-m_S43m}_QZs|Cn@CQw)L*hR zeUTVWa#Dn0kzp|v%^;{z?Lgi*W$Fw|4MxF&l*LO#Ekbs?l9?&<+mO|+Z~R3J$GRg_ z-O_Hm((2enVJbCsYFt8E(o*i;l!W*oh98%lmXwklCms!B$BY`2oD>x{+7LA=Y*b8a zV%WT~hUl=U=x9T9RP^YvQS)N0nwpZDk(rp9WZwv(GBstG7n>LpNlhik#wLZ0 znm=lOSYlLSOjz{%s3huVQfy+>Xwg)1Qrrz`>5CI-I#U)WE-*waNnId5Fv8=mn=vIm zC^|f{Eoa7}#LW3rfp{P#H92j0M%$;^DT@uWG7}k}QDdUUj3M}AM@Ns2iHDsUAzymhKZwC~OGdks7fgtD;6(P3>U8yytUI@k!780u)pMRdZ)I8ne##85qR z9*HiJgb@}|*orR}I+roE&ckJdKu!M+q(}Ju9bLbpt4A2vweZ2m?JT{5y5^ z8oC_X7E^{)vVfM;Qfc(=jqlMi%XZ#PHzq*ge{X)Z{zb~MUo!cQ44|JoUlLwhJAg9v znNy}t(ihw6wXQxdY~2_F1Y%0Ub+cDU(%iXkydhDMZl~s|{2*=N!Ys9df4UJr<<&q`jV$RZguHgVzkY$^st*-_1^kqel*`=I=dePc7SR1elIYQ+VK7 zt%JCrcZ5dsFZfLP7Y2Ir*3;!nV(`sdSM%T*uG$BUZX>)CUV(>$44CqvZWYR7LGDCPOzzktS* zQ`92expxZzYC|2d&-v1^Sx`o7Qj7HJowW{7Dh6%R$;1YolXPr`Oz=(o#Ux7-WmyYg{m67pc44R?W5Ea?(Y@i52)k6lF3G=(O7h7AU?lWrGOIo&{|HUH3Frcdd~%Rs*RHcHotV3{Z{xa3m|13()N@Jx`lvCVgGW-f%fFz z0SP=>p%uhKs~p-wV_{9fvViP@Zc@QT5zvYJJMg|b`vpghq9>|6=nX1pv;3^c-wa=C z=KVOB;hW_4@L3}`Nzjw)7TAmS%s$VgyWP;%yz=WS|EX_a$F`*Z)8s%(n>elyz^O3r7&oTuZTuF^*j zCnyK@HXv@O`7009cVt&30pD34qHxo6_|CpokR=O4UN<1?yLJ_rrPK^<=++CaM7g7T zzg)lC(LsyIp$=dr-v-~z=jL{3<`omc{a7h{|7OYe*6TEk7*!)6?}!Z=&rG8Ww338O z>j_cMbPSrt8)@yZ^}+~Hbj;T_*!jxmqE7sxDXlz5(zaFdcbxsg_jg;6AZ7g|>NQs8 z&M(`u;8mswffSKTg6asAu8<(ezj&=E)nYVa_iNiBlThmnpJ$)?C8IwLAB>Xb2gt@M_C}oRznCg$%<)%qhJBwfqreIDVgBbUkgX)lW@1wAgiAf)4!CP#GaPj$logfyZ1|3vb8xxlZt&E!9Q?#a zh2K(Jr9o{Tob4f5WWcat!^HqK8V#IXWWwJGdN<=G*xyxr%Py?N`1I4*^ZYRQo)|Ck zbR#BHSuHJ88pQjaT{)Pb`4E0{W+MB`b-)K(;CCy@f-o&iMiWe$Oen?*Ah-e6!j9qV zXkxrP75EI`SAR9IL5fByiK7Zt#> zzXY#g{n28yCE;g}!lNV*7vBw&=`k(}t;viW(Wq>~gzJLw^;c)bH~!&#PCIvGAzqFW z6hpX0!TTdnTqEJZH#&1)QBe^gU?3{0s^H~h2j>7=G}lYL06)47{?>5R)yvqhUys!* zA85Z8sH>}kq9~}PyPEt%`yuaeotRN3YmMelh`;|H?Ed_$D65v^`}pg;+T~r7;E6#) zy+je^NIVK@@EW2PPW6qQ5l~Z8WByierY3&rZTJF!tqp4GND0{tD(Tz{D$!)6T8oaI z6FhA^woTNP<;PL*-e&Qff8@Nl^Ur`VGe=Lj-dp4`vaG*zCJ(-_(ugxe%stcB(#(rS%++f#r<8!9|AFQ?YSck(PWo&G}bKg$3napp%gF~6T7mALnXb&!YO zAhKD0@YOMKebx>plL_xVpt~kmwfp8f>sdw!^Sb;g zsX$8nyz}c41P*hDUw;BOoGr`eAZhHyclAdr83poP>`W-Gu0#C}k~z&S1m8mx=?(Y; zoN01~ZG|Ge1X-#T?Y5HvIx>7hM+Cvo+a6w_?t+(@?*;E$$$;x84iWr4F~LX3g8eVP z4ZY+5zK_qChjBOg;+jABh>K+a+X$@7eItE<<2RaZ0cAeKK7T6)^tAKm^SlTt5+q8$DV($EA^pX;#%{Ef1!lbjMxL6uY#o1#C$wI@_8F&6<~)e^nX4ChqR%h6tNL z<@LK44JIU*bsFC}U#QHHyDhRo)#U?cPDja>4ft+X5$^meaa-$oqEkN&oJhPl^)v5! zUoQBAZkd7HPu|7J?@RH-2I{ljX!B}N2p|%EtCwovImDUHA7r7!S*@vpPeUf}uGO!L zHNl?e)(NW+M>dOc@iztHgqQb(qpIP!<-2n~ z2_9sA-#bAktiQ_vKWNr06nyr+ume6gG7N>K1&{)7dR7QQ7Jj@2C_ZO|9<^v{ZXn(5 zC3HKJKHK%*ta(T9F`Kq51DM}qC!38PrW?WQgs`)lKNM|=H36B&oX^1Xx2#7AnZPSv z*Tb7cK~qE9c7Rqd!C7xaX>B8#PBp^R*x2jvdGM8uM!fcgJ#6hI6qS<2#r+n)RzF$A zwHPyQAo7UcnF5&4S=Tc!t33bpSEmGDf3vMb)Eqa-%kq8Kj#5HEy^sy69dKsTCX}43 z$D2Qd6LL?X#bh>zt-x9y3#nr(YGW-VEWA7KdDr`%v<^~g~vuac206zx|bPyM>5juWnn<0l* zlAO=hV~a+?nx&P{(ah^KqMMkr?bv=#;Aa<9psB?M zskc>-&?njBpn$a>C-KXJs&CR@=|9Z&KyU!f26dVR81r#giS2(LAYW?YJaG{la6Zci zUQY7@Db{dA7(=_(x(VPcgVa=BPu5_Cf>*X`QC-)9!TxT@D=O?g_>+br=ALgz1;^r< z412irS4jAp;ak|D*{GoiG4Z|*|9xqLAamB|ycW=E%^HK{fmf)Vu=k4( z)r;k?t&LukC!w^DQ`6Z3|taf}@Ss zV7R;+JPG?>ewBoCKhajNz%Td~l|}8TubolE9XfgPGzNI+uy=Pk{D~cy%z4ev+f=Oo zd8x~TXMN8X+Xk%jvyK%Z`*@uw&$5FD&vm(M(FZZYzArvrfjgd*!6dJ;l8OZNUX)h| zcUK4OJ3#E?J)l?M7kqTJfM1zikH^=ypsbR1wa%N(cMAouO<+%C@$fCD>8Q&Eab%K; zjSU){+Sx%v%?RNgA^Fg!YM%wW@a6~$9VUIY2-$#Qby{?&6a^JVEV#cKp5B8|TYn1f zL~YiIZ2}LMW?HLDxHGmKt`rItJKCZ9@QGb61i$!5IV$QJ@UPc(aP#s(X?Y$bGC>ZPiy>zR3Gb5g2b-gud`5U!Ha66)FSXOWH^A1FG$aAVCn}-QHzB{cL=2wogAHpA ziRXRWPr`53L5#j;0A5~5z6>VX8>HFqn0!d^dDCvxgSTtVHbFPx^Wv%`yAF0vZlvPM zyM*sMV;`=H@j=oQJrt62wX~hl(9}kOf&%om8a#H#8F&wNgMQd#G@RH*gPVkL`W-m? zQwj9_oZuf~D;738cjSQiU87l#qAD40e={6+jXjF|+-6Lh>w|ryCWA-#;Oa@V#DfpY zK8l6M|_eO2y3E(5jJFq$>Qvqh)Y*(_`RZ7x=pA zh$`|(#@Ik_y9wo_+VbC6z@BCPgvgRDLo3ob8GS=ai$A z$Zf)+KZ*hHGnXkN>F#m*E8LRW411?j7Itcf1$q$%5otf=#CrHozXQ3O--g!CPFQin z!aPJh-du5Xv7vt1!ANSAW`cHks`0@$Zn!0;Oi-f=pD9zXw?j2?)`0v2cyNt`2IS&= zjR~%eYPO^lX5Wi#N*4 z&%wjPL)>fYY94*;spl#^-TOaMr34_r=`0-j*}>kFhx$6Q4G6|NdmM2n&lcs){ut<9 z1NVWBaPzi9LyHmr_{4_Dz7gjt8&P2jM$F*zup>i97x*_gN?+m0w~Q!j7>IYamLWU8 ziMHB3kXu**clS2~Ys38@|ChIfv8|btukN9V7Jy)Oborf5ld)!jRyh zIC}g98X8S#Y%yDS4RwlG?7Y3Qn#lcjBqUW5Vq`c~n@~lYk&1F*OOQ=eU!oK?S??o1 zkLnY3!YJBuCfaH#mOnI{xjjOjJ7CVpp(FkYV zVx&J^OJ=wUl`T4)%u)!Mw6jIVk1Ehr3KZ4=A5!ohJ!=9Mh>DFCQj19#M{FOciH#T4 zfZ>KZHpcZ;3yX!FbzQX$^?u^SaTJ~{5b*tc{FRu9p>#OYB7`AZYYkMNjibs68?xdQ z*k~0v+LP+ln_J+G)H+&Q)Hj>?+0jlG^*zlpT&Oy(%L31&=sNXPg>R7tVPRpSWer+L zz>(jPtU#u7!k#9s&*@TixdUoqL_PMPBTYU?icFDxv8n_dWyODNK+hP;Ch5E+H zhWcleE!`)RmikTg?WjH{cT#oMbw#Gtj|$(?!nSSZ%}uK^zv|vH+3Wjt`14pAg~+C=5p0sR-`4Dok(_G8nsdD^em z>s|!ZEdP3 ze+U0zrULc{yb`J4q6oMk`CHAm`pCY3ZBCI_4i#J!0bP=RhuK#>NEs1~ge#2-E{cFI z$zPpvt9#e616KwWTo3_WlK%x}U-chW-R7?(D!3p5x+4G1zWY{Wz${?pyKnyT+oysH zBA_GrxB2dy10+=5S7%>Eh3YoXR8W3mO*`vQDLveu*9?4D%lGxYO9U|a@7ua+^^yOX zx0l%X={Qj9j;r3|DhseM8&vw*U40;@;VJ-yG0jUC%mpK+Zi39i1I=_2IfvfO=2q$$H_!55n=qipNzgR(O_Wsq32(}lL z{G;NM)U`xQo71%b)(1a=8dN`ihR<8%)9<_sf4WBt2V0=1qUdM)@$2PtPP~!-ApWnyd1dWtWT_djwot}=&e?c6<){iN?rp=GP zMY)f5fKQR{9-Ua42KMprJNOQ99Kqm0KBy|IfQO@AoZ1RUre7RK(B{Wq_;EPSHz;`i zLmRyF(K|m+7W5+8+Q|TQmzLuQ)Wab@GH3rm_8|MEaRg^KQ)oOnWN|93=*3a|f~MLb zKy9ay{P>9zMCwgHem?2t!_W5)lG8+86C4BEJXlrOzxKTo0zyMWF)$zyuk7^hRX=|9 z=$enWooyw!yV;^H=VzXT^dgqpA%G7-bF&Upv{yL{*A|f<|9G<>Kk0VWhnRf{Ro@}* zhb4}H{D#?gNca}BuVIHc0xnxzR)x*`^jLUj72bKuQABuheqW|`2;kFLXGaN7%x&s* zKYn(=YNAu!74vMM^BF^0AiOQYvkx&~QG?tE$%am9?M)~r7dGRr?ZTC{xBU2nhRft7 zPFv|A?@{>8>l97J5Zn9>`K>RKg#wuToouxT9Udq`+1Qzy{r-E)kAJXV00xGWui)u9 zU|T@a%mzFI`eMxOU|JAhqcw@Y7BzLqe=n;aKYN+USu;?)D+QYB$c%Qq>4O)60G@q4 z`O>PM7S^61y%|Tqe*A^oHsScU#YlavnY_aK{%ldm02Y4kXe2t>pkUkC%}t-rXyj#z-@&Tk;Sb-`Pq4b4Zb~4OuqY$z2dvi&dbu7{b1ky`(J7# zmst8s55g--}l=u9!vHXb$<%v?ww+oFVX5JC1?>_ElN8F0Ninw*&rW6KT*+_W)t%#Sn()Ls8l22;L?!v|7t14XO-L2`$pz2_JOc-5Czd>S z9>>lN!kV{>Q9$Kv90s6_wrh@Zbsz^^4%q)=*!Grwq)5#oEl*<%EVK!;2$`zzj#M_!hO>omK#a$0pp{RuZ zR1W#>=NHf)dLpUs^&8@S72(1h*gv0r^IhnV9jSi% z-RYWIpUYk<_CWRB?@qgyvy24+eH}Y+IR|;MwmVsZ7c2aK@tcJL)Kj7Vi-Wu}$MnB# lg*Q{r7xMoR@GFhLYtdid(8WAIg~3gkG%aEC^>hFH{{cyqcI^NF literal 0 HcmV?d00001 diff --git a/Resources/Textures/Supermatter/supermatter_sliver.rsi/icon.png b/Resources/Textures/Supermatter/supermatter_sliver.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2187706b107afd46d3d977ef25092feee253cd8b GIT binary patch literal 357 zcmV-r0h<1aP)ugi+s(f3-PG?@+kv<2$y(1BY3}*}r{UA3Re!wlF Date: Sat, 22 Jun 2024 21:27:03 +1000 Subject: [PATCH 21/38] no more 0% integrity announcements --- Content.Server/Supermatter/Systems/SupermatterSystem.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 80a54655060..1dc8a9a8309 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -372,6 +372,10 @@ private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) return; } + // ignore the 0% integrity alarm + if (sm.Delamming) + return; + // We are not taking consistent damage. Engis not needed. if (sm.Damage <= sm.DamageArchived) return; From f2877226f1675c93689edcd302f4a9d84d551166 Mon Sep 17 00:00:00 2001 From: whateverusername0 Date: Wed, 26 Jun 2024 18:10:05 +1000 Subject: [PATCH 22/38] more tweaks --- .../Supermatter/Systems/SupermatterSystem.cs | 918 +++++++++--------- .../Components/SupermatterComponent.cs | 19 +- .../Generation/Supermatter/supermatter.yml | 5 +- .../Guidebook/Engineering/Supermatter.xml | 2 +- 4 files changed, 475 insertions(+), 469 deletions(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 1dc8a9a8309..bfec02795e7 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -2,12 +2,10 @@ using Robust.Shared.Containers; using Robust.Shared.Physics; using Robust.Shared.Physics.Events; -using Robust.Shared.Timing; using Robust.Server.GameObjects; using Content.Shared.Atmos; using Content.Shared.Interaction; using Content.Shared.Projectiles; -using Content.Shared.Tag; using Content.Shared.Mobs.Components; using Content.Shared.Radiation.Components; using Content.Server.Audio; @@ -26,601 +24,593 @@ using Content.Server.Popups; using System.Linq; -namespace Content.Server.Supermatter.Systems +namespace Content.Server.Supermatter.Systems; + +public sealed class SupermatterSystem : EntitySystem { - public sealed class SupermatterSystem : EntitySystem + [Dependency] private readonly AtmosphereSystem _atmosphere = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly ExplosionSystem _explosion = default!; + [Dependency] private readonly TransformSystem _xform = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly AmbientSoundSystem _ambient = default!; + [Dependency] private readonly LightningSystem _lightning = default!; + [Dependency] private readonly AlertLevelSystem _alert = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedTransformSystem _transform = default!; + [Dependency] private readonly PopupSystem _popup = default!; + + public override void Initialize() { - [Dependency] private readonly AtmosphereSystem _atmosphere = default!; - [Dependency] private readonly ChatSystem _chat = default!; - [Dependency] private readonly TagSystem _tag = default!; - [Dependency] private readonly SharedContainerSystem _container = default!; - [Dependency] private readonly ExplosionSystem _explosion = default!; - [Dependency] private readonly TransformSystem _xform = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly IGameTiming _gameTiming = default!; - [Dependency] private readonly AmbientSoundSystem _ambient = default!; - [Dependency] private readonly TagSystem _tagSystem = default!; - [Dependency] private readonly LightningSystem _lightning = default!; - [Dependency] private readonly AlertLevelSystem _alert = default!; - [Dependency] private readonly StationSystem _station = default!; - [Dependency] private readonly DoAfterSystem _doAfter = default!; - [Dependency] private readonly SharedTransformSystem _transform = default!; - [Dependency] private readonly PopupSystem _popup = default!; - - private DelamType _delamType = DelamType.Explosion; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent(OnMapInit); - - SubscribeLocalEvent(OnCollideEvent); - SubscribeLocalEvent(OnHandInteract); - SubscribeLocalEvent(OnItemInteract); - SubscribeLocalEvent(OnExamine); - SubscribeLocalEvent(OnGetSliver); - } - - public override void Update(float frameTime) - { - base.Update(frameTime); + base.Initialize(); - foreach (var sm in EntityManager.EntityQuery()) - { - if (!sm.Activated) - return; + SubscribeLocalEvent(OnMapInit); - var uid = sm.Owner; - sm.UpdateAccumulator += frameTime; + SubscribeLocalEvent(OnCollideEvent); + SubscribeLocalEvent(OnHandInteract); + SubscribeLocalEvent(OnItemInteract); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnGetSliver); + } - if (sm.UpdateAccumulator >= sm.UpdateTimer) - { - sm.UpdateAccumulator -= sm.UpdateTimer; - Cycle(uid, sm); - } - } - } + public override void Update(float frameTime) + { + base.Update(frameTime); - public void Cycle(EntityUid uid, SupermatterComponent sm) + foreach (var sm in EntityManager.EntityQuery()) { - sm.ZapAccumulator++; - sm.YellAccumulator++; - - ProcessAtmos(uid, sm); - HandleDamage(uid, sm); - - if (sm.Damage >= sm.DelaminationPoint || sm.Delamming) - HandleDelamination(uid, sm); - - HandleSoundLoop(uid, sm); + if (!sm.Activated) + return; - if (sm.ZapAccumulator >= sm.ZapTimer) - { - sm.ZapAccumulator -= sm.ZapTimer; - SupermatterZap(uid, sm); - } + var uid = sm.Owner; + sm.UpdateAccumulator += frameTime; - if (sm.YellAccumulator >= sm.YellTimer) + if (sm.UpdateAccumulator >= sm.UpdateTimer) { - sm.YellAccumulator -= sm.YellTimer; - HandleAnnouncements(uid, sm); + sm.UpdateAccumulator -= sm.UpdateTimer; + Cycle(uid, sm); } } + } - #region Processing - - ///

- /// Handle power and radiation output depending on atmospheric things. - /// - private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) - { - var mix = _atmosphere.GetContainingMixture(uid, true, true); - - if (mix is not { }) - return; - - var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); - var moles = absorbedGas.TotalMoles; - - if (!(moles > 0f)) - return; - - var gases = sm.GasStorage; - var facts = sm.GasDataFields; - - //Lets get the proportions of the gasses in the mix for scaling stuff later - //They range between 0 and 1 - gases = gases.ToDictionary( - gas => gas.Key, - gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / moles, 0, 1) - ); + public void Cycle(EntityUid uid, SupermatterComponent sm) + { + sm.ZapAccumulator++; + sm.YellAccumulator++; - //No less then zero, and no greater then one, we use this to do explosions and heat to power transfer. - var powerRatio = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].PowerMixRatio); + ProcessAtmos(uid, sm); + HandleDamage(uid, sm); - // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. - var heatModifier = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].HeatPenalty); + if (sm.Damage >= sm.DelaminationPoint || sm.Delamming) + HandleDelamination(uid, sm); - // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. - var transmissionBonus = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].TransmitModifier); + HandleSoundLoop(uid, sm); - var h2OBonus = 1 - gases[Gas.WaterVapor] * 0.25f; + if (sm.ZapAccumulator >= sm.ZapTimer) + { + sm.ZapAccumulator -= sm.ZapTimer; + SupermatterZap(uid, sm); + } - powerRatio = Math.Clamp(powerRatio, 0, 1); - heatModifier = Math.Max(heatModifier, 0.5f); - transmissionBonus *= h2OBonus; + if (sm.YellAccumulator >= sm.YellTimer) + { + sm.YellAccumulator -= sm.YellTimer; + HandleAnnouncements(uid, sm); + } + } - // Effects the damage heat does to the crystal - sm.DynamicHeatResistance = 1f; + #region Processing - // more moles of gases are harder to heat than fewer, - // so let's scale heat damage around them - sm.MoleHeatPenaltyThreshold = (float) Math.Max(moles * sm.MoleHeatPenalty, 0.25); + /// + /// Handle power and radiation output depending on atmospheric things. + /// + private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) + { + var mix = _atmosphere.GetContainingMixture(uid, true, true); - // Ramps up or down in increments of 0.02 up to the proportion of co2 - // Given infinite time, powerloss_dynamic_scaling = co2comp - // Some value between 0 and 1 - if (moles > sm.PowerlossInhibitionMoleThreshold && gases[Gas.CarbonDioxide] > sm.PowerlossInhibitionGasThreshold) - { - var co2powerloss = Math.Clamp(gases[Gas.CarbonDioxide] - sm.PowerlossDynamicScaling, -0.02f, 0.02f); - sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling + co2powerloss, 0f, 1f); - } - else - { - sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling - 0.05f, 0f, 1f); - } + if (mix is not { }) + return; - // Ranges from 0 to 1(1-(value between 0 and 1 * ranges from 1 to 1.5(mol / 500))) - // We take the mol count, and scale it to be our inhibitor - var powerlossInhibitor = - Math.Clamp( - 1 - sm.PowerlossDynamicScaling * - Math.Clamp(moles / sm.PowerlossInhibitionMoleBoostThreshold, 1f, 1.5f), - 0f, 1f); + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; - if (sm.MatterPower != 0) //We base our removed power off one 10th of the matter_power. - { - var removedMatter = Math.Max(sm.MatterPower / sm.MatterPowerConversion, 40); - //Adds at least 40 power - sm.Power = Math.Max(sm.Power + removedMatter, 0); - //Removes at least 40 matter power - sm.MatterPower = Math.Max(sm.MatterPower - removedMatter, 0); - } + if (!(moles > 0f)) + return; - //based on gas mix, makes the power more based on heat or less effected by heat - var tempFactor = powerRatio > 0.8 ? 50f : 30f; + var gases = sm.GasStorage; + var facts = sm.GasDataFields; - //if there is more pluox and n2 then anything else, we receive no power increase from heat - sm.Power = Math.Max(absorbedGas.Temperature * tempFactor / Atmospherics.T0C * powerRatio + sm.Power, 0); + //Lets get the proportions of the gasses in the mix for scaling stuff later + //They range between 0 and 1 + gases = gases.ToDictionary( + gas => gas.Key, + gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / moles, 0, 1) + ); - //Radiate stuff - if (TryComp(uid, out var rad)) - rad.Intensity = sm.Power * Math.Max(0, 1f + transmissionBonus / 10f) * 0.003f; + //No less then zero, and no greater then one, we use this to do explosions and heat to power transfer. + var powerRatio = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].PowerMixRatio); - //Power * 0.55 * a value between 1 and 0.8 - var energy = sm.Power * sm.ReactionPowerModifier; + // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. + var heatModifier = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].HeatPenalty); - // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock - // is on. An increase of 4*C @ 25% efficiency here results in an increase of 1*C / (#tilesincore) overall. - // Power * 0.55 * (some value between 1.5 and 23) / 5 - absorbedGas.Temperature += energy * heatModifier * sm.ThermalReleaseModifier; - absorbedGas.Temperature = Math.Max(0, - Math.Min(absorbedGas.Temperature, sm.HeatThreshold * heatModifier)); + // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. + var transmissionBonus = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].TransmitModifier); - // Release the waste - absorbedGas.AdjustMoles(Gas.Plasma, Math.Max(energy * heatModifier * sm.PlasmaReleaseModifier, 0f)); - absorbedGas.AdjustMoles(Gas.Oxygen, Math.Max((energy + absorbedGas.Temperature * heatModifier - Atmospherics.T0C) * sm.OxygenReleaseEfficiencyModifier, 0f)); + var h2OBonus = 1 - gases[Gas.WaterVapor] * 0.25f; - _atmosphere.Merge(mix, absorbedGas); + powerRatio = Math.Clamp(powerRatio, 0, 1); + heatModifier = Math.Max(heatModifier, 0.5f); + transmissionBonus *= h2OBonus; - var powerReduction = (float) Math.Pow(sm.Power / 500, 3); + // Effects the damage heat does to the crystal + sm.DynamicHeatResistance = 1f; - // After this point power is lowered - // This wraps around to the begining of the function - sm.Power = Math.Max(sm.Power - Math.Min(powerReduction * powerlossInhibitor, sm.Power * 0.83f * powerlossInhibitor), 0f); - } + // more moles of gases are harder to heat than fewer, + // so let's scale heat damage around them + sm.MoleHeatPenaltyThreshold = (float) Math.Max(moles * sm.MoleHeatPenalty, 0.25); - /// - /// Shoot lightning bolts depensing on accumulated power. - /// - private void SupermatterZap(EntityUid uid, SupermatterComponent sm) + // Ramps up or down in increments of 0.02 up to the proportion of co2 + // Given infinite time, powerloss_dynamic_scaling = co2comp + // Some value between 0 and 1 + if (moles > sm.PowerlossInhibitionMoleThreshold && gases[Gas.CarbonDioxide] > sm.PowerlossInhibitionGasThreshold) { - // Divide power by it's threshold to get a value from 0 to 1, then multiply by the amount of possible lightnings - // Makes it pretty obvious that if SM is shooting out red lightnings something is wrong. - // And if it shoots too weak lightnings it means it's underfed :godo: - var zapPower = sm.Power / sm.PowerPenaltyThreshold * sm.LightningPrototypes.Length; - var zapPowerNorm = (int) Math.Clamp(zapPower, 0, sm.LightningPrototypes.Length - 1); - _lightning.ShootRandomLightnings(uid, 3.5f, sm.Power > sm.PowerPenaltyThreshold ? 3 : 1, sm.LightningPrototypes[zapPowerNorm]); + var co2powerloss = Math.Clamp(gases[Gas.CarbonDioxide] - sm.PowerlossDynamicScaling, -0.02f, 0.02f); + sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling + co2powerloss, 0f, 1f); } - - /// - /// Handles environmental damage. - /// - private void HandleDamage(EntityUid uid, SupermatterComponent sm) + else { - var xform = Transform(uid); - var indices = _xform.GetGridOrMapTilePosition(uid, xform); - - sm.DamageArchived = sm.Damage; + sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling - 0.05f, 0f, 1f); + } - var mix = _atmosphere.GetContainingMixture(uid, true, true); + // Ranges from 0 to 1(1-(value between 0 and 1 * ranges from 1 to 1.5(mol / 500))) + // We take the mol count, and scale it to be our inhibitor + var powerlossInhibitor = + Math.Clamp( + 1 - sm.PowerlossDynamicScaling * + Math.Clamp(moles / sm.PowerlossInhibitionMoleBoostThreshold, 1f, 1.5f), + 0f, 1f); - // We're in space or there is no gas to process - if (!xform.GridUid.HasValue || mix is not { } || mix.TotalMoles == 0f) - { - sm.Damage += Math.Max(sm.Power / 1000 * sm.DamageIncreaseMultiplier, 0.1f); - return; - } + if (sm.MatterPower != 0) //We base our removed power off one 10th of the matter_power. + { + var removedMatter = Math.Max(sm.MatterPower / sm.MatterPowerConversion, 40); + //Adds at least 40 power + sm.Power = Math.Max(sm.Power + removedMatter, 0); + //Removes at least 40 matter power + sm.MatterPower = Math.Max(sm.MatterPower - removedMatter, 0); + } - // Absorbed gas from surrounding area - var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); - var moles = absorbedGas.TotalMoles; + //based on gas mix, makes the power more based on heat or less effected by heat + var tempFactor = powerRatio > 0.8 ? 50f : 30f; - var totalDamage = 0f; + //if there is more pluox and n2 then anything else, we receive no power increase from heat + sm.Power = Math.Max(absorbedGas.Temperature * tempFactor / Atmospherics.T0C * powerRatio + sm.Power, 0); - var tempThreshold = Atmospherics.T0C + sm.HeatPenaltyThreshold; + //Radiate stuff + if (TryComp(uid, out var rad)) + rad.Intensity = sm.Power * Math.Max(0, 1f + transmissionBonus / 10f) * 0.003f; - // Temperature start to have a positive effect on damage after 350 - var tempDamage = Math.Max(Math.Clamp(moles / 200f, .5f, 1f) * absorbedGas.Temperature - tempThreshold * sm.DynamicHeatResistance, 0f) * sm.MoleHeatThreshold / 150f * sm.DamageIncreaseMultiplier; - totalDamage += tempDamage; + //Power * 0.55 * a value between 1 and 0.8 + var energy = sm.Power * sm.ReactionPowerModifier; - // Power only starts affecting damage when it is above 5000 - var powerDamage = Math.Max(sm.Power - sm.PowerPenaltyThreshold, 0f) / 500f * sm.DamageIncreaseMultiplier; - totalDamage += powerDamage; + // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock + // is on. An increase of 4*C @ 25% efficiency here results in an increase of 1*C / (#tilesincore) overall. + // Power * 0.55 * (some value between 1.5 and 23) / 5 + absorbedGas.Temperature += energy * heatModifier * sm.ThermalReleaseModifier; + absorbedGas.Temperature = Math.Max(0, + Math.Min(absorbedGas.Temperature, sm.HeatThreshold * heatModifier)); - // Molar count only starts affecting damage when it is above 1800 - var moleDamage = Math.Max(moles - sm.MolePenaltyThreshold, 0) / 80 * sm.DamageIncreaseMultiplier; - totalDamage += moleDamage; + // Release the waste + absorbedGas.AdjustMoles(Gas.Plasma, Math.Max(energy * heatModifier * sm.PlasmaReleaseModifier, 0f)); + absorbedGas.AdjustMoles(Gas.Oxygen, Math.Max((energy + absorbedGas.Temperature * heatModifier - Atmospherics.T0C) * sm.OxygenReleaseEfficiencyModifier, 0f)); - // Healing damage - if (moles < sm.MolePenaltyThreshold) - { - // left there a very small float value so that it doesn't eventually divide by 0. - var healHeatDamage = Math.Min(absorbedGas.Temperature - tempThreshold, 0.001f) / 150; - totalDamage += healHeatDamage; - } + _atmosphere.Merge(mix, absorbedGas); - // Check for space tiles next to SM - // TODO: change moles out for checking if adjacent tiles exist - var adjacentMixes = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); - foreach (var ind in adjacentMixes) - { - if (ind.TotalMoles != 0) - continue; + var powerReduction = (float) Math.Pow(sm.Power / 500, 3); - var integrity = GetIntegrity(sm); + // After this point power is lowered + // This wraps around to the begining of the function + sm.Power = Math.Max(sm.Power - Math.Min(powerReduction * powerlossInhibitor, sm.Power * 0.83f * powerlossInhibitor), 0f); + } - var factor = integrity switch - { - < 10 => 0.0005f, - < 25 => 0.0009f, - < 45 => 0.005f, - < 75 => 0.002f, - _ => 0f - }; + /// + /// Shoot lightning bolts depensing on accumulated power. + /// + private void SupermatterZap(EntityUid uid, SupermatterComponent sm) + { + // Divide power by it's threshold to get a value from 0 to 1, then multiply by the amount of possible lightnings + var zapPower = sm.Power / sm.PowerPenaltyThreshold * sm.LightningPrototypes.Length; + var zapPowerNorm = (int) Math.Clamp(zapPower, 0, sm.LightningPrototypes.Length - 1); + _lightning.ShootRandomLightnings(uid, 3.5f, sm.Power > sm.PowerPenaltyThreshold ? 3 : 1, sm.LightningPrototypes[zapPowerNorm]); + } - totalDamage += Math.Clamp(sm.Power * factor * sm.DamageIncreaseMultiplier, 0, sm.MaxSpaceExposureDamage); + /// + /// Handles environmental damage. + /// + private void HandleDamage(EntityUid uid, SupermatterComponent sm) + { + var xform = Transform(uid); + var indices = _xform.GetGridOrMapTilePosition(uid, xform); - break; - } + sm.DamageArchived = sm.Damage; - var damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DelaminationPoint, totalDamage); + var mix = _atmosphere.GetContainingMixture(uid, true, true); - // prevent it from going negative - sm.Damage = Math.Clamp(damage, 0, float.PositiveInfinity); + // We're in space or there is no gas to process + if (!xform.GridUid.HasValue || mix is not { } || mix.TotalMoles == 0f) + { + sm.Damage += Math.Max(sm.Power / 1000 * sm.DamageIncreaseMultiplier, 0.1f); + return; } - /// - /// Handles announcements. - /// - private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) - { - var message = string.Empty; - var global = false; + // Absorbed gas from surrounding area + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; - var integrity = GetIntegrity(sm).ToString("0.00"); + var totalDamage = 0f; - // Special cases - if (sm.Damage < sm.DelaminationPoint && sm.Delamming) - { - message = Loc.GetString("supermatter-delam-cancel", ("integrity", integrity)); - sm.DelamAnnounced = false; - global = true; - } - if (sm.Delamming && !sm.DelamAnnounced) - { - var sb = new StringBuilder(); - var loc = string.Empty; - var alertLevel = "Yellow"; - - switch (_delamType) - { - case DelamType.Explosion: - default: - loc = "supermatter-delam-explosion"; - break; - - case DelamType.Singulo: - loc = "supermatter-delam-overmass"; - alertLevel = "Delta"; - break; - - case DelamType.Tesla: - loc = "supermatter-delam-tesla"; - alertLevel = "Delta"; - break; - - case DelamType.Cascade: - loc = "supermatter-delam-cascade"; - alertLevel = "Delta"; - break; - } - - var station = _station.GetOwningStation(uid); - if (station != null) - _alert.SetLevel((EntityUid) station, alertLevel, true, true, true, false); - - sb.AppendLine(Loc.GetString(loc)); - sb.AppendLine(Loc.GetString("supermatter-seconds-before-delam", ("seconds", sm.DelamTimer))); - - message = sb.ToString(); - global = true; - sm.DelamAnnounced = true; + var tempThreshold = Atmospherics.T0C + sm.HeatPenaltyThreshold; - SupermatterAnnouncement(uid, message, global); - return; - } - - // ignore the 0% integrity alarm - if (sm.Delamming) - return; + // Temperature start to have a positive effect on damage after 350 + var tempDamage = Math.Max(Math.Clamp(moles / 200f, .5f, 1f) * absorbedGas.Temperature - tempThreshold * sm.DynamicHeatResistance, 0f) * sm.MoleHeatThreshold / 150f * sm.DamageIncreaseMultiplier; + totalDamage += tempDamage; - // We are not taking consistent damage. Engis not needed. - if (sm.Damage <= sm.DamageArchived) - return; + // Power only starts affecting damage when it is above 5000 + var powerDamage = Math.Max(sm.Power - sm.PowerPenaltyThreshold, 0f) / 500f * sm.DamageIncreaseMultiplier; + totalDamage += powerDamage; - if (sm.Damage >= sm.WarningPoint) - { - message = Loc.GetString("supermatter-warning", ("integrity", integrity)); - if (sm.Damage >= sm.EmergencyPoint) - { - message = Loc.GetString("supermatter-emergency", ("integrity", integrity)); - global = true; - } - } - SupermatterAnnouncement(uid, message, global); - } + // Molar count only starts affecting damage when it is above 1800 + var moleDamage = Math.Max(moles - sm.MolePenaltyThreshold, 0) / 80 * sm.DamageIncreaseMultiplier; + totalDamage += moleDamage; - /// - /// Help the SM announce something. - /// - /// If true, does the station announcement. - /// If true, sends the announcement from Central Command. - public void SupermatterAnnouncement(EntityUid uid, string message, bool global = false, string? customSender = null) + // Healing damage + if (moles < sm.MolePenaltyThreshold) { - if (global) - { - var sender = customSender != null ? customSender : Loc.GetString("supermatter-announcer"); - _chat.DispatchStationAnnouncement(uid, message, sender, colorOverride: Color.Yellow); - return; - } - _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Speak, hideChat: false, checkRadioPrefix: true); + // left there a very small float value so that it doesn't eventually divide by 0. + var healHeatDamage = Math.Min(absorbedGas.Temperature - tempThreshold, 0.001f) / 150; + totalDamage += healHeatDamage; } - /// - /// Returns the integrity rounded to hundreds, e.g. 100.00% - /// - public float GetIntegrity(SupermatterComponent sm) + // Check for space tiles next to SM + // TODO: change moles out for checking if adjacent tiles exist + var adjacentMixes = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); + foreach (var ind in adjacentMixes) { - var integrity = sm.Damage / sm.DelaminationPoint; - integrity = (float) Math.Round(100 - integrity * 100, 2); - integrity = integrity < 0 ? 0 : integrity; - return integrity; - } + if (ind.TotalMoles != 0) + continue; - /// - /// Decide on how to delaminate. - /// - public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) - { - var mix = _atmosphere.GetContainingMixture(uid, true, true); + var integrity = GetIntegrity(sm); - if (mix is { }) + var factor = integrity switch { - var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); - var moles = absorbedGas.TotalMoles; - - if (moles >= sm.MolePenaltyThreshold) - return DelamType.Singulo; - } - if (sm.Power >= sm.PowerPenaltyThreshold) - return DelamType.Tesla; + < 10 => 0.0005f, + < 25 => 0.0009f, + < 45 => 0.005f, + < 75 => 0.002f, + _ => 0f + }; - // TODO: add resonance cascade when there's crazy conditions or a destabilizing crystal + totalDamage += Math.Clamp(sm.Power * factor * sm.DamageIncreaseMultiplier, 0, sm.MaxSpaceExposureDamage); - return DelamType.Explosion; + break; } - /// - /// Handle the end of the station. - /// - private void HandleDelamination(EntityUid uid, SupermatterComponent sm) - { - var xform = Transform(uid); + var damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DelaminationPoint, totalDamage); - _delamType = ChooseDelamType(uid, sm); + // prevent it from going negative + sm.Damage = Math.Clamp(damage, 0, float.PositiveInfinity); + } - if (!sm.Delamming) - { - sm.Delamming = true; - HandleAnnouncements(uid, sm); - } - if (sm.Damage < sm.DelaminationPoint && sm.Delamming) - { - sm.Delamming = false; - HandleAnnouncements(uid, sm); - } + /// + /// Handles announcements. + /// + private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) + { + var message = string.Empty; + var global = false; - sm.DelamTimerAccumulator++; + var integrity = GetIntegrity(sm).ToString("0.00"); - if (sm.DelamTimerAccumulator < sm.DelamTimer) - return; + // Special cases + if (sm.Damage < sm.DelaminationPoint && sm.Delamming) + { + message = Loc.GetString("supermatter-delam-cancel", ("integrity", integrity)); + sm.DelamAnnounced = false; + global = true; + } + if (sm.Delamming && !sm.DelamAnnounced) + { + var sb = new StringBuilder(); + var loc = string.Empty; + var alertLevel = sm.AlertCodeYellowId; - switch (_delamType) + switch (sm.PreferredDelamType) { case DelamType.Explosion: default: - _explosion.TriggerExplosive(uid); + loc = "supermatter-delam-explosion"; break; case DelamType.Singulo: - Spawn(sm.SingularityPrototypeId, xform.Coordinates); + loc = "supermatter-delam-overmass"; + alertLevel = sm.AlertCodeDeltaId; break; case DelamType.Tesla: - Spawn(sm.TeslaPrototypeId, xform.Coordinates); + loc = "supermatter-delam-tesla"; + alertLevel = sm.AlertCodeDeltaId; break; case DelamType.Cascade: - Spawn(sm.SupermatterKudzuPrototypeId, xform.Coordinates); + loc = "supermatter-delam-cascade"; + alertLevel = sm.AlertCodeDeltaId; break; } + + var station = _station.GetOwningStation(uid); + if (station != null) + _alert.SetLevel((EntityUid) station, alertLevel, true, true, true, false); + + sb.AppendLine(Loc.GetString(loc)); + sb.AppendLine(Loc.GetString("supermatter-seconds-before-delam", ("seconds", sm.DelamTimer))); + + message = sb.ToString(); + global = true; + sm.DelamAnnounced = true; + + SupermatterAnnouncement(uid, message, global); + return; } - private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) - { - var isAggressive = sm.Damage > sm.WarningPoint; - var isDelamming = sm.Damage > sm.DelaminationPoint; + // ignore the 0% integrity alarm + if (sm.Delamming) + return; + + // We are not taking consistent damage. Engis not needed. + if (sm.Damage <= sm.DamageArchived) + return; - if (!isAggressive && !isDelamming) + if (sm.Damage >= sm.WarningPoint) + { + message = Loc.GetString("supermatter-warning", ("integrity", integrity)); + if (sm.Damage >= sm.EmergencyPoint) { - sm.AudioStream = _audio.Stop(sm.AudioStream); - return; + message = Loc.GetString("supermatter-emergency", ("integrity", integrity)); + global = true; } + } + SupermatterAnnouncement(uid, message, global); + } - var smSound = isDelamming ? SupermatterSound.Delam : SupermatterSound.Aggressive; - - if (sm.SmSound == smSound) - return; - - sm.AudioStream = _audio.Stop(sm.AudioStream); - sm.SmSound = smSound; + /// + /// Help the SM announce something. + /// + /// If true, does the station announcement. + /// If true, sends the announcement from Central Command. + public void SupermatterAnnouncement(EntityUid uid, string message, bool global = false, string? customSender = null) + { + if (global) + { + var sender = customSender != null ? customSender : Loc.GetString("supermatter-announcer"); + _chat.DispatchStationAnnouncement(uid, message, sender, colorOverride: Color.Yellow); + return; } + _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Speak, hideChat: false, checkRadioPrefix: true); + } - #endregion + /// + /// Returns the integrity rounded to hundreds, e.g. 100.00% + /// + public float GetIntegrity(SupermatterComponent sm) + { + var integrity = sm.Damage / sm.DelaminationPoint; + integrity = (float) Math.Round(100 - integrity * 100, 2); + integrity = integrity < 0 ? 0 : integrity; + return integrity; + } - #region Event Handlers + /// + /// Decide on how to delaminate. + /// + public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) + { + var mix = _atmosphere.GetContainingMixture(uid, true, true); - private void OnMapInit(EntityUid uid, SupermatterComponent sm, MapInitEvent args) + if (mix is { }) { - // Set the Sound - _ambient.SetAmbience(uid, true); + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; - //Add Air to the initialized SM in the Map so it doesnt delam on default - var mix = _atmosphere.GetContainingMixture(uid, true, true); - mix?.AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); - mix?.AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); + if (moles >= sm.MolePenaltyThreshold) + return DelamType.Singulo; } + if (sm.Power >= sm.PowerPenaltyThreshold) + return DelamType.Tesla; + + // TODO: add resonance cascade when there's crazy conditions or a destabilizing crystal - private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCollideEvent args) + return DelamType.Explosion; + } + + /// + /// Handle the end of the station. + /// + private void HandleDelamination(EntityUid uid, SupermatterComponent sm) + { + var xform = Transform(uid); + + sm.PreferredDelamType = ChooseDelamType(uid, sm); + + if (!sm.Delamming) { - if (!sm.Activated) - sm.Activated = true; + sm.Delamming = true; + HandleAnnouncements(uid, sm); + } + if (sm.Damage < sm.DelaminationPoint && sm.Delamming) + { + sm.Delamming = false; + HandleAnnouncements(uid, sm); + } - var target = args.OtherEntity; - if (args.OtherBody.BodyType == BodyType.Static - || HasComp(target) - || _container.IsEntityInContainer(uid)) - return; + sm.DelamTimerAccumulator++; - if (!HasComp(target)) - { - EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); - _audio.PlayPvs(sm.DustSound, uid); - } + if (sm.DelamTimerAccumulator < sm.DelamTimer) + return; - EntityManager.QueueDeleteEntity(target); + switch (sm.PreferredDelamType) + { + case DelamType.Explosion: + default: + _explosion.TriggerExplosive(uid); + break; - if (TryComp(target, out var food)) - sm.Power += food.Energy; - else if (TryComp(target, out var projectile)) - sm.Power += (float) projectile.Damage.GetTotal(); - else - sm.Power++; + case DelamType.Singulo: + Spawn(sm.SingularityPrototypeId, xform.Coordinates); + break; + + case DelamType.Tesla: + Spawn(sm.TeslaPrototypeId, xform.Coordinates); + break; - sm.MatterPower += HasComp(target) ? 200 : 0; + case DelamType.Cascade: + Spawn(sm.SupermatterKudzuPrototypeId, xform.Coordinates); + break; } + } + + private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) + { + var isAggressive = sm.Damage > sm.WarningPoint; + var isDelamming = sm.Damage > sm.DelaminationPoint; - private void OnHandInteract(EntityUid uid, SupermatterComponent sm, ref InteractHandEvent args) + if (!isAggressive && !isDelamming) { - if (!sm.Activated) - sm.Activated = true; + sm.AudioStream = _audio.Stop(sm.AudioStream); + return; + } - var target = args.User; + var smSound = isDelamming ? SupermatterSound.Delam : SupermatterSound.Aggressive; - if (HasComp(target)) - return; + if (sm.SmSound == smSound) + return; + + sm.AudioStream = _audio.Stop(sm.AudioStream); + sm.SmSound = smSound; + } + + #endregion + + #region Event Handlers - sm.MatterPower += 200; + private void OnMapInit(EntityUid uid, SupermatterComponent sm, MapInitEvent args) + { + // Set the Sound + _ambient.SetAmbience(uid, true); + + //Add Air to the initialized SM in the Map so it doesnt delam on default + var mix = _atmosphere.GetContainingMixture(uid, true, true); + mix?.AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); + mix?.AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); + } + + private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCollideEvent args) + { + if (!sm.Activated) + sm.Activated = true; + + var target = args.OtherEntity; + if (args.OtherBody.BodyType == BodyType.Static + || HasComp(target) + || _container.IsEntityInContainer(uid)) + return; + if (!HasComp(target)) + { EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); _audio.PlayPvs(sm.DustSound, uid); - EntityManager.QueueDeleteEntity(target); } - private void OnItemInteract(EntityUid uid, SupermatterComponent sm, ref InteractUsingEvent args) - { - if (!sm.Activated) - sm.Activated = true; + EntityManager.QueueDeleteEntity(target); - if (sm.SliverRemoved) - return; + if (TryComp(target, out var food)) + sm.Power += food.Energy; + else if (TryComp(target, out var projectile)) + sm.Power += (float) projectile.Damage.GetTotal(); + else + sm.Power++; - if (!HasComp(args.Used)) - return; + sm.MatterPower += HasComp(target) ? 200 : 0; + } - var dae = new DoAfterArgs(EntityManager, args.User, 30f, new SupermatterDoAfterEvent(), args.Target) - { - BreakOnDamage = true, - BreakOnHandChange = false, - BreakOnTargetMove = true, - BreakOnUserMove = true, - BreakOnWeightlessMove = false, - NeedHand = true, - RequireCanInteract = true, - }; + private void OnHandInteract(EntityUid uid, SupermatterComponent sm, ref InteractHandEvent args) + { + if (!sm.Activated) + sm.Activated = true; - _doAfter.TryStartDoAfter(dae); - _popup.PopupClient(Loc.GetString("supermatter-tamper-begin"), uid, args.User); - } + var target = args.User; + + if (HasComp(target)) + return; + + sm.MatterPower += 200; + + EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); + _audio.PlayPvs(sm.DustSound, uid); + EntityManager.QueueDeleteEntity(target); + } + + private void OnItemInteract(EntityUid uid, SupermatterComponent sm, ref InteractUsingEvent args) + { + if (!sm.Activated) + sm.Activated = true; + + if (sm.SliverRemoved) + return; + + if (!HasComp(args.Used)) + return; - private void OnGetSliver(EntityUid uid, SupermatterComponent sm, ref SupermatterDoAfterEvent args) + var dae = new DoAfterArgs(EntityManager, args.User, 30f, new SupermatterDoAfterEvent(), args.Target) { - if (args.Cancelled) - return; + BreakOnDamage = true, + BreakOnHandChange = false, + BreakOnTargetMove = true, + BreakOnUserMove = true, + BreakOnWeightlessMove = false, + NeedHand = true, + RequireCanInteract = true, + }; + + _doAfter.TryStartDoAfter(dae); + _popup.PopupClient(Loc.GetString("supermatter-tamper-begin"), uid, args.User); + } + + private void OnGetSliver(EntityUid uid, SupermatterComponent sm, ref SupermatterDoAfterEvent args) + { + if (args.Cancelled) + return; - // your criminal actions will not go unnoticed - sm.Damage += sm.DelaminationPoint / 10; + // your criminal actions will not go unnoticed + sm.Damage += sm.DelaminationPoint / 10; - var integrity = GetIntegrity(sm).ToString("0.00"); - SupermatterAnnouncement(uid, Loc.GetString("supermatter-announcement-cc-tamper", ("integrity", integrity)), true, "Central Command"); + var integrity = GetIntegrity(sm).ToString("0.00"); + SupermatterAnnouncement(uid, Loc.GetString("supermatter-announcement-cc-tamper", ("integrity", integrity)), true, "Central Command"); - Spawn(sm.SliverPrototypeId, _transform.GetMapCoordinates(args.User)); - _popup.PopupClient(Loc.GetString("supermatter-tamper-end"), uid, args.User); + Spawn(sm.SliverPrototypeId, _transform.GetMapCoordinates(args.User)); + _popup.PopupClient(Loc.GetString("supermatter-tamper-end"), uid, args.User); - sm.DelamTimer /= 2; - } + sm.DelamTimer /= 2; + } - private void OnExamine(EntityUid uid, SupermatterComponent sm, ref ExaminedEvent args) + private void OnExamine(EntityUid uid, SupermatterComponent sm, ref ExaminedEvent args) + { + // get all close and personal to it + if (args.IsInDetailsRange) { - // get all close and personal to it - if (args.IsInDetailsRange) - { - args.PushMarkup(Loc.GetString("supermatter-examine-integrity", ("integrity", GetIntegrity(sm).ToString("0.00")))); - } + args.PushMarkup(Loc.GetString("supermatter-examine-integrity", ("integrity", GetIntegrity(sm).ToString("0.00")))); } - - #endregion } + + #endregion } diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index e37b7ec8af4..9aad23d3875 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -241,7 +241,7 @@ public sealed partial class SupermatterComponent : Component ///
[ViewVariables(VVAccess.ReadOnly)] [DataField("powerPenaltyThreshold")] - public float PowerPenaltyThreshold = 2500f; + public float PowerPenaltyThreshold = 4000f; /// /// Maximum safe operational temperature in degrees Celsius. Supermatter begins taking damage above this temperature. @@ -307,11 +307,24 @@ public sealed partial class SupermatterComponent : Component [DataField("explosionPoint")] public int DelaminationPoint = 900; - public bool DelamAnnounced = false; - [ViewVariables(VVAccess.ReadOnly)] public bool Delamming = false; + [ViewVariables(VVAccess.ReadOnly)] + public DelamType PreferredDelamType = DelamType.Explosion; + + #endregion + + #region Announcements + + [DataField("alertCodeYellowId")] + public string AlertCodeYellowId = "yellow"; + + [DataField("alertCodeDeltaId")] + public string AlertCodeDeltaId = "delta"; + + public bool DelamAnnounced = false; + #endregion #region Gases diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml index 4511f86f179..3075aa9ba4e 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml @@ -64,4 +64,7 @@ intensitySlope: 5 totalIntensity: 10000 - type: GuideHelp - guides: [ Supermatter, Power ] \ No newline at end of file + guides: [ Supermatter, Power ] + - type: WarpPoint + follow: true + location: supermatter \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml index 36502fe532c..ab67ce41c66 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml @@ -1,6 +1,6 @@ - + # The Supermatter Engine From 4570415fc175095155ff7728aa661f3c6b745c7f Mon Sep 17 00:00:00 2001 From: whateverusername0 Date: Wed, 26 Jun 2024 21:27:22 +1000 Subject: [PATCH 23/38] moar oopdates --- .../Supermatter/Systems/SupermatterSystem.cs | 25 ++++++++++--------- .../Components/SupermatterComponent.cs | 12 ++++----- .../Generation/Singularity/singularity.yml | 1 + .../Generation/Supermatter/supermatter.yml | 4 ++- .../Power/Generation/Tesla/coil.yml | 2 ++ .../Power/Generation/Tesla/energyball.yml | 1 + 6 files changed, 26 insertions(+), 19 deletions(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index bfec02795e7..cb1b1b9fa27 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -23,6 +23,7 @@ using Content.Server.DoAfter; using Content.Server.Popups; using System.Linq; +using Content.Shared.Audio; namespace Content.Server.Supermatter.Systems; @@ -34,7 +35,7 @@ public sealed class SupermatterSystem : EntitySystem [Dependency] private readonly ExplosionSystem _explosion = default!; [Dependency] private readonly TransformSystem _xform = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; - [Dependency] private readonly AmbientSoundSystem _ambient = default!; + [Dependency] private readonly SharedAmbientSoundSystem _ambient = default!; [Dependency] private readonly LightningSystem _lightning = default!; [Dependency] private readonly AlertLevelSystem _alert = default!; [Dependency] private readonly StationSystem _station = default!; @@ -479,24 +480,24 @@ private void HandleDelamination(EntityUid uid, SupermatterComponent sm) } } + /// + /// Swaps out ambience sounds whether the SM is delamming or not. + /// private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) { - var isAggressive = sm.Damage > sm.WarningPoint; - var isDelamming = sm.Damage > sm.DelaminationPoint; + var ambient = Comp(uid); - if (!isAggressive && !isDelamming) - { - sm.AudioStream = _audio.Stop(sm.AudioStream); + if (ambient == null) return; - } - var smSound = isDelamming ? SupermatterSound.Delam : SupermatterSound.Aggressive; + if (sm.Delamming && sm.CurrentSoundLoop != sm.DelamSound) + sm.CurrentSoundLoop = sm.DelamSound; - if (sm.SmSound == smSound) - return; + else if (!sm.Delamming && sm.CurrentSoundLoop != sm.CalmSound) + sm.CurrentSoundLoop = sm.CalmSound; - sm.AudioStream = _audio.Stop(sm.AudioStream); - sm.SmSound = smSound; + if (ambient.Sound != sm.CurrentSoundLoop) + _ambient.SetSound(uid, sm.CurrentSoundLoop, ambient); } #endregion diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 9aad23d3875..5bbefff8acf 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -56,18 +56,18 @@ public sealed partial class SupermatterComponent : Component [DataField("collisionResultPrototype")] public string CollisionResultPrototypeId = "Ash"; - /// - /// Current audiostream. - /// - public EntityUid? AudioStream; - public SupermatterSound? SmSound; - [DataField("dustSound")] public SoundSpecifier DustSound = new SoundPathSpecifier("/Audio/Effects/Grenades/Supermatter/supermatter_start.ogg"); + [DataField("calmSound")] + public SoundSpecifier CalmSound = new SoundPathSpecifier("/Audio/Supermatter/calm.ogg"); + [DataField("delamSound")] public SoundSpecifier DelamSound = new SoundPathSpecifier("/Audio/Supermatter/delamming.ogg"); + [DataField("currentSoundLoop")] + public SoundSpecifier CurrentSoundLoop = new SoundPathSpecifier("/Audio/Supermatter/calm.ogg"); + #endregion #region Processing diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml index 25d219ab945..b8d66c61e38 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Singularity/singularity.yml @@ -3,6 +3,7 @@ name: gravitational singularity description: A mesmerizing swirl of darkness that sucks in everything. If it's moving towards you, run. components: + - type: SupermatterImmune - type: Clickable - type: AmbientSound volume: -4 diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml index 3075aa9ba4e..1351b88a172 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml @@ -67,4 +67,6 @@ guides: [ Supermatter, Power ] - type: WarpPoint follow: true - location: supermatter \ No newline at end of file + location: supermatter + - type: SinguloFood + energy: 10000 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml index f236bb8a41e..e2efd89eb5c 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/coil.yml @@ -5,6 +5,7 @@ placement: mode: SnapgridCenter components: + - type: SupermatterImmune - type: Transform anchored: true - type: Physics @@ -111,6 +112,7 @@ placement: mode: SnapgridCenter components: + - type: SupermatterImmune - type: Transform anchored: true - type: Physics diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml index 4567c6d0440..c5c980193f3 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Tesla/energyball.yml @@ -2,6 +2,7 @@ id: BaseEnergyBall abstract: true components: + - type: SupermatterImmune - type: Clickable - type: Physics bodyType: KinematicController From de91dbdaae848ea291b8378203a7b05e73c54f6c Mon Sep 17 00:00:00 2001 From: whateverusername0 Date: Mon, 1 Jul 2024 19:36:34 +1000 Subject: [PATCH 24/38] womp --- .../Supermatter/Systems/SupermatterSystem.cs | 28 ++++++------------- .../Generation/Supermatter/supermatter.yml | 4 +-- .../Objectives/stealTargetGroups.yml | 7 +++++ 3 files changed, 17 insertions(+), 22 deletions(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index cb1b1b9fa27..af773e7c5b6 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -324,34 +324,22 @@ private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) { var sb = new StringBuilder(); var loc = string.Empty; - var alertLevel = sm.AlertCodeYellowId; switch (sm.PreferredDelamType) { case DelamType.Explosion: - default: - loc = "supermatter-delam-explosion"; - break; - - case DelamType.Singulo: - loc = "supermatter-delam-overmass"; - alertLevel = sm.AlertCodeDeltaId; - break; - - case DelamType.Tesla: - loc = "supermatter-delam-tesla"; - alertLevel = sm.AlertCodeDeltaId; - break; - - case DelamType.Cascade: - loc = "supermatter-delam-cascade"; - alertLevel = sm.AlertCodeDeltaId; - break; + default: loc = "supermatter-delam-explosion"; break; + + case DelamType.Singulo: loc = "supermatter-delam-overmass"; break; + + case DelamType.Tesla: loc = "supermatter-delam-tesla"; break; + + case DelamType.Cascade: loc = "supermatter-delam-cascade"; break; } var station = _station.GetOwningStation(uid); if (station != null) - _alert.SetLevel((EntityUid) station, alertLevel, true, true, true, false); + _alert.SetLevel((EntityUid) station, sm.AlertCodeDeltaId, true, true, true, false); sb.AppendLine(Loc.GetString(loc)); sb.AppendLine(Loc.GetString("supermatter-seconds-before-delam", ("seconds", sm.DelamTimer))); diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml index 1351b88a172..1f3708ce65e 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml @@ -60,9 +60,9 @@ color: "#ffe000" - type: Explosive explosionType: Supermatter - maxIntensity: 10000 + maxIntensity: 25000 intensitySlope: 5 - totalIntensity: 10000 + totalIntensity: 25000 - type: GuideHelp guides: [ Supermatter, Power ] - type: WarpPoint diff --git a/Resources/Prototypes/Objectives/stealTargetGroups.yml b/Resources/Prototypes/Objectives/stealTargetGroups.yml index 006c061666b..ea74c424f5e 100644 --- a/Resources/Prototypes/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/Objectives/stealTargetGroups.yml @@ -1,5 +1,12 @@ # Traitor single items +- type: stealTargetGroup + id: SupermatterSliver + name: supermatter sliver + sprite: + sprite: Supermatter/supermatter_sliver.rsi + state: icon + - type: stealTargetGroup id: Hypospray name: hypospray From 772997ca317b30f89f71ad9bc5e9e96876de462c Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Sun, 21 Jul 2024 22:48:09 -0400 Subject: [PATCH 25/38] Update SupermatterSystem.cs --- Content.Server/Supermatter/Systems/SupermatterSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index af773e7c5b6..3853a368c5c 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -275,8 +275,8 @@ private void HandleDamage(EntityUid uid, SupermatterComponent sm) // Check for space tiles next to SM // TODO: change moles out for checking if adjacent tiles exist - var adjacentMixes = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); - foreach (var ind in adjacentMixes) + var enumerator = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); + while (enumerator.MoveNext(out var ind)) { if (ind.TotalMoles != 0) continue; From d67f0056edb9ba3977b50f687b6aa6d598f1e204 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Tue, 30 Jul 2024 19:43:43 -0400 Subject: [PATCH 26/38] Cleanup Deprecated VV Options --- .../Supermatter/Systems/SupermatterSystem.cs | 12 +- .../Components/SupermatterComponent.cs | 153 ++++++++---------- 2 files changed, 76 insertions(+), 89 deletions(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 3853a368c5c..306128a93eb 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -455,15 +455,15 @@ private void HandleDelamination(EntityUid uid, SupermatterComponent sm) break; case DelamType.Singulo: - Spawn(sm.SingularityPrototypeId, xform.Coordinates); + Spawn(sm.SingularitySpawnPrototype, xform.Coordinates); break; case DelamType.Tesla: - Spawn(sm.TeslaPrototypeId, xform.Coordinates); + Spawn(sm.TeslaSpawnPrototype, xform.Coordinates); break; case DelamType.Cascade: - Spawn(sm.SupermatterKudzuPrototypeId, xform.Coordinates); + Spawn(sm.SupermatterKudzuSpawnPrototype, xform.Coordinates); break; } } @@ -516,7 +516,7 @@ private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCol if (!HasComp(target)) { - EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); + EntityManager.SpawnEntity(sm.CollisionResultPrototype, Transform(target).Coordinates); _audio.PlayPvs(sm.DustSound, uid); } @@ -544,7 +544,7 @@ private void OnHandInteract(EntityUid uid, SupermatterComponent sm, ref Interact sm.MatterPower += 200; - EntityManager.SpawnEntity(sm.CollisionResultPrototypeId, Transform(target).Coordinates); + EntityManager.SpawnEntity(sm.CollisionResultPrototype, Transform(target).Coordinates); _audio.PlayPvs(sm.DustSound, uid); EntityManager.QueueDeleteEntity(target); } @@ -586,7 +586,7 @@ private void OnGetSliver(EntityUid uid, SupermatterComponent sm, ref Supermatter var integrity = GetIntegrity(sm).ToString("0.00"); SupermatterAnnouncement(uid, Loc.GetString("supermatter-announcement-cc-tamper", ("integrity", integrity)), true, "Central Command"); - Spawn(sm.SliverPrototypeId, _transform.GetMapCoordinates(args.User)); + Spawn(sm.SupermatterSliverPrototype, _transform.GetMapCoordinates(args.User)); _popup.PopupClient(Loc.GetString("supermatter-tamper-end"), uid, args.User); sm.DelamTimer /= 2; diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 5bbefff8acf..eb3b0fe54ae 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -15,22 +15,25 @@ public sealed partial class SupermatterComponent : Component /// /// The SM will only cycle if activated. /// - [DataField("activated")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool Activated = false; - [DataField("supermatterSliverPrototype")] - public string SliverPrototypeId = "SupermatterSliver"; + [DataField] + public string SupermatterSliverPrototype = "SupermatterSliver"; /// /// Affects delamination timer. If removed - delamination timer is divided by 2. /// - [DataField("sliverRemoved")] - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public bool SliverRemoved = false; - [DataField("whitelist")] + [DataField] public EntityWhitelist Whitelist = new(); + + /// + /// The ID of the projectile fired by Emitter machines. + /// + [DataField] public string IdTag = "EmitterBolt"; public string[] LightningPrototypes = @@ -41,104 +44,100 @@ public sealed partial class SupermatterComponent : Component "HyperchargedLightning" }; - [DataField("singularitySpawnPrototype")] - public string SingularityPrototypeId = "Singularity"; + [DataField] + public string SingularitySpawnPrototype = "Singularity"; - [DataField("teslaSpawnPrototype")] - public string TeslaPrototypeId = "TeslaEnergyBall"; + [DataField] + public string TeslaSpawnPrototype = "TeslaEnergyBall"; - [DataField("supermatterKudzuSpawnPrototype")] - public string SupermatterKudzuPrototypeId = "SupermatterKudzu"; + [DataField] + public string SupermatterKudzuSpawnPrototype = "SupermatterKudzu"; /// /// What spawns in the place of an unfortunate entity that got removed by the SM. /// - [DataField("collisionResultPrototype")] - public string CollisionResultPrototypeId = "Ash"; + [DataField] + public string CollisionResultPrototype = "Ash"; - [DataField("dustSound")] + [DataField] public SoundSpecifier DustSound = new SoundPathSpecifier("/Audio/Effects/Grenades/Supermatter/supermatter_start.ogg"); - [DataField("calmSound")] + [DataField] public SoundSpecifier CalmSound = new SoundPathSpecifier("/Audio/Supermatter/calm.ogg"); - [DataField("delamSound")] + [DataField] public SoundSpecifier DelamSound = new SoundPathSpecifier("/Audio/Supermatter/delamming.ogg"); - [DataField("currentSoundLoop")] + [DataField] public SoundSpecifier CurrentSoundLoop = new SoundPathSpecifier("/Audio/Supermatter/calm.ogg"); #endregion #region Processing - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float Power; - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MatterPower; - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float MatterPowerConversion = 10f; /// /// The portion of the gasmix we're on /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float GasEfficiency = 0.15f; /// /// Based on co2 percentage, slowly moves between 0 and 1. We use it to calc the powerloss_inhibitor /// - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float PowerlossDynamicScaling; /// /// Affects the amount of damage and minimum point at which the sm takes heat damage /// - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float DynamicHeatResistance = 1; /// /// Multiplier on damage the core takes from absorbing hot gas. /// Default is ~1/350 /// - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float MoleHeatPenalty = 0.00286f; /// /// Inverse of MoleHeatPenalty /// - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float MoleHeatThreshold = 350f; /// /// Multiplier on power generated by nuclear reactions /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("reactionpowerModifier")] + [DataField] public float ReactionPowerModifier = 0.55f; /// /// Acts as a multiplier on the amount that nuclear reactions increase the supermatter core temperature /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("thermalreleaseModifier")] + [DataField] public float ThermalReleaseModifier = 0.2f; /// /// Multiplier on how much plasma is released during supermatter reactions /// Default is ~1/750 /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("plasmareleaseModifier")] + [DataField] public float PlasmaReleaseModifier = 0.001333f; /// /// Multiplier on how much oxygen is released during supermatter reactions. /// Default is ~1/325 /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("oxygenreleaseModifier")] + [DataField] public float OxygenReleaseEfficiencyModifier = 0.0031f; #endregion @@ -148,44 +147,43 @@ public sealed partial class SupermatterComponent : Component /// /// We yell if over 50 damage every YellTimer Seconds /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float YellTimer = 60f; /// /// Set to YellTimer at first so it doesnt yell a minute after being hit /// - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float YellAccumulator = 60f; /// /// Timer for delam /// - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float DelamTimerAccumulator; /// /// Time until delam /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("delamTimer")] + [DataField] public float DelamTimer = 120f; /// /// The message timer /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float SpeakAccumulator = 60f; - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float UpdateAccumulator = 0f; - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float UpdateTimer = 1f; - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float ZapAccumulator = 0f; - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float ZapTimer = 10f; #endregion @@ -195,59 +193,52 @@ public sealed partial class SupermatterComponent : Component /// /// The amount of heat we apply scaled /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float HeatThreshold = 2500f; /// /// Higher == Higher percentage of inhibitor gas needed /// before the charge inertia chain reaction effect starts. /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("powerlossinhibitiongasThreshold")] + [DataField] public float PowerlossInhibitionGasThreshold = 0.20f; /// /// Higher == More moles of the gas are needed before the charge inertia chain reaction effect starts. /// Scales powerloss inhibition down until this amount of moles is reached /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("powerlossinhibitionmoleThreshold")] + [DataField] public float PowerlossInhibitionMoleThreshold = 20f; /// /// Bonus powerloss inhibition boost if this amount of moles is reached /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("powerlossinhibitionmoleboostThreshold")] + [DataField] public float PowerlossInhibitionMoleBoostThreshold = 500f; /// /// Above this value we can get lord singulo and independent mol damage, below it we can heal damage /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("molepenaltyThreshold")] + [DataField] public float MolePenaltyThreshold = 900f; /// /// More moles of gases are harder to heat than fewer, so let's scale heat damage around them /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("moleheatpenaltyThreshold")] + [DataField] public float MoleHeatPenaltyThreshold; /// /// The cutoff on power properly doing damage, pulling shit around, /// and delamming into a tesla. Low chance of pyro anomalies, +2 bolts of electricity /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("powerPenaltyThreshold")] + [DataField] public float PowerPenaltyThreshold = 4000f; /// /// Maximum safe operational temperature in degrees Celsius. Supermatter begins taking damage above this temperature. /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("heatpenaltyThreshold")] + [DataField] public float HeatPenaltyThreshold = 40f; #endregion @@ -257,72 +248,68 @@ public sealed partial class SupermatterComponent : Component /// /// The amount of damage we have currently /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float Damage = 0f; /// /// The damage we had before this cycle. Used to limit the damage we can take each cycle, and for safe alert /// - [ViewVariables(VVAccess.ReadWrite)] + [DataField] public float DamageArchived = 0f; /// /// Is multiplied by ExplosionPoint to cap evironmental damage per cycle /// - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public float DamageHardcap = 0.002f; /// /// Environmental damage is scaled by this /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("damageincreaseMultiplier")] + [DataField] public float DamageIncreaseMultiplier = 0.25f; /// /// If spaced sm wont take more than 2 damage per cycle /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("maxspaceexposureDamage")] + [DataField] public float MaxSpaceExposureDamage = 2; /// /// The point at which we should start sending messeges about the damage. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("WarningPoint")] + [DataField] public float WarningPoint = 50; /// /// The point at which we start sending announcements. /// - [ViewVariables(VVAccess.ReadWrite)] - [DataField("emergencyPoint")] + [DataField] public float EmergencyPoint = 500; /// /// The point at which we begin delaminating. /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("explosionPoint")] + [DataField] public int DelaminationPoint = 900; - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public bool Delamming = false; - [ViewVariables(VVAccess.ReadOnly)] + [DataField] public DelamType PreferredDelamType = DelamType.Explosion; #endregion #region Announcements - [DataField("alertCodeYellowId")] + [DataField] public string AlertCodeYellowId = "yellow"; - [DataField("alertCodeDeltaId")] + [DataField] public string AlertCodeDeltaId = "delta"; + [DataField] public bool DelamAnnounced = false; #endregion @@ -332,8 +319,7 @@ public sealed partial class SupermatterComponent : Component /// /// Is used to store gas /// - [ViewVariables(VVAccess.ReadOnly)] - [DataField("gasStorage")] + [DataField] public Dictionary GasStorage = new Dictionary() { {Gas.Oxygen, 0f}, @@ -351,7 +337,8 @@ public sealed partial class SupermatterComponent : Component /// Stores each gas facts /// // todo: replace this with serializable GasFact array something - public readonly Dictionary GasDataFields = new() + [DataField] + public Dictionary GasDataFields = new() { [Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f), [Gas.Nitrogen] = (TransmitModifier: 0f, HeatPenalty: -1.5f, PowerMixRatio: -1f), @@ -384,13 +371,13 @@ public enum DelamType : sbyte [Serializable, DataDefinition] public sealed partial class GasFact { - [DataField("transmitModifier")] + [DataField] public float TransmitModifier; - [DataField("heatPenalty")] + [DataField] public float HeatPenalty; - [DataField("powerMixRatio")] + [DataField] public float PowerMixRatio; public GasFact(float transmitModifier, float heatPenalty, float powerMixRatio) From 89e7d278fe9276a2cfb5161e2f62f979f8ba20ab Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Tue, 30 Jul 2024 19:49:38 -0400 Subject: [PATCH 27/38] Update SupermatterSystem.cs --- Content.Server/Supermatter/Systems/SupermatterSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 306128a93eb..eee4dbded18 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -18,6 +18,7 @@ using Content.Server.Station.Systems; using System.Text; using Content.Server.Kitchen.Components; +using Content.Shared.Chat; using Content.Shared.DoAfter; using Content.Shared.Examine; using Content.Server.DoAfter; From af52d7151481b95f3b6e5881a7c9bd30cf96345b Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Tue, 30 Jul 2024 19:51:36 -0400 Subject: [PATCH 28/38] Update SupermatterFoodComponent.cs --- .../Supermatter/Components/SupermatterFoodComponent.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs b/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs index 16ee486bfc0..9d235a4b4d3 100644 --- a/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterFoodComponent.cs @@ -3,7 +3,6 @@ namespace Content.Shared.Supermatter.Components; [RegisterComponent] public sealed partial class SupermatterFoodComponent : Component { - [ViewVariables(VVAccess.ReadWrite)] - [DataField("energy")] + [DataField] public int Energy { get; set; } = 1; } From c1a5c577a22b3f08294af35f31df4be7666c76c0 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Tue, 30 Jul 2024 20:08:21 -0400 Subject: [PATCH 29/38] Update SupermatterComponent.cs --- Content.Shared/Supermatter/Components/SupermatterComponent.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index eb3b0fe54ae..9c72e72105e 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -337,8 +337,7 @@ public sealed partial class SupermatterComponent : Component /// Stores each gas facts ///
// todo: replace this with serializable GasFact array something - [DataField] - public Dictionary GasDataFields = new() + public readonly Dictionary GasDataFields = new() { [Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f), [Gas.Nitrogen] = (TransmitModifier: 0f, HeatPenalty: -1.5f, PowerMixRatio: -1f), From db97eda605f3fb1553db9c7671da90ae45bfde2b Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Tue, 30 Jul 2024 21:59:20 -0400 Subject: [PATCH 30/38] Add job whitelist system (#28085) * Add job whitelist system * Address reviews * Fix name * Apply suggestions from code review Co-authored-by: Pieter-Jan Briers * cancinium --------- Co-authored-by: Pieter-Jan Briers --- .../Supermatter/Systems/SupermatterSystem.cs | 15 ++++-- Content.Shared/CCVar/CCVars.cs | 50 +++++++++++++++++++ 2 files changed, 62 insertions(+), 3 deletions(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index eee4dbded18..cfce8b989d9 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -1,4 +1,5 @@ using Robust.Shared.Audio.Systems; +using Robust.Shared.Configuration; using Robust.Shared.Containers; using Robust.Shared.Physics; using Robust.Shared.Physics.Events; @@ -25,6 +26,8 @@ using Content.Server.Popups; using System.Linq; using Content.Shared.Audio; +using System.Configuration; +using Content.Shared.CCVar; namespace Content.Server.Supermatter.Systems; @@ -43,6 +46,7 @@ public sealed class SupermatterSystem : EntitySystem [Dependency] private readonly DoAfterSystem _doAfter = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly IConfigurationManager _config = default!; public override void Initialize() { @@ -191,7 +195,7 @@ private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) //Radiate stuff if (TryComp(uid, out var rad)) - rad.Intensity = sm.Power * Math.Max(0, 1f + transmissionBonus / 10f) * 0.003f; + rad.Intensity = sm.Power * Math.Max(0, 1f + transmissionBonus / 10f) * 0.003f * _config.GetCVar(CCVars.SupermatterRadsModifier); //Power * 0.55 * a value between 1 and 0.8 var energy = sm.Power * sm.ReactionPowerModifier; @@ -405,6 +409,9 @@ public float GetIntegrity(SupermatterComponent sm) ///
public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) { + if (_config.GetCVar(CCVars.DoForceDelam)) + return _config.GetCVar(CCVars.ForcedDelamType); + var mix = _atmosphere.GetContainingMixture(uid, true, true); if (mix is { }) @@ -412,10 +419,12 @@ public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); var moles = absorbedGas.TotalMoles; - if (moles >= sm.MolePenaltyThreshold) + if (_config.GetCVar(CCVars.DoSingulooseDelam) + && moles >= sm.MolePenaltyThreshold * _config.GetCVar(CCVars.SingulooseMolesModifier)) return DelamType.Singulo; } - if (sm.Power >= sm.PowerPenaltyThreshold) + if (_config.GetCVar(CCVars.DoTeslooseDelam) + && sm.Power >= sm.PowerPenaltyThreshold * _config.GetCVar(CCVars.TesloosePowerModifier)) return DelamType.Tesla; // TODO: add resonance cascade when there's crazy conditions or a destabilizing crystal diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 3c3bfa8862d..36d16fac238 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1,3 +1,4 @@ +using Content.Shared.Supermatter.Components; using Robust.Shared; using Robust.Shared.Configuration; @@ -2347,5 +2348,54 @@ public static readonly CVarDef CVarDef.Create("contests.max_percentage", 0.25f, CVar.REPLICATED | CVar.SERVER); #endregion + + #region Supermatter System + + /// + /// With completely default supermatter values, Singuloose delamination will occur if engineers inject at least 900 moles of coolant per tile + /// in the crystal chamber. For reference, a gas canister contains 1800 moles of air. This Cvar directly multiplies the amount of moles required to singuloose. + /// + public static readonly CVarDef SingulooseMolesModifier = + CVarDef.Create("supermatter.singuloose_moles_modifier", 1f, CVar.SERVER); + + /// + /// Toggles whether or not Singuloose delaminations can occur. If both Singuloose and Tesloose are disabled, it will always delam into a Nuke. + /// + public static readonly CVarDef DoSingulooseDelam = + CVarDef.Create("supermatter.do_singuloose", true, CVar.SERVER); + + /// + /// By default, Supermatter will "Tesloose" if the conditions for Singuloose are not met, and the core's power is at least 4000. + /// The actual reasons for being at least this amount vary by how the core was screwed up, but traditionally it's caused by "The core is on fire". + /// This Cvar multiplies said power threshold for the purpose of determining if the delam is a Tesloose. + /// + public static readonly CVarDef TesloosePowerModifier = + CVarDef.Create("supermatter.tesloose_power_modifier", 1f, CVar.SERVER); + + /// + /// Toggles whether or not Tesloose delaminations can occur. If both Singuloose and Tesloose are disabled, it will always delam into a Nuke. + /// + public static readonly CVarDef DoTeslooseDelam = + CVarDef.Create("supermatter.do_tesloose", true, CVar.SERVER); + + /// + /// When true, bypass the normal checks to determine delam type, and instead use the type chosen by supermatter.forced_delam_type + /// + public static readonly CVarDef DoForceDelam = + CVarDef.Create("supermatter.do_force_delam", false, CVar.SERVER); + + /// + /// If supermatter.do_force_delam is true, this determines the delamination type, bypassing the normal checks. + /// + public static readonly CVarDef ForcedDelamType = + CVarDef.Create("supermatter.forced_delam_type", DelamType.Singulo, CVar.SERVER); + + /// + /// Directly multiplies the amount of rads put out by the supermatter. Be VERY conservative with this. + /// + public static readonly CVarDef SupermatterRadsModifier = + CVarDef.Create("supermatter.rads_modifier", 1f, CVar.SERVER); + + #endregion } } From c54c778dc7c98479020c0d16328bf7c2c4d8c0cd Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Tue, 30 Jul 2024 22:07:28 -0400 Subject: [PATCH 31/38] this is INTERESTING to learn --- Content.Shared/Supermatter/Components/SupermatterComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 9c72e72105e..1fbd0a6375d 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -359,7 +359,7 @@ public enum SupermatterSound : sbyte Delam = 1 } -public enum DelamType : sbyte +public enum DelamType : int { Explosion = 0, Singulo = 1, From 7ede3497df61095baebde284ced4487cea5bc254 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Wed, 31 Jul 2024 19:55:55 -0400 Subject: [PATCH 32/38] Update SupermatterSystem.cs --- Content.Server/Supermatter/Systems/SupermatterSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index cfce8b989d9..92609be2f98 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -528,6 +528,7 @@ private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCol { EntityManager.SpawnEntity(sm.CollisionResultPrototype, Transform(target).Coordinates); _audio.PlayPvs(sm.DustSound, uid); + sm.Power += args.OtherBody.Mass; } EntityManager.QueueDeleteEntity(target); From f4f0d355c8f1e833568661bc77b1b597bb351a93 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 2 Aug 2024 01:04:24 -0400 Subject: [PATCH 33/38] Apply suggestions from code review Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> Signed-off-by: VMSolidus --- .../Supermatter/Systems/SupermatterSystem.cs | 132 ++++++++++-------- 1 file changed, 71 insertions(+), 61 deletions(-) diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 92609be2f98..571a5d3568b 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -48,6 +48,7 @@ public sealed class SupermatterSystem : EntitySystem [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly IConfigurationManager _config = default!; + public override void Initialize() { base.Initialize(); @@ -61,6 +62,7 @@ public override void Initialize() SubscribeLocalEvent(OnGetSliver); } + public override void Update(float frameTime) { base.Update(frameTime); @@ -81,6 +83,7 @@ public override void Update(float frameTime) } } + public void Cycle(EntityUid uid, SupermatterComponent sm) { sm.ZapAccumulator++; @@ -128,14 +131,14 @@ private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) var gases = sm.GasStorage; var facts = sm.GasDataFields; - //Lets get the proportions of the gasses in the mix for scaling stuff later - //They range between 0 and 1 + // Lets get the proportions of the gasses in the mix for scaling stuff later + // They range between 0 and 1 gases = gases.ToDictionary( gas => gas.Key, gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / moles, 0, 1) ); - //No less then zero, and no greater then one, we use this to do explosions and heat to power transfer. + // No less then zero, and no greater then one, we use this to do explosions and heat to power transfer. var powerRatio = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].PowerMixRatio); // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. @@ -153,56 +156,60 @@ private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) // Effects the damage heat does to the crystal sm.DynamicHeatResistance = 1f; - // more moles of gases are harder to heat than fewer, - // so let's scale heat damage around them + // More moles of gases are harder to heat than fewer, so let's scale heat damage around them sm.MoleHeatPenaltyThreshold = (float) Math.Max(moles * sm.MoleHeatPenalty, 0.25); - // Ramps up or down in increments of 0.02 up to the proportion of co2 + // Ramps up or down in increments of 0.02 up to the proportion of CO2 // Given infinite time, powerloss_dynamic_scaling = co2comp - // Some value between 0 and 1 + // Some value from 0-1 if (moles > sm.PowerlossInhibitionMoleThreshold && gases[Gas.CarbonDioxide] > sm.PowerlossInhibitionGasThreshold) { var co2powerloss = Math.Clamp(gases[Gas.CarbonDioxide] - sm.PowerlossDynamicScaling, -0.02f, 0.02f); sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling + co2powerloss, 0f, 1f); } else - { sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling - 0.05f, 0f, 1f); - } - // Ranges from 0 to 1(1-(value between 0 and 1 * ranges from 1 to 1.5(mol / 500))) + // Ranges from 0~1(1 - (0~1 * 1~(1.5 * (mol / 500)))) // We take the mol count, and scale it to be our inhibitor var powerlossInhibitor = Math.Clamp( - 1 - sm.PowerlossDynamicScaling * - Math.Clamp(moles / sm.PowerlossInhibitionMoleBoostThreshold, 1f, 1.5f), + 1 + - sm.PowerlossDynamicScaling + * Math.Clamp( + moles / sm.PowerlossInhibitionMoleBoostThreshold, + 1f, 1.5f), 0f, 1f); - if (sm.MatterPower != 0) //We base our removed power off one 10th of the matter_power. + if (sm.MatterPower != 0) // We base our removed power off 1/10 the matter_power. { var removedMatter = Math.Max(sm.MatterPower / sm.MatterPowerConversion, 40); - //Adds at least 40 power + // Adds at least 40 power sm.Power = Math.Max(sm.Power + removedMatter, 0); - //Removes at least 40 matter power + // Removes at least 40 matter power sm.MatterPower = Math.Max(sm.MatterPower - removedMatter, 0); } - //based on gas mix, makes the power more based on heat or less effected by heat + // Based on gas mix, makes the power more based on heat or less effected by heat var tempFactor = powerRatio > 0.8 ? 50f : 30f; - //if there is more pluox and n2 then anything else, we receive no power increase from heat + // If there is more pluox and N2 then anything else, we receive no power increase from heat sm.Power = Math.Max(absorbedGas.Temperature * tempFactor / Atmospherics.T0C * powerRatio + sm.Power, 0); - //Radiate stuff + // Irradiate stuff if (TryComp(uid, out var rad)) - rad.Intensity = sm.Power * Math.Max(0, 1f + transmissionBonus / 10f) * 0.003f * _config.GetCVar(CCVars.SupermatterRadsModifier); + rad.Intensity = + sm.Power + * Math.Max(0, 1f + transmissionBonus / 10f) + * 0.003f + * _config.GetCVar(CCVars.SupermatterRadsModifier); - //Power * 0.55 * a value between 1 and 0.8 + // Power * 0.55 * 0.8~1 var energy = sm.Power * sm.ReactionPowerModifier; - // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock - // is on. An increase of 4*C @ 25% efficiency here results in an increase of 1*C / (#tilesincore) overall. - // Power * 0.55 * (some value between 1.5 and 23) / 5 + // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock is on. + // An increase of 4°C at 25% efficiency here results in an increase of 1°C / (#tilesincore) overall. + // Power * 0.55 * 1.5~23 / 5 absorbedGas.Temperature += energy * heatModifier * sm.ThermalReleaseModifier; absorbedGas.Temperature = Math.Max(0, Math.Min(absorbedGas.Temperature, sm.HeatThreshold * heatModifier)); @@ -225,7 +232,7 @@ private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) ///
private void SupermatterZap(EntityUid uid, SupermatterComponent sm) { - // Divide power by it's threshold to get a value from 0 to 1, then multiply by the amount of possible lightnings + // Divide power by its' threshold to get a value from 0-1, then multiply by the amount of possible lightnings var zapPower = sm.Power / sm.PowerPenaltyThreshold * sm.LightningPrototypes.Length; var zapPowerNorm = (int) Math.Clamp(zapPower, 0, sm.LightningPrototypes.Length - 1); _lightning.ShootRandomLightnings(uid, 3.5f, sm.Power > sm.PowerPenaltyThreshold ? 3 : 1, sm.LightningPrototypes[zapPowerNorm]); @@ -259,27 +266,36 @@ private void HandleDamage(EntityUid uid, SupermatterComponent sm) var tempThreshold = Atmospherics.T0C + sm.HeatPenaltyThreshold; // Temperature start to have a positive effect on damage after 350 - var tempDamage = Math.Max(Math.Clamp(moles / 200f, .5f, 1f) * absorbedGas.Temperature - tempThreshold * sm.DynamicHeatResistance, 0f) * sm.MoleHeatThreshold / 150f * sm.DamageIncreaseMultiplier; + var tempDamage = + Math.Max( + Math.Clamp(moles / 200f, .5f, 1f) + * absorbedGas.Temperature + - tempThreshold + * sm.DynamicHeatResistance, + 0f) + * sm.MoleHeatThreshold + / 150f + * sm.DamageIncreaseMultiplier; totalDamage += tempDamage; // Power only starts affecting damage when it is above 5000 var powerDamage = Math.Max(sm.Power - sm.PowerPenaltyThreshold, 0f) / 500f * sm.DamageIncreaseMultiplier; totalDamage += powerDamage; - // Molar count only starts affecting damage when it is above 1800 + // Mol count only starts affecting damage when it is above 1800 var moleDamage = Math.Max(moles - sm.MolePenaltyThreshold, 0) / 80 * sm.DamageIncreaseMultiplier; totalDamage += moleDamage; // Healing damage if (moles < sm.MolePenaltyThreshold) { - // left there a very small float value so that it doesn't eventually divide by 0. + // There's a very small float so that it doesn't divide by 0 var healHeatDamage = Math.Min(absorbedGas.Temperature - tempThreshold, 0.001f) / 150; totalDamage += healHeatDamage; } // Check for space tiles next to SM - // TODO: change moles out for checking if adjacent tiles exist + //TODO: Change moles out for checking if adjacent tiles exist var enumerator = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); while (enumerator.MoveNext(out var ind)) { @@ -304,12 +320,12 @@ private void HandleDamage(EntityUid uid, SupermatterComponent sm) var damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DelaminationPoint, totalDamage); - // prevent it from going negative + // Prevent it from going negative sm.Damage = Math.Clamp(damage, 0, float.PositiveInfinity); } /// - /// Handles announcements. + /// Handles core damage announcements /// private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) { @@ -325,6 +341,7 @@ private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) sm.DelamAnnounced = false; global = true; } + if (sm.Delamming && !sm.DelamAnnounced) { var sb = new StringBuilder(); @@ -332,14 +349,10 @@ private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) switch (sm.PreferredDelamType) { - case DelamType.Explosion: - default: loc = "supermatter-delam-explosion"; break; - - case DelamType.Singulo: loc = "supermatter-delam-overmass"; break; - - case DelamType.Tesla: loc = "supermatter-delam-tesla"; break; - - case DelamType.Cascade: loc = "supermatter-delam-cascade"; break; + case DelamType.Cascade: loc = "supermatter-delam-cascade"; break; + case DelamType.Singulo: loc = "supermatter-delam-overmass"; break; + case DelamType.Tesla: loc = "supermatter-delam-tesla"; break; + default: loc = "supermatter-delam-explosion"; break; } var station = _station.GetOwningStation(uid); @@ -357,11 +370,11 @@ private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) return; } - // ignore the 0% integrity alarm + // Ignore the 0% integrity alarm if (sm.Delamming) return; - // We are not taking consistent damage. Engis not needed. + // We are not taking consistent damage, Engineers aren't needed if (sm.Damage <= sm.DamageArchived) return; @@ -374,22 +387,21 @@ private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) global = true; } } + SupermatterAnnouncement(uid, message, global); } - /// - /// Help the SM announce something. - /// - /// If true, does the station announcement. - /// If true, sends the announcement from Central Command. - public void SupermatterAnnouncement(EntityUid uid, string message, bool global = false, string? customSender = null) + /// If true, sends a station announcement + /// Localisation string for a custom announcer name + public void SendSupermatterAnnouncement(EntityUid uid, string message, bool global = false, string? customSender = null) { if (global) { - var sender = customSender != null ? customSender : Loc.GetString("supermatter-announcer"); + var sender = Loc.GetString(customSender != null ? customSender : "supermatter-announcer"); _chat.DispatchStationAnnouncement(uid, message, sender, colorOverride: Color.Yellow); return; } + _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Speak, hideChat: false, checkRadioPrefix: true); } @@ -423,11 +435,12 @@ public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) && moles >= sm.MolePenaltyThreshold * _config.GetCVar(CCVars.SingulooseMolesModifier)) return DelamType.Singulo; } + if (_config.GetCVar(CCVars.DoTeslooseDelam) && sm.Power >= sm.PowerPenaltyThreshold * _config.GetCVar(CCVars.TesloosePowerModifier)) return DelamType.Tesla; - // TODO: add resonance cascade when there's crazy conditions or a destabilizing crystal + //TODO: Add resonance cascade when there's crazy conditions or a destabilizing crystal return DelamType.Explosion; } @@ -446,6 +459,7 @@ private void HandleDelamination(EntityUid uid, SupermatterComponent sm) sm.Delamming = true; HandleAnnouncements(uid, sm); } + if (sm.Damage < sm.DelaminationPoint && sm.Delamming) { sm.Delamming = false; @@ -459,9 +473,8 @@ private void HandleDelamination(EntityUid uid, SupermatterComponent sm) switch (sm.PreferredDelamType) { - case DelamType.Explosion: - default: - _explosion.TriggerExplosive(uid); + case DelamType.Cascade: + Spawn(sm.SupermatterKudzuSpawnPrototype, xform.Coordinates); break; case DelamType.Singulo: @@ -472,14 +485,14 @@ private void HandleDelamination(EntityUid uid, SupermatterComponent sm) Spawn(sm.TeslaSpawnPrototype, xform.Coordinates); break; - case DelamType.Cascade: - Spawn(sm.SupermatterKudzuSpawnPrototype, xform.Coordinates); + default: + _explosion.TriggerExplosive(uid); break; } } /// - /// Swaps out ambience sounds whether the SM is delamming or not. + /// Swaps out ambience sounds when the SM is delamming or not. /// private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) { @@ -507,7 +520,7 @@ private void OnMapInit(EntityUid uid, SupermatterComponent sm, MapInitEvent args // Set the Sound _ambient.SetAmbience(uid, true); - //Add Air to the initialized SM in the Map so it doesnt delam on default + // Add Air to the initialized SM in the Map so it doesn't delam on its' own var mix = _atmosphere.GetContainingMixture(uid, true, true); mix?.AdjustMoles(Gas.Oxygen, Atmospherics.OxygenMolesStandard); mix?.AdjustMoles(Gas.Nitrogen, Atmospherics.NitrogenMolesStandard); @@ -520,8 +533,8 @@ private void OnCollideEvent(EntityUid uid, SupermatterComponent sm, ref StartCol var target = args.OtherEntity; if (args.OtherBody.BodyType == BodyType.Static - || HasComp(target) - || _container.IsEntityInContainer(uid)) + || HasComp(target) + || _container.IsEntityInContainer(uid)) return; if (!HasComp(target)) @@ -591,7 +604,7 @@ private void OnGetSliver(EntityUid uid, SupermatterComponent sm, ref Supermatter if (args.Cancelled) return; - // your criminal actions will not go unnoticed + // Your criminal actions will not go unnoticed sm.Damage += sm.DelaminationPoint / 10; var integrity = GetIntegrity(sm).ToString("0.00"); @@ -605,11 +618,8 @@ private void OnGetSliver(EntityUid uid, SupermatterComponent sm, ref Supermatter private void OnExamine(EntityUid uid, SupermatterComponent sm, ref ExaminedEvent args) { - // get all close and personal to it if (args.IsInDetailsRange) - { args.PushMarkup(Loc.GetString("supermatter-examine-integrity", ("integrity", GetIntegrity(sm).ToString("0.00")))); - } } #endregion From d9995645fd5753feab11b8fcdcc5d40ca4f76c23 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 2 Aug 2024 01:06:26 -0400 Subject: [PATCH 34/38] Apply suggestions from code review Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> Signed-off-by: VMSolidus --- Content.Shared/CCVar/CCVars.cs | 12 +-- .../Components/SupermatterComponent.cs | 73 ++++++++++--------- 2 files changed, 45 insertions(+), 40 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 36d16fac238..7e33ffdc308 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -2355,13 +2355,13 @@ public static readonly CVarDef /// With completely default supermatter values, Singuloose delamination will occur if engineers inject at least 900 moles of coolant per tile /// in the crystal chamber. For reference, a gas canister contains 1800 moles of air. This Cvar directly multiplies the amount of moles required to singuloose. /// - public static readonly CVarDef SingulooseMolesModifier = + public static readonly CVarDef SupermatterSingulooseMolesModifier = CVarDef.Create("supermatter.singuloose_moles_modifier", 1f, CVar.SERVER); /// /// Toggles whether or not Singuloose delaminations can occur. If both Singuloose and Tesloose are disabled, it will always delam into a Nuke. /// - public static readonly CVarDef DoSingulooseDelam = + public static readonly CVarDef SupermatterDoSingulooseDelam = CVarDef.Create("supermatter.do_singuloose", true, CVar.SERVER); /// @@ -2369,25 +2369,25 @@ public static readonly CVarDef /// The actual reasons for being at least this amount vary by how the core was screwed up, but traditionally it's caused by "The core is on fire". /// This Cvar multiplies said power threshold for the purpose of determining if the delam is a Tesloose. /// - public static readonly CVarDef TesloosePowerModifier = + public static readonly CVarDef SupermatterTesloosePowerModifier = CVarDef.Create("supermatter.tesloose_power_modifier", 1f, CVar.SERVER); /// /// Toggles whether or not Tesloose delaminations can occur. If both Singuloose and Tesloose are disabled, it will always delam into a Nuke. /// - public static readonly CVarDef DoTeslooseDelam = + public static readonly CVarDef SupermatterDoTeslooseDelam = CVarDef.Create("supermatter.do_tesloose", true, CVar.SERVER); /// /// When true, bypass the normal checks to determine delam type, and instead use the type chosen by supermatter.forced_delam_type /// - public static readonly CVarDef DoForceDelam = + public static readonly CVarDef SupermatterDoForceDelam = CVarDef.Create("supermatter.do_force_delam", false, CVar.SERVER); /// /// If supermatter.do_force_delam is true, this determines the delamination type, bypassing the normal checks. /// - public static readonly CVarDef ForcedDelamType = + public static readonly CVarDef SupermatterForcedDelamType = CVarDef.Create("supermatter.forced_delam_type", DelamType.Singulo, CVar.SERVER); /// diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 1fbd0a6375d..9a181cdda56 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -19,10 +19,11 @@ public sealed partial class SupermatterComponent : Component public bool Activated = false; [DataField] - public string SupermatterSliverPrototype = "SupermatterSliver"; + public string SliverPrototype = "SupermatterSliver"; /// - /// Affects delamination timer. If removed - delamination timer is divided by 2. + /// Affects delamination timer. + /// If removed - delamination timer is divided by 2. /// [DataField] public bool SliverRemoved = false; @@ -51,7 +52,7 @@ public sealed partial class SupermatterComponent : Component public string TeslaSpawnPrototype = "TeslaEnergyBall"; [DataField] - public string SupermatterKudzuSpawnPrototype = "SupermatterKudzu"; + public string KudzuSpawnPrototype = "SupermatterKudzu"; /// /// What spawns in the place of an unfortunate entity that got removed by the SM. @@ -83,6 +84,7 @@ public sealed partial class SupermatterComponent : Component [DataField] public float MatterPowerConversion = 10f; + /// /// The portion of the gasmix we're on /// @@ -90,26 +92,27 @@ public sealed partial class SupermatterComponent : Component public float GasEfficiency = 0.15f; /// - /// Based on co2 percentage, slowly moves between 0 and 1. We use it to calc the powerloss_inhibitor + /// Based on CO2 percentage, this slowly moves between 0 and 1. + /// We use it to calculate the powerloss_inhibitor. /// [DataField] public float PowerlossDynamicScaling; /// - /// Affects the amount of damage and minimum point at which the sm takes heat damage + /// Affects the amount of damage and minimum point at which the SM takes heat damage /// [DataField] public float DynamicHeatResistance = 1; /// /// Multiplier on damage the core takes from absorbing hot gas. - /// Default is ~1/350 + /// Default is ~1/350. /// [DataField] public float MoleHeatPenalty = 0.00286f; /// - /// Inverse of MoleHeatPenalty + /// Inverse of /// [DataField] public float MoleHeatThreshold = 350f; @@ -154,7 +157,7 @@ public sealed partial class SupermatterComponent : Component /// Set to YellTimer at first so it doesnt yell a minute after being hit /// [DataField] - public float YellAccumulator = 60f; + public float YellAccumulator = YellTimer; /// /// Timer for delam @@ -197,15 +200,14 @@ public sealed partial class SupermatterComponent : Component public float HeatThreshold = 2500f; /// - /// Higher == Higher percentage of inhibitor gas needed - /// before the charge inertia chain reaction effect starts. + /// Percentage of inhibitor gas needed before the charge inertia chain reaction effect starts. /// [DataField] public float PowerlossInhibitionGasThreshold = 0.20f; /// - /// Higher == More moles of the gas are needed before the charge inertia chain reaction effect starts. - /// Scales powerloss inhibition down until this amount of moles is reached + /// Moles of the gas needed before the charge inertia chain reaction effect starts. + /// Scales powerloss inhibition down until this amount of moles is reached. /// [DataField] public float PowerlossInhibitionMoleThreshold = 20f; @@ -236,7 +238,8 @@ public sealed partial class SupermatterComponent : Component public float PowerPenaltyThreshold = 4000f; /// - /// Maximum safe operational temperature in degrees Celsius. Supermatter begins taking damage above this temperature. + /// Maximum safe operational temperature in degrees Celsius. + /// Supermatter begins taking damage above this temperature. /// [DataField] public float HeatPenaltyThreshold = 40f; @@ -246,13 +249,14 @@ public sealed partial class SupermatterComponent : Component #region Damage /// - /// The amount of damage we have currently + /// The amount of damage taken /// [DataField] public float Damage = 0f; /// - /// The damage we had before this cycle. Used to limit the damage we can take each cycle, and for safe alert + /// The damage from before this cycle. + /// Used to limit the damage we can take each cycle, and for safe alert. /// [DataField] public float DamageArchived = 0f; @@ -270,28 +274,28 @@ public sealed partial class SupermatterComponent : Component public float DamageIncreaseMultiplier = 0.25f; /// - /// If spaced sm wont take more than 2 damage per cycle + /// Max space damage the SM will take per cycle /// [DataField] public float MaxSpaceExposureDamage = 2; /// - /// The point at which we should start sending messeges about the damage. + /// The point at which we should start sending radio messages about the damage. /// [DataField] - public float WarningPoint = 50; + public float DamageWarningThreshold = 50; /// - /// The point at which we start sending announcements. + /// The point at which we start sending station announcements about the damage. /// [DataField] - public float EmergencyPoint = 500; + public float DamageEmergencyThreshold = 500; /// - /// The point at which we begin delaminating. + /// The point at which the SM begins delaminating. /// [DataField] - public int DelaminationPoint = 900; + public int DamageDelaminationPoint = 900; [DataField] public bool Delamming = false; @@ -317,26 +321,26 @@ public sealed partial class SupermatterComponent : Component #region Gases /// - /// Is used to store gas + /// How much gas is in the SM /// [DataField] public Dictionary GasStorage = new Dictionary() { - {Gas.Oxygen, 0f}, - {Gas.Nitrogen, 0f}, - {Gas.CarbonDioxide, 0f}, - {Gas.Plasma, 0f}, - {Gas.Tritium, 0f}, - {Gas.WaterVapor, 0f}, - {Gas.Frezon, 0f}, - {Gas.Ammonia, 0f}, - {Gas.NitrousOxide, 0f}, + { Gas.Oxygen, 0f }, + { Gas.Nitrogen, 0f }, + { Gas.CarbonDioxide, 0f }, + { Gas.Plasma, 0f }, + { Gas.Tritium, 0f }, + { Gas.WaterVapor, 0f }, + { Gas.Frezon, 0f }, + { Gas.Ammonia, 0f }, + { Gas.NitrousOxide, 0f }, }; /// - /// Stores each gas facts + /// Stores information about how every gas interacts with the SM /// - // todo: replace this with serializable GasFact array something + //TODO: Replace this with serializable GasFact array something public readonly Dictionary GasDataFields = new() { [Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f), @@ -353,6 +357,7 @@ public sealed partial class SupermatterComponent : Component #endregion } + public enum SupermatterSound : sbyte { Aggressive = 0, From 50ed86bc26b5fc1b60353fbe01c5b964ae8af345 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 2 Aug 2024 01:10:36 -0400 Subject: [PATCH 35/38] Apply suggestions from code review Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> Signed-off-by: VMSolidus --- .../en-US/objectives/conditions/steal.ftl | 2 +- .../Locale/en-US/supermatter/supermatter.ftl | 18 +++++++++--------- .../Objects/Misc/supermatter_sliver.yml | 4 ++-- Resources/Prototypes/Guidebook/engineering.yml | 2 +- .../Guidebook/Engineering/Supermatter.xml | 8 ++++---- .../Supermatter/supermatter.rsi/meta.json | 8 +------- 6 files changed, 18 insertions(+), 24 deletions(-) diff --git a/Resources/Locale/en-US/objectives/conditions/steal.ftl b/Resources/Locale/en-US/objectives/conditions/steal.ftl index 8547a01db23..0709bf6e5e6 100644 --- a/Resources/Locale/en-US/objectives/conditions/steal.ftl +++ b/Resources/Locale/en-US/objectives/conditions/steal.ftl @@ -11,4 +11,4 @@ objective-condition-thief-animal-description = The {$itemName} would be a great objective-condition-thief-multiply-description = I need to get {$count} {MAKEPLURAL($itemName)} and take them with me. objective-condition-steal-smsliver-title = Cut off a sliver from the supermatter crystal. -objective-condition-steal-smsliver-description = Use any cutting tool that comes in handy. A scalpel is more recommended. Also, don't die of radiation poisoning. \ No newline at end of file +objective-condition-steal-smsliver-description = Use any cutting tool that comes in handy. A scalpel is more recommended. Also, don't die of radiation poisoning. diff --git a/Resources/Locale/en-US/supermatter/supermatter.ftl b/Resources/Locale/en-US/supermatter/supermatter.ftl index 5809181f86d..52593f5524e 100644 --- a/Resources/Locale/en-US/supermatter/supermatter.ftl +++ b/Resources/Locale/en-US/supermatter/supermatter.ftl @@ -1,19 +1,19 @@ supermatter-announcer = Automatic Supermatter Engine supermatter-examine-integrity = - It's integrity is [color=yellow]{$integrity}%[/color]. -supermatter-warning = + Its' integrity is [color=yellow]{$integrity}%[/color]. +supermatter-announcement-warning = Warning! Crystal hyperstructure integrity faltering! Integrity: {$integrity}%. -supermatter-emergency = +supermatter-announcement-emergency = DANGER! Crystal hyperstructure integrity reaching critical levels! Integrity: {$integrity}%. -supermatter-delam-explosion = +supermatter-announcement-delam-explosion = CRYSTAL DELAMINATION IMMINENT! The crystal has reached critical integrity failure! Emergency causality destabilization field has been engaged. -supermatter-delam-overmass = +supermatter-announcement-delam-overmass = CRYSTAL DELAMINATION IMMINENT! Crystal hyperstructure integrity has reached critical mass failure! Singularity formation imminent! -supermatter-delam-tesla = +supermatter-announcement-delam-tesla = CRYSTAL DELAMINATION IMMINENT! Crystal hyperstructure integrity has reached critical power surge failure! Energy ball formation imminent! -supermatter-delam-cascade = +supermatter-announcement-delam-cascade = CRYSTAL DELAMINATION IMMINENT! Harmonic frequency limits exceeded, casualty destabilization field could not be engaged! -supermatter-delam-cancel = +supermatter-announcement-delam-cancel = Crystalline hyperstructure returning to safe operating parameters. Failsafe has been Disengaged. Integrity: {$integrity}%. supermatter-seconds-before-delam = Estimated time before delamination: {$seconds} seconds. @@ -23,4 +23,4 @@ supermatter-tamper-end = You feel the power of a thousand suns laying on your palms. Or is it all the radiation? supermatter-announcement-cc-tamper = Our automatic casualty system has detected that the supermatter crystal structural integrity was compromised by an external force. - Engineering department, report to the supermatter engine immediately. \ No newline at end of file + Engineering department, report to the supermatter engine immediately. diff --git a/Resources/Prototypes/Entities/Objects/Misc/supermatter_sliver.yml b/Resources/Prototypes/Entities/Objects/Misc/supermatter_sliver.yml index e524a4fbf82..d62935523d5 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/supermatter_sliver.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/supermatter_sliver.yml @@ -2,7 +2,7 @@ parent: BaseItem id: SupermatterSliver name: supermatter sliver - description: A shard from the station's supermatter crystal. Highly radioactive. + description: A shard from the station's Supermatter crystal. Highly radioactive. components: - type: PointLight enabled: true @@ -22,4 +22,4 @@ - type: Tag tags: - HighRiskItem - - type: SupermatterImmune \ No newline at end of file + - type: SupermatterImmune diff --git a/Resources/Prototypes/Guidebook/engineering.yml b/Resources/Prototypes/Guidebook/engineering.yml index ef502d8ab4c..e08d46276cd 100644 --- a/Resources/Prototypes/Guidebook/engineering.yml +++ b/Resources/Prototypes/Guidebook/engineering.yml @@ -96,4 +96,4 @@ - type: guideEntry id: Supermatter name: guide-entry-sm - text: "/ServerInfo/Guidebook/Engineering/Supermatter.xml" \ No newline at end of file + text: "/ServerInfo/Guidebook/Engineering/Supermatter.xml" diff --git a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml index ab67ce41c66..7a07a0a8198 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml @@ -16,9 +16,9 @@ 1. The Supermatter crystal is [color=red]VERY DANGEROUS[/color]. Activating the crystal should be the last step in setting up any form of Supermatter based power! - 2. [color=red]PUT YOUR GOD DAMN RADIATION SUIT ON[/color]!! + 2. [color=red]PUT YOUR RADIATION SUIT ON[/color]. - 3. Most of setting up the Supermatter involves a gas loop that is designed to cool down the Supermatter chamber. Please have at least some knowledge of gases and their atmospheric properties. + 3. Most the Supermatter setup involves a gas loop that is designed to cool down the Supermatter chamber. Please have at least some knowledge of gases and their atmospheric properties. 4. Anything that bumps into the Supermatter is [color=red]fundamentally annihilated[/color]. [color=red]Do not touch it[/color]. This means weld and bolt the door to the chamber. @@ -28,9 +28,9 @@ 1. [color=#bffffe]Frezon[/color]. Aside from cooling down the Supermatter, it basically stops power and waste production, which may come handy if the Supermatter is close to delaminating and you need to shut it down fast. - 2. [color=#c20000]Nitrogen[/color]. N2 is the basic gas most Supermatter setups will run exclusively, being bog simple to set up for. It dampens the power generation from heat, and reduces the amount of plasma the SM belches out, making it good for when you aren't trying to do something silly. + 2. [color=#c20000]Nitrogen[/color]. N2 is the basic gas most Supermatter setups will run exclusively, being very simple to set up for. It dampens the power generation from heat, and reduces the amount of plasma the SM belches out, making it good for when you aren't trying to do something silly. - 3. [color=#b16d6d]Nitrous oxide[/color]. Reinforces the heat resistance of the crystal, allowing for much hotter setups than usual. Hovewer, at high temperatures it will decompose into Nitrogen and Oxygen. While N2 is good, O2 certainly is not. This O2 will also react with the Plasma to create Tritium and then... a Tritium fire. + 3. [color=#b16d6d]Nitrous oxide[/color]. Reinforces the heat resistance of the crystal, allowing for much hotter setups than usual. However, at high temperatures it will decompose into Nitrogen and Oxygen. While N2 is good, O2 certainly is not. This O2 will also react with the Plasma to create Tritium and then a Tritium fire. 4. [color=#62d5ca]Oxygen[/color]. Provides a boost to power transmission without actively increasing the waste gas amount or temperature. Pretty risky to use, as any disruption of the cooling loop will soon cause a plasma fire in the crystal chamber. Even just a high concentration of O2 will activate and continuously power the crystal. diff --git a/Resources/Textures/Supermatter/supermatter.rsi/meta.json b/Resources/Textures/Supermatter/supermatter.rsi/meta.json index 6f8f3e0bd82..6bca0558a89 100644 --- a/Resources/Textures/Supermatter/supermatter.rsi/meta.json +++ b/Resources/Textures/Supermatter/supermatter.rsi/meta.json @@ -9,13 +9,7 @@ "states": [ { "name": "supermatter", - "delays": [ - [ - 0.08, - 0.08, - 0.08 - ] - ] + "delays": [ [ 0.08, 0.08, 0.08 ] ] } ] } \ No newline at end of file From 7f63471f6600a04a349f811c8a12302f91134320 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 2 Aug 2024 01:11:04 -0400 Subject: [PATCH 36/38] Apply suggestions from code review Co-authored-by: DEATHB4DEFEAT <77995199+DEATHB4DEFEAT@users.noreply.github.com> Signed-off-by: VMSolidus --- Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml index 7a07a0a8198..6e89df44324 100644 --- a/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml +++ b/Resources/ServerInfo/Guidebook/Engineering/Supermatter.xml @@ -40,13 +40,13 @@ [color=red]7[/color]. [color=#ff9d00]Plasma[/color]. Very similar to Oxygen but provides a higher power boost as well as a much higher waste and heat penalty. The extreme pressures and volumes of gas produced by this gas are very likely to clog pipes and overheat the chamber. - [color=red]8[/color]. [color=#08a800]Tritium[/color]. Increases the power production of the Supermatter by up to 3 times, there is one slight issue with it. It is dangerous. It is very dangerous. Tritium is a horrifyingly irritable and jumpy gas. While it isn't as harmful to the heat level as Plasma is (just barely), it also has the second worst heat capacity of all gasses while Plasma has the second highest. This means that Plasma can be kept happy with enough cooling, whereas Tritium eagerly goes from a safe space loop into a burning hellfire. Add to this the byproduct of large amounts of Oxygen production (not exclusive to Tritium. An issue in a Plasma engine too), and you have a tritium fire and a very hot crystal. Do not use this gas unless you have a very strong understanding of atmospherics and the Supermatter, and are willing to get creative. + [color=red]8[/color]. [color=#08a800]Tritium[/color]. Increases the power production of the Supermatter by up to 3 times, there is one slight issue with it. It is dangerous. It is very dangerous. Tritium is a horrifyingly irritable and jumpy gas. While it isn't as harmful to the heat level as Plasma is (just barely), it also has the second worst heat capacity of all gasses while Plasma has the second highest. This means that Plasma can be kept happy with enough cooling, whereas Tritium eagerly goes from a safe space loop into a burning hellfire. Add to this the byproduct of large amounts of Oxygen production (not exclusive to Tritium, an issue in a Plasma engine too), and you have a tritium fire and a very hot crystal. Do not use this gas unless you have a very strong understanding of atmospherics and the Supermatter, and are willing to get creative. ## Practical guide to the Supermatter Now, forget about everything you've just read and get to setting up the most basic loop there is: the Nitrogen loop. - The atmospheric setup in it's most basic form should look like this: + The atmospheric setup in its' most basic form should look like this: (We did not have enough budget for images, here is a text representation) @@ -54,7 +54,7 @@ 2. Every gas gets pumped out of the chamber by using scrubbers set on Siphon on the other side. - 3. The output gets cooled down, filtered and excess nitrogen gets either outted into space or rerouted into the input. + 3. The output gets filtered, cooled down, and excess nitrogen gets either routed into space or rerouted into the input. That's basically it. I hope you understand at least something in this example. Now get to it! From 1c76a1f634688d456afc77a560968f4681631170 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 2 Aug 2024 19:56:44 -0400 Subject: [PATCH 37/38] Final Update --- .../Systems/SupermatterSystem.Processing.cs | 412 +++++++++++++++++ .../Supermatter/Systems/SupermatterSystem.cs | 426 +----------------- .../Components/SupermatterComponent.cs | 31 +- 3 files changed, 429 insertions(+), 440 deletions(-) create mode 100644 Content.Server/Supermatter/Systems/SupermatterSystem.Processing.cs diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.Processing.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.Processing.cs new file mode 100644 index 00000000000..7a62eba6f7d --- /dev/null +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.Processing.cs @@ -0,0 +1,412 @@ +using Content.Shared.Atmos; +using Content.Shared.Radiation.Components; +using Content.Shared.Supermatter.Components; +using System.Text; +using Content.Shared.Chat; +using System.Linq; +using Content.Shared.Audio; +using Content.Shared.CCVar; + +namespace Content.Server.Supermatter.Systems; + +public sealed partial class SupermatterSystem +{ + /// + /// Handle power and radiation output depending on atmospheric things. + /// + private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) + { + var mix = _atmosphere.GetContainingMixture(uid, true, true); + + if (mix is not { }) + return; + + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; + + if (!(moles > 0f)) + return; + + var gases = sm.GasStorage; + var facts = sm.GasDataFields; + + // Lets get the proportions of the gasses in the mix for scaling stuff later + // They range between 0 and 1 + gases = gases.ToDictionary( + gas => gas.Key, + gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / moles, 0, 1) + ); + + // No less then zero, and no greater then one, we use this to do explosions and heat to power transfer. + var powerRatio = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].PowerMixRatio); + + // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. + var heatModifier = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].HeatPenalty); + + // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. + var transmissionBonus = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].TransmitModifier); + + var h2OBonus = 1 - gases[Gas.WaterVapor] * 0.25f; + + powerRatio = Math.Clamp(powerRatio, 0, 1); + heatModifier = Math.Max(heatModifier, 0.5f); + transmissionBonus *= h2OBonus; + + // Effects the damage heat does to the crystal + sm.DynamicHeatResistance = 1f; + + // More moles of gases are harder to heat than fewer, so let's scale heat damage around them + sm.MoleHeatPenaltyThreshold = (float) Math.Max(moles * sm.MoleHeatPenalty, 0.25); + + // Ramps up or down in increments of 0.02 up to the proportion of CO2 + // Given infinite time, powerloss_dynamic_scaling = co2comp + // Some value from 0-1 + if (moles > sm.PowerlossInhibitionMoleThreshold && gases[Gas.CarbonDioxide] > sm.PowerlossInhibitionGasThreshold) + { + var co2powerloss = Math.Clamp(gases[Gas.CarbonDioxide] - sm.PowerlossDynamicScaling, -0.02f, 0.02f); + sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling + co2powerloss, 0f, 1f); + } + else + sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling - 0.05f, 0f, 1f); + + // Ranges from 0~1(1 - (0~1 * 1~(1.5 * (mol / 500)))) + // We take the mol count, and scale it to be our inhibitor + var powerlossInhibitor = + Math.Clamp( + 1 + - sm.PowerlossDynamicScaling + * Math.Clamp( + moles / sm.PowerlossInhibitionMoleBoostThreshold, + 1f, 1.5f), + 0f, 1f); + + if (sm.MatterPower != 0) // We base our removed power off 1/10 the matter_power. + { + var removedMatter = Math.Max(sm.MatterPower / sm.MatterPowerConversion, 40); + // Adds at least 40 power + sm.Power = Math.Max(sm.Power + removedMatter, 0); + // Removes at least 40 matter power + sm.MatterPower = Math.Max(sm.MatterPower - removedMatter, 0); + } + + // Based on gas mix, makes the power more based on heat or less effected by heat + var tempFactor = powerRatio > 0.8 ? 50f : 30f; + + // If there is more pluox and N2 then anything else, we receive no power increase from heat + sm.Power = Math.Max(absorbedGas.Temperature * tempFactor / Atmospherics.T0C * powerRatio + sm.Power, 0); + + // Irradiate stuff + if (TryComp(uid, out var rad)) + rad.Intensity = + sm.Power + * Math.Max(0, 1f + transmissionBonus / 10f) + * 0.003f + * _config.GetCVar(CCVars.SupermatterRadsModifier); + + // Power * 0.55 * 0.8~1 + var energy = sm.Power * sm.ReactionPowerModifier; + + // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock is on. + // An increase of 4°C at 25% efficiency here results in an increase of 1°C / (#tilesincore) overall. + // Power * 0.55 * 1.5~23 / 5 + absorbedGas.Temperature += energy * heatModifier * sm.ThermalReleaseModifier; + absorbedGas.Temperature = Math.Max(0, + Math.Min(absorbedGas.Temperature, sm.HeatThreshold * heatModifier)); + + // Release the waste + absorbedGas.AdjustMoles(Gas.Plasma, Math.Max(energy * heatModifier * sm.PlasmaReleaseModifier, 0f)); + absorbedGas.AdjustMoles(Gas.Oxygen, Math.Max((energy + absorbedGas.Temperature * heatModifier - Atmospherics.T0C) * sm.OxygenReleaseEfficiencyModifier, 0f)); + + _atmosphere.Merge(mix, absorbedGas); + + var powerReduction = (float) Math.Pow(sm.Power / 500, 3); + + // After this point power is lowered + // This wraps around to the begining of the function + sm.Power = Math.Max(sm.Power - Math.Min(powerReduction * powerlossInhibitor, sm.Power * 0.83f * powerlossInhibitor), 0f); + } + + /// + /// Shoot lightning bolts depensing on accumulated power. + /// + private void SupermatterZap(EntityUid uid, SupermatterComponent sm) + { + // Divide power by its' threshold to get a value from 0-1, then multiply by the amount of possible lightnings + var zapPower = sm.Power / sm.PowerPenaltyThreshold * sm.LightningPrototypes.Length; + var zapPowerNorm = (int) Math.Clamp(zapPower, 0, sm.LightningPrototypes.Length - 1); + _lightning.ShootRandomLightnings(uid, 3.5f, sm.Power > sm.PowerPenaltyThreshold ? 3 : 1, sm.LightningPrototypes[zapPowerNorm]); + } + + /// + /// Handles environmental damage. + /// + private void HandleDamage(EntityUid uid, SupermatterComponent sm) + { + var xform = Transform(uid); + var indices = _xform.GetGridOrMapTilePosition(uid, xform); + + sm.DamageArchived = sm.Damage; + + var mix = _atmosphere.GetContainingMixture(uid, true, true); + + // We're in space or there is no gas to process + if (!xform.GridUid.HasValue || mix is not { } || mix.TotalMoles == 0f) + { + sm.Damage += Math.Max(sm.Power / 1000 * sm.DamageIncreaseMultiplier, 0.1f); + return; + } + + // Absorbed gas from surrounding area + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; + + var totalDamage = 0f; + + var tempThreshold = Atmospherics.T0C + sm.HeatPenaltyThreshold; + + // Temperature start to have a positive effect on damage after 350 + var tempDamage = + Math.Max( + Math.Clamp(moles / 200f, .5f, 1f) + * absorbedGas.Temperature + - tempThreshold + * sm.DynamicHeatResistance, + 0f) + * sm.MoleHeatThreshold + / 150f + * sm.DamageIncreaseMultiplier; + totalDamage += tempDamage; + + // Power only starts affecting damage when it is above 5000 + var powerDamage = Math.Max(sm.Power - sm.PowerPenaltyThreshold, 0f) / 500f * sm.DamageIncreaseMultiplier; + totalDamage += powerDamage; + + // Mol count only starts affecting damage when it is above 1800 + var moleDamage = Math.Max(moles - sm.MolePenaltyThreshold, 0) / 80 * sm.DamageIncreaseMultiplier; + totalDamage += moleDamage; + + // Healing damage + if (moles < sm.MolePenaltyThreshold) + { + // There's a very small float so that it doesn't divide by 0 + var healHeatDamage = Math.Min(absorbedGas.Temperature - tempThreshold, 0.001f) / 150; + totalDamage += healHeatDamage; + } + + // Check for space tiles next to SM + //TODO: Change moles out for checking if adjacent tiles exist + var enumerator = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); + while (enumerator.MoveNext(out var ind)) + { + if (ind.TotalMoles != 0) + continue; + + var integrity = GetIntegrity(sm); + + var factor = integrity switch + { + < 10 => 0.0005f, + < 25 => 0.0009f, + < 45 => 0.005f, + < 75 => 0.002f, + _ => 0f + }; + + totalDamage += Math.Clamp(sm.Power * factor * sm.DamageIncreaseMultiplier, 0, sm.MaxSpaceExposureDamage); + + break; + } + + var damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DamageDelaminationPoint, totalDamage); + + // Prevent it from going negative + sm.Damage = Math.Clamp(damage, 0, float.PositiveInfinity); + } + + /// + /// Handles core damage announcements + /// + private void AnnounceCoreDamage(EntityUid uid, SupermatterComponent sm) + { + var message = string.Empty; + var global = false; + + var integrity = GetIntegrity(sm).ToString("0.00"); + + // Special cases + if (sm.Damage < sm.DamageDelaminationPoint && sm.Delamming) + { + message = Loc.GetString("supermatter-delam-cancel", ("integrity", integrity)); + sm.DelamAnnounced = false; + global = true; + } + + if (sm.Delamming && !sm.DelamAnnounced) + { + var sb = new StringBuilder(); + var loc = string.Empty; + + switch (sm.PreferredDelamType) + { + case DelamType.Cascade: loc = "supermatter-delam-cascade"; break; + case DelamType.Singulo: loc = "supermatter-delam-overmass"; break; + case DelamType.Tesla: loc = "supermatter-delam-tesla"; break; + default: loc = "supermatter-delam-explosion"; break; + } + + var station = _station.GetOwningStation(uid); + if (station != null) + _alert.SetLevel((EntityUid) station, sm.AlertCodeDeltaId, true, true, true, false); + + sb.AppendLine(Loc.GetString(loc)); + sb.AppendLine(Loc.GetString("supermatter-seconds-before-delam", ("seconds", sm.DelamTimer))); + + message = sb.ToString(); + global = true; + sm.DelamAnnounced = true; + + SendSupermatterAnnouncement(uid, message, global); + return; + } + + // Ignore the 0% integrity alarm + if (sm.Delamming) + return; + + // We are not taking consistent damage, Engineers aren't needed + if (sm.Damage <= sm.DamageArchived) + return; + + if (sm.Damage >= sm.DamageWarningThreshold) + { + message = Loc.GetString("supermatter-warning", ("integrity", integrity)); + if (sm.Damage >= sm.DamageEmergencyThreshold) + { + message = Loc.GetString("supermatter-emergency", ("integrity", integrity)); + global = true; + } + } + + SendSupermatterAnnouncement(uid, message, global); + } + + /// If true, sends a station announcement + /// Localisation string for a custom announcer name + public void SendSupermatterAnnouncement(EntityUid uid, string message, bool global = false, string? customSender = null) + { + if (global) + { + var sender = Loc.GetString(customSender != null ? customSender : "supermatter-announcer"); + _chat.DispatchStationAnnouncement(uid, message, sender, colorOverride: Color.Yellow); + return; + } + + _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Speak, hideChat: false, checkRadioPrefix: true); + } + + /// + /// Returns the integrity rounded to hundreds, e.g. 100.00% + /// + public float GetIntegrity(SupermatterComponent sm) + { + var integrity = sm.Damage / sm.DamageDelaminationPoint; + integrity = (float) Math.Round(100 - integrity * 100, 2); + integrity = integrity < 0 ? 0 : integrity; + return integrity; + } + + /// + /// Decide on how to delaminate. + /// + public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) + { + if (_config.GetCVar(CCVars.SupermatterDoForceDelam)) + return _config.GetCVar(CCVars.SupermatterForcedDelamType); + + var mix = _atmosphere.GetContainingMixture(uid, true, true); + + if (mix is { }) + { + var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); + var moles = absorbedGas.TotalMoles; + + if (_config.GetCVar(CCVars.SupermatterDoSingulooseDelam) + && moles >= sm.MolePenaltyThreshold * _config.GetCVar(CCVars.SupermatterSingulooseMolesModifier)) + return DelamType.Singulo; + } + + if (_config.GetCVar(CCVars.SupermatterDoTeslooseDelam) + && sm.Power >= sm.PowerPenaltyThreshold * _config.GetCVar(CCVars.SupermatterTesloosePowerModifier)) + return DelamType.Tesla; + + //TODO: Add resonance cascade when there's crazy conditions or a destabilizing crystal + + return DelamType.Explosion; + } + + /// + /// Handle the end of the station. + /// + private void HandleDelamination(EntityUid uid, SupermatterComponent sm) + { + var xform = Transform(uid); + + sm.PreferredDelamType = ChooseDelamType(uid, sm); + + if (!sm.Delamming) + { + sm.Delamming = true; + AnnounceCoreDamage(uid, sm); + } + + if (sm.Damage < sm.DamageDelaminationPoint && sm.Delamming) + { + sm.Delamming = false; + AnnounceCoreDamage(uid, sm); + } + + sm.DelamTimerAccumulator++; + + if (sm.DelamTimerAccumulator < sm.DelamTimer) + return; + + switch (sm.PreferredDelamType) + { + case DelamType.Cascade: + Spawn(sm.KudzuSpawnPrototype, xform.Coordinates); + break; + + case DelamType.Singulo: + Spawn(sm.SingularitySpawnPrototype, xform.Coordinates); + break; + + case DelamType.Tesla: + Spawn(sm.TeslaSpawnPrototype, xform.Coordinates); + break; + + default: + _explosion.TriggerExplosive(uid); + break; + } + } + + /// + /// Swaps out ambience sounds when the SM is delamming or not. + /// + private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) + { + var ambient = Comp(uid); + + if (ambient == null) + return; + + if (sm.Delamming && sm.CurrentSoundLoop != sm.DelamSound) + sm.CurrentSoundLoop = sm.DelamSound; + + else if (!sm.Delamming && sm.CurrentSoundLoop != sm.CalmSound) + sm.CurrentSoundLoop = sm.CalmSound; + + if (ambient.Sound != sm.CurrentSoundLoop) + _ambient.SetSound(uid, sm.CurrentSoundLoop, ambient); + } +} \ No newline at end of file diff --git a/Content.Server/Supermatter/Systems/SupermatterSystem.cs b/Content.Server/Supermatter/Systems/SupermatterSystem.cs index 571a5d3568b..3d86f57fb84 100644 --- a/Content.Server/Supermatter/Systems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/Systems/SupermatterSystem.cs @@ -8,8 +8,6 @@ using Content.Shared.Interaction; using Content.Shared.Projectiles; using Content.Shared.Mobs.Components; -using Content.Shared.Radiation.Components; -using Content.Server.Audio; using Content.Server.Atmos.EntitySystems; using Content.Server.Chat.Systems; using Content.Server.Explosion.EntitySystems; @@ -17,21 +15,16 @@ using Content.Server.Lightning; using Content.Server.AlertLevel; using Content.Server.Station.Systems; -using System.Text; using Content.Server.Kitchen.Components; -using Content.Shared.Chat; using Content.Shared.DoAfter; using Content.Shared.Examine; using Content.Server.DoAfter; using Content.Server.Popups; -using System.Linq; using Content.Shared.Audio; -using System.Configuration; -using Content.Shared.CCVar; namespace Content.Server.Supermatter.Systems; -public sealed class SupermatterSystem : EntitySystem +public sealed partial class SupermatterSystem : EntitySystem { [Dependency] private readonly AtmosphereSystem _atmosphere = default!; [Dependency] private readonly ChatSystem _chat = default!; @@ -92,7 +85,7 @@ public void Cycle(EntityUid uid, SupermatterComponent sm) ProcessAtmos(uid, sm); HandleDamage(uid, sm); - if (sm.Damage >= sm.DelaminationPoint || sm.Delamming) + if (sm.Damage >= sm.DamageDelaminationPoint || sm.Delamming) HandleDelamination(uid, sm); HandleSoundLoop(uid, sm); @@ -106,415 +99,10 @@ public void Cycle(EntityUid uid, SupermatterComponent sm) if (sm.YellAccumulator >= sm.YellTimer) { sm.YellAccumulator -= sm.YellTimer; - HandleAnnouncements(uid, sm); + AnnounceCoreDamage(uid, sm); } } - #region Processing - - /// - /// Handle power and radiation output depending on atmospheric things. - /// - private void ProcessAtmos(EntityUid uid, SupermatterComponent sm) - { - var mix = _atmosphere.GetContainingMixture(uid, true, true); - - if (mix is not { }) - return; - - var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); - var moles = absorbedGas.TotalMoles; - - if (!(moles > 0f)) - return; - - var gases = sm.GasStorage; - var facts = sm.GasDataFields; - - // Lets get the proportions of the gasses in the mix for scaling stuff later - // They range between 0 and 1 - gases = gases.ToDictionary( - gas => gas.Key, - gas => Math.Clamp(absorbedGas.GetMoles(gas.Key) / moles, 0, 1) - ); - - // No less then zero, and no greater then one, we use this to do explosions and heat to power transfer. - var powerRatio = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].PowerMixRatio); - - // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. - var heatModifier = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].HeatPenalty); - - // Minimum value of -10, maximum value of 23. Affects plasma, o2 and heat output. - var transmissionBonus = gases.Sum(gas => gases[gas.Key] * facts[gas.Key].TransmitModifier); - - var h2OBonus = 1 - gases[Gas.WaterVapor] * 0.25f; - - powerRatio = Math.Clamp(powerRatio, 0, 1); - heatModifier = Math.Max(heatModifier, 0.5f); - transmissionBonus *= h2OBonus; - - // Effects the damage heat does to the crystal - sm.DynamicHeatResistance = 1f; - - // More moles of gases are harder to heat than fewer, so let's scale heat damage around them - sm.MoleHeatPenaltyThreshold = (float) Math.Max(moles * sm.MoleHeatPenalty, 0.25); - - // Ramps up or down in increments of 0.02 up to the proportion of CO2 - // Given infinite time, powerloss_dynamic_scaling = co2comp - // Some value from 0-1 - if (moles > sm.PowerlossInhibitionMoleThreshold && gases[Gas.CarbonDioxide] > sm.PowerlossInhibitionGasThreshold) - { - var co2powerloss = Math.Clamp(gases[Gas.CarbonDioxide] - sm.PowerlossDynamicScaling, -0.02f, 0.02f); - sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling + co2powerloss, 0f, 1f); - } - else - sm.PowerlossDynamicScaling = Math.Clamp(sm.PowerlossDynamicScaling - 0.05f, 0f, 1f); - - // Ranges from 0~1(1 - (0~1 * 1~(1.5 * (mol / 500)))) - // We take the mol count, and scale it to be our inhibitor - var powerlossInhibitor = - Math.Clamp( - 1 - - sm.PowerlossDynamicScaling - * Math.Clamp( - moles / sm.PowerlossInhibitionMoleBoostThreshold, - 1f, 1.5f), - 0f, 1f); - - if (sm.MatterPower != 0) // We base our removed power off 1/10 the matter_power. - { - var removedMatter = Math.Max(sm.MatterPower / sm.MatterPowerConversion, 40); - // Adds at least 40 power - sm.Power = Math.Max(sm.Power + removedMatter, 0); - // Removes at least 40 matter power - sm.MatterPower = Math.Max(sm.MatterPower - removedMatter, 0); - } - - // Based on gas mix, makes the power more based on heat or less effected by heat - var tempFactor = powerRatio > 0.8 ? 50f : 30f; - - // If there is more pluox and N2 then anything else, we receive no power increase from heat - sm.Power = Math.Max(absorbedGas.Temperature * tempFactor / Atmospherics.T0C * powerRatio + sm.Power, 0); - - // Irradiate stuff - if (TryComp(uid, out var rad)) - rad.Intensity = - sm.Power - * Math.Max(0, 1f + transmissionBonus / 10f) - * 0.003f - * _config.GetCVar(CCVars.SupermatterRadsModifier); - - // Power * 0.55 * 0.8~1 - var energy = sm.Power * sm.ReactionPowerModifier; - - // Keep in mind we are only adding this temperature to (efficiency)% of the one tile the rock is on. - // An increase of 4°C at 25% efficiency here results in an increase of 1°C / (#tilesincore) overall. - // Power * 0.55 * 1.5~23 / 5 - absorbedGas.Temperature += energy * heatModifier * sm.ThermalReleaseModifier; - absorbedGas.Temperature = Math.Max(0, - Math.Min(absorbedGas.Temperature, sm.HeatThreshold * heatModifier)); - - // Release the waste - absorbedGas.AdjustMoles(Gas.Plasma, Math.Max(energy * heatModifier * sm.PlasmaReleaseModifier, 0f)); - absorbedGas.AdjustMoles(Gas.Oxygen, Math.Max((energy + absorbedGas.Temperature * heatModifier - Atmospherics.T0C) * sm.OxygenReleaseEfficiencyModifier, 0f)); - - _atmosphere.Merge(mix, absorbedGas); - - var powerReduction = (float) Math.Pow(sm.Power / 500, 3); - - // After this point power is lowered - // This wraps around to the begining of the function - sm.Power = Math.Max(sm.Power - Math.Min(powerReduction * powerlossInhibitor, sm.Power * 0.83f * powerlossInhibitor), 0f); - } - - /// - /// Shoot lightning bolts depensing on accumulated power. - /// - private void SupermatterZap(EntityUid uid, SupermatterComponent sm) - { - // Divide power by its' threshold to get a value from 0-1, then multiply by the amount of possible lightnings - var zapPower = sm.Power / sm.PowerPenaltyThreshold * sm.LightningPrototypes.Length; - var zapPowerNorm = (int) Math.Clamp(zapPower, 0, sm.LightningPrototypes.Length - 1); - _lightning.ShootRandomLightnings(uid, 3.5f, sm.Power > sm.PowerPenaltyThreshold ? 3 : 1, sm.LightningPrototypes[zapPowerNorm]); - } - - /// - /// Handles environmental damage. - /// - private void HandleDamage(EntityUid uid, SupermatterComponent sm) - { - var xform = Transform(uid); - var indices = _xform.GetGridOrMapTilePosition(uid, xform); - - sm.DamageArchived = sm.Damage; - - var mix = _atmosphere.GetContainingMixture(uid, true, true); - - // We're in space or there is no gas to process - if (!xform.GridUid.HasValue || mix is not { } || mix.TotalMoles == 0f) - { - sm.Damage += Math.Max(sm.Power / 1000 * sm.DamageIncreaseMultiplier, 0.1f); - return; - } - - // Absorbed gas from surrounding area - var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); - var moles = absorbedGas.TotalMoles; - - var totalDamage = 0f; - - var tempThreshold = Atmospherics.T0C + sm.HeatPenaltyThreshold; - - // Temperature start to have a positive effect on damage after 350 - var tempDamage = - Math.Max( - Math.Clamp(moles / 200f, .5f, 1f) - * absorbedGas.Temperature - - tempThreshold - * sm.DynamicHeatResistance, - 0f) - * sm.MoleHeatThreshold - / 150f - * sm.DamageIncreaseMultiplier; - totalDamage += tempDamage; - - // Power only starts affecting damage when it is above 5000 - var powerDamage = Math.Max(sm.Power - sm.PowerPenaltyThreshold, 0f) / 500f * sm.DamageIncreaseMultiplier; - totalDamage += powerDamage; - - // Mol count only starts affecting damage when it is above 1800 - var moleDamage = Math.Max(moles - sm.MolePenaltyThreshold, 0) / 80 * sm.DamageIncreaseMultiplier; - totalDamage += moleDamage; - - // Healing damage - if (moles < sm.MolePenaltyThreshold) - { - // There's a very small float so that it doesn't divide by 0 - var healHeatDamage = Math.Min(absorbedGas.Temperature - tempThreshold, 0.001f) / 150; - totalDamage += healHeatDamage; - } - - // Check for space tiles next to SM - //TODO: Change moles out for checking if adjacent tiles exist - var enumerator = _atmosphere.GetAdjacentTileMixtures(xform.GridUid.Value, indices, false, false); - while (enumerator.MoveNext(out var ind)) - { - if (ind.TotalMoles != 0) - continue; - - var integrity = GetIntegrity(sm); - - var factor = integrity switch - { - < 10 => 0.0005f, - < 25 => 0.0009f, - < 45 => 0.005f, - < 75 => 0.002f, - _ => 0f - }; - - totalDamage += Math.Clamp(sm.Power * factor * sm.DamageIncreaseMultiplier, 0, sm.MaxSpaceExposureDamage); - - break; - } - - var damage = Math.Min(sm.DamageArchived + sm.DamageHardcap * sm.DelaminationPoint, totalDamage); - - // Prevent it from going negative - sm.Damage = Math.Clamp(damage, 0, float.PositiveInfinity); - } - - /// - /// Handles core damage announcements - /// - private void HandleAnnouncements(EntityUid uid, SupermatterComponent sm) - { - var message = string.Empty; - var global = false; - - var integrity = GetIntegrity(sm).ToString("0.00"); - - // Special cases - if (sm.Damage < sm.DelaminationPoint && sm.Delamming) - { - message = Loc.GetString("supermatter-delam-cancel", ("integrity", integrity)); - sm.DelamAnnounced = false; - global = true; - } - - if (sm.Delamming && !sm.DelamAnnounced) - { - var sb = new StringBuilder(); - var loc = string.Empty; - - switch (sm.PreferredDelamType) - { - case DelamType.Cascade: loc = "supermatter-delam-cascade"; break; - case DelamType.Singulo: loc = "supermatter-delam-overmass"; break; - case DelamType.Tesla: loc = "supermatter-delam-tesla"; break; - default: loc = "supermatter-delam-explosion"; break; - } - - var station = _station.GetOwningStation(uid); - if (station != null) - _alert.SetLevel((EntityUid) station, sm.AlertCodeDeltaId, true, true, true, false); - - sb.AppendLine(Loc.GetString(loc)); - sb.AppendLine(Loc.GetString("supermatter-seconds-before-delam", ("seconds", sm.DelamTimer))); - - message = sb.ToString(); - global = true; - sm.DelamAnnounced = true; - - SupermatterAnnouncement(uid, message, global); - return; - } - - // Ignore the 0% integrity alarm - if (sm.Delamming) - return; - - // We are not taking consistent damage, Engineers aren't needed - if (sm.Damage <= sm.DamageArchived) - return; - - if (sm.Damage >= sm.WarningPoint) - { - message = Loc.GetString("supermatter-warning", ("integrity", integrity)); - if (sm.Damage >= sm.EmergencyPoint) - { - message = Loc.GetString("supermatter-emergency", ("integrity", integrity)); - global = true; - } - } - - SupermatterAnnouncement(uid, message, global); - } - - /// If true, sends a station announcement - /// Localisation string for a custom announcer name - public void SendSupermatterAnnouncement(EntityUid uid, string message, bool global = false, string? customSender = null) - { - if (global) - { - var sender = Loc.GetString(customSender != null ? customSender : "supermatter-announcer"); - _chat.DispatchStationAnnouncement(uid, message, sender, colorOverride: Color.Yellow); - return; - } - - _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Speak, hideChat: false, checkRadioPrefix: true); - } - - /// - /// Returns the integrity rounded to hundreds, e.g. 100.00% - /// - public float GetIntegrity(SupermatterComponent sm) - { - var integrity = sm.Damage / sm.DelaminationPoint; - integrity = (float) Math.Round(100 - integrity * 100, 2); - integrity = integrity < 0 ? 0 : integrity; - return integrity; - } - - /// - /// Decide on how to delaminate. - /// - public DelamType ChooseDelamType(EntityUid uid, SupermatterComponent sm) - { - if (_config.GetCVar(CCVars.DoForceDelam)) - return _config.GetCVar(CCVars.ForcedDelamType); - - var mix = _atmosphere.GetContainingMixture(uid, true, true); - - if (mix is { }) - { - var absorbedGas = mix.Remove(sm.GasEfficiency * mix.TotalMoles); - var moles = absorbedGas.TotalMoles; - - if (_config.GetCVar(CCVars.DoSingulooseDelam) - && moles >= sm.MolePenaltyThreshold * _config.GetCVar(CCVars.SingulooseMolesModifier)) - return DelamType.Singulo; - } - - if (_config.GetCVar(CCVars.DoTeslooseDelam) - && sm.Power >= sm.PowerPenaltyThreshold * _config.GetCVar(CCVars.TesloosePowerModifier)) - return DelamType.Tesla; - - //TODO: Add resonance cascade when there's crazy conditions or a destabilizing crystal - - return DelamType.Explosion; - } - - /// - /// Handle the end of the station. - /// - private void HandleDelamination(EntityUid uid, SupermatterComponent sm) - { - var xform = Transform(uid); - - sm.PreferredDelamType = ChooseDelamType(uid, sm); - - if (!sm.Delamming) - { - sm.Delamming = true; - HandleAnnouncements(uid, sm); - } - - if (sm.Damage < sm.DelaminationPoint && sm.Delamming) - { - sm.Delamming = false; - HandleAnnouncements(uid, sm); - } - - sm.DelamTimerAccumulator++; - - if (sm.DelamTimerAccumulator < sm.DelamTimer) - return; - - switch (sm.PreferredDelamType) - { - case DelamType.Cascade: - Spawn(sm.SupermatterKudzuSpawnPrototype, xform.Coordinates); - break; - - case DelamType.Singulo: - Spawn(sm.SingularitySpawnPrototype, xform.Coordinates); - break; - - case DelamType.Tesla: - Spawn(sm.TeslaSpawnPrototype, xform.Coordinates); - break; - - default: - _explosion.TriggerExplosive(uid); - break; - } - } - - /// - /// Swaps out ambience sounds when the SM is delamming or not. - /// - private void HandleSoundLoop(EntityUid uid, SupermatterComponent sm) - { - var ambient = Comp(uid); - - if (ambient == null) - return; - - if (sm.Delamming && sm.CurrentSoundLoop != sm.DelamSound) - sm.CurrentSoundLoop = sm.DelamSound; - - else if (!sm.Delamming && sm.CurrentSoundLoop != sm.CalmSound) - sm.CurrentSoundLoop = sm.CalmSound; - - if (ambient.Sound != sm.CurrentSoundLoop) - _ambient.SetSound(uid, sm.CurrentSoundLoop, ambient); - } - - #endregion - - #region Event Handlers - private void OnMapInit(EntityUid uid, SupermatterComponent sm, MapInitEvent args) { // Set the Sound @@ -605,12 +193,12 @@ private void OnGetSliver(EntityUid uid, SupermatterComponent sm, ref Supermatter return; // Your criminal actions will not go unnoticed - sm.Damage += sm.DelaminationPoint / 10; + sm.Damage += sm.DamageDelaminationPoint / 10; var integrity = GetIntegrity(sm).ToString("0.00"); - SupermatterAnnouncement(uid, Loc.GetString("supermatter-announcement-cc-tamper", ("integrity", integrity)), true, "Central Command"); + SendSupermatterAnnouncement(uid, Loc.GetString("supermatter-announcement-cc-tamper", ("integrity", integrity)), true, "Central Command"); - Spawn(sm.SupermatterSliverPrototype, _transform.GetMapCoordinates(args.User)); + Spawn(sm.SliverPrototype, _transform.GetMapCoordinates(args.User)); _popup.PopupClient(Loc.GetString("supermatter-tamper-end"), uid, args.User); sm.DelamTimer /= 2; @@ -621,6 +209,4 @@ private void OnExamine(EntityUid uid, SupermatterComponent sm, ref ExaminedEvent if (args.IsInDetailsRange) args.PushMarkup(Loc.GetString("supermatter-examine-integrity", ("integrity", GetIntegrity(sm).ToString("0.00")))); } - - #endregion } diff --git a/Content.Shared/Supermatter/Components/SupermatterComponent.cs b/Content.Shared/Supermatter/Components/SupermatterComponent.cs index 9a181cdda56..ad7604f5ba6 100644 --- a/Content.Shared/Supermatter/Components/SupermatterComponent.cs +++ b/Content.Shared/Supermatter/Components/SupermatterComponent.cs @@ -28,15 +28,6 @@ public sealed partial class SupermatterComponent : Component [DataField] public bool SliverRemoved = false; - [DataField] - public EntityWhitelist Whitelist = new(); - - /// - /// The ID of the projectile fired by Emitter machines. - /// - [DataField] - public string IdTag = "EmitterBolt"; - public string[] LightningPrototypes = { "Lightning", @@ -157,7 +148,7 @@ public sealed partial class SupermatterComponent : Component /// Set to YellTimer at first so it doesnt yell a minute after being hit /// [DataField] - public float YellAccumulator = YellTimer; + public float YellAccumulator = 60f; /// /// Timer for delam @@ -194,7 +185,7 @@ public sealed partial class SupermatterComponent : Component #region Thresholds /// - /// The amount of heat we apply scaled + /// The heat threshold in Kelvin, after which the supermatter begins taking damage. /// [DataField] public float HeatThreshold = 2500f; @@ -343,15 +334,15 @@ public sealed partial class SupermatterComponent : Component //TODO: Replace this with serializable GasFact array something public readonly Dictionary GasDataFields = new() { - [Gas.Oxygen] = (TransmitModifier: 1.5f, HeatPenalty: 1f, PowerMixRatio: 1f), - [Gas.Nitrogen] = (TransmitModifier: 0f, HeatPenalty: -1.5f, PowerMixRatio: -1f), - [Gas.CarbonDioxide] = (TransmitModifier: 0f, HeatPenalty: 0.1f, PowerMixRatio: 1f), - [Gas.Plasma] = (TransmitModifier: 4f, HeatPenalty: 15f, PowerMixRatio: 1f), - [Gas.Tritium] = (TransmitModifier: 30f, HeatPenalty: 10f, PowerMixRatio: 1f), - [Gas.WaterVapor] = (TransmitModifier: 2f, HeatPenalty: 12f, PowerMixRatio: 1f), - [Gas.Frezon] = (TransmitModifier: 3f, HeatPenalty: -10f, PowerMixRatio: -1f), - [Gas.Ammonia] = (TransmitModifier: 0f, HeatPenalty: .5f, PowerMixRatio: 1f), - [Gas.NitrousOxide] = (TransmitModifier: 0f, HeatPenalty: -5f, PowerMixRatio: -1f), + { Gas.Oxygen, (1.5f, 1f, 1f) }, + { Gas.Nitrogen, (0f, -1.5f, -1f) }, + { Gas.CarbonDioxide, (0f, 0.1f, 1f) }, + { Gas.Plasma, (4f, 15f, 1f) }, + { Gas.Tritium, (30f, 10f, 1f) }, + { Gas.WaterVapor, (2f, 12f, 1f) }, + { Gas.Frezon, (3f, -10f, -1f) }, + { Gas.Ammonia, (0f, .5f, 1f) }, + { Gas.NitrousOxide, (0f, -5f, -1f) }, }; #endregion From 10989f4f7d06c5cda6206781d4a27ba8d18b9bf7 Mon Sep 17 00:00:00 2001 From: VMSolidus Date: Fri, 2 Aug 2024 20:08:03 -0400 Subject: [PATCH 38/38] Update supermatter.yml --- .../Structures/Power/Generation/Supermatter/supermatter.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml index 1f3708ce65e..6fc3429600a 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/Supermatter/supermatter.yml @@ -6,12 +6,6 @@ mode: SnapgridCenter components: - type: Supermatter - whitelist: - tags: - - EmitterBolt - components: - - Body - - Item - type: RadiationSource - type: AmbientSound range: 5